Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/rubocop/migration_helpers_spec.rb')
-rw-r--r--spec/rubocop/migration_helpers_spec.rb56
1 files changed, 56 insertions, 0 deletions
diff --git a/spec/rubocop/migration_helpers_spec.rb b/spec/rubocop/migration_helpers_spec.rb
new file mode 100644
index 00000000000..73ced8c58da
--- /dev/null
+++ b/spec/rubocop/migration_helpers_spec.rb
@@ -0,0 +1,56 @@
+# frozen_string_literal: true
+
+require 'fast_spec_helper'
+require 'rubocop'
+require 'rspec-parameterized'
+
+require_relative '../../rubocop/migration_helpers'
+
+describe RuboCop::MigrationHelpers do
+ using RSpec::Parameterized::TableSyntax
+
+ subject(:fake_cop) { Class.new { include RuboCop::MigrationHelpers }.new }
+
+ let(:node) { double(:node) }
+
+ before do
+ allow(node).to receive_message_chain('location.expression.source_buffer.name')
+ .and_return(name)
+ end
+
+ describe '#in_migration?' do
+ where(:name, :expected) do
+ '/gitlab/db/migrate/20200210184420_create_operations_scopes_table.rb' | true
+ '/gitlab/db/post_migrate/20200210184420_create_operations_scopes_table.rb' | true
+ '/gitlab/db/geo/migrate/20200210184420_create_operations_scopes_table.rb' | true
+ '/gitlab/db/geo/post_migrate/20200210184420_create_operations_scopes_table.rb' | true
+ '/gitlab/db/elsewhere/20200210184420_create_operations_scopes_table.rb' | false
+ end
+
+ with_them do
+ it { expect(fake_cop.in_migration?(node)).to eq(expected) }
+ end
+ end
+
+ describe '#in_post_deployment_migration?' do
+ where(:name, :expected) do
+ '/gitlab/db/migrate/20200210184420_create_operations_scopes_table.rb' | false
+ '/gitlab/db/post_migrate/20200210184420_create_operations_scopes_table.rb' | true
+ '/gitlab/db/geo/migrate/20200210184420_create_operations_scopes_table.rb' | false
+ '/gitlab/db/geo/post_migrate/20200210184420_create_operations_scopes_table.rb' | true
+ '/gitlab/db/elsewhere/20200210184420_create_operations_scopes_table.rb' | false
+ end
+
+ with_them do
+ it { expect(fake_cop.in_post_deployment_migration?(node)).to eq(expected) }
+ end
+ end
+
+ describe "#version" do
+ let(:name) do
+ '/path/to/gitlab/db/migrate/20200210184420_create_operations_scopes_table.rb'
+ end
+
+ it { expect(fake_cop.version(node)).to eq(20200210184420) }
+ end
+end