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/migrations/confirm_security_bot_spec.rb')
-rw-r--r--spec/migrations/confirm_security_bot_spec.rb38
1 files changed, 38 insertions, 0 deletions
diff --git a/spec/migrations/confirm_security_bot_spec.rb b/spec/migrations/confirm_security_bot_spec.rb
new file mode 100644
index 00000000000..19ca81f92f3
--- /dev/null
+++ b/spec/migrations/confirm_security_bot_spec.rb
@@ -0,0 +1,38 @@
+# frozen_string_literal: true
+
+require 'spec_helper'
+require_migration!
+
+RSpec.describe ConfirmSecurityBot, :migration do
+ let(:users) { table(:users) }
+
+ let(:user_type) { 8 }
+
+ context 'when bot is not created' do
+ it 'skips migration' do
+ migrate!
+
+ bot = users.find_by(user_type: user_type)
+
+ expect(bot).to be_nil
+ end
+ end
+
+ context 'when bot is confirmed' do
+ let(:bot) { table(:users).create!(user_type: user_type, confirmed_at: Time.current, projects_limit: 1) }
+
+ it 'skips migration' do
+ expect { migrate! }.not_to change { bot.reload.confirmed_at }
+ end
+ end
+
+ context 'when bot is not confirmed' do
+ let(:bot) { table(:users).create!(user_type: user_type, projects_limit: 1) }
+
+ it 'update confirmed_at' do
+ freeze_time do
+ expect { migrate! }.to change { bot.reload.confirmed_at }.from(nil).to(Time.current)
+ end
+ end
+ end
+end