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

deactivate_dormant_users_worker_spec.rb « users « workers « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 32291a143ee13e1762a7ee9f9ecda572dfae54f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
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