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/workers/users/deactivate_dormant_users_worker_spec.rb')
-rw-r--r--spec/workers/users/deactivate_dormant_users_worker_spec.rb61
1 files changed, 61 insertions, 0 deletions
diff --git a/spec/workers/users/deactivate_dormant_users_worker_spec.rb b/spec/workers/users/deactivate_dormant_users_worker_spec.rb
new file mode 100644
index 00000000000..32291a143ee
--- /dev/null
+++ b/spec/workers/users/deactivate_dormant_users_worker_spec.rb
@@ -0,0 +1,61 @@
+# frozen_string_literal: true
+
+require 'spec_helper'
+
+RSpec.describe Users::DeactivateDormantUsersWorker do
+ describe '#perform' do
+ subject(:worker) { described_class.new }
+
+ it 'does not run for GitLab.com' do
+ create(:user, last_activity_on: User::MINIMUM_INACTIVE_DAYS.days.ago.to_date)
+ create(:user, last_activity_on: nil)
+
+ expect(Gitlab).to receive(:com?).and_return(true)
+ expect(Gitlab::CurrentSettings).not_to receive(:current_application_settings)
+
+ worker.perform
+
+ expect(User.dormant.count).to eq(1)
+ expect(User.with_no_activity.count).to eq(1)
+ end
+
+ context 'when automatic deactivation of dormant users is enabled' do
+ before do
+ stub_application_setting(deactivate_dormant_users: true)
+ end
+
+ it 'deactivates dormant users' do
+ freeze_time do
+ stub_const("#{described_class.name}::BATCH_SIZE", 1)
+ stub_const("#{described_class.name}::PAUSE_SECONDS", 0)
+
+ create(:user, last_activity_on: User::MINIMUM_INACTIVE_DAYS.days.ago.to_date)
+ create(:user, last_activity_on: nil)
+
+ expect(worker).to receive(:sleep).twice
+
+ worker.perform
+
+ expect(User.dormant.count).to eq(0)
+ expect(User.with_no_activity.count).to eq(0)
+ end
+ end
+ end
+
+ context 'when automatic deactivation of dormant users is disabled' do
+ before do
+ stub_application_setting(deactivate_dormant_users: false)
+ end
+
+ it 'does nothing' do
+ create(:user, last_activity_on: User::MINIMUM_INACTIVE_DAYS.days.ago.to_date)
+ create(:user, last_activity_on: nil)
+
+ worker.perform
+
+ expect(User.dormant.count).to eq(1)
+ expect(User.with_no_activity.count).to eq(1)
+ end
+ end
+ end
+end