summaryrefslogtreecommitdiff
path: root/spec/workers/users/deactivate_dormant_users_worker_spec.rb
blob: 20cd55e19ebad9df94807cf7967194c5b23f6ee3 (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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Users::DeactivateDormantUsersWorker do
  using RSpec::Parameterized::TableSyntax

  describe '#perform' do
    let_it_be(:dormant) { create(:user, last_activity_on: User::MINIMUM_INACTIVE_DAYS.days.ago.to_date) }
    let_it_be(:inactive) { create(:user, last_activity_on: nil) }

    subject(:worker) { described_class.new }

    it 'does not run for GitLab.com' do
      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)
        stub_const("#{described_class.name}::PAUSE_SECONDS", 0)
      end

      it 'deactivates dormant users' do
        freeze_time do
          stub_const("#{described_class.name}::BATCH_SIZE", 1)

          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

      where(:user_type, :expected_state) do
        :human             | 'deactivated'
        :support_bot       | 'active'
        :alert_bot         | 'active'
        :visual_review_bot | 'active'
        :service_user      | 'deactivated'
        :ghost             | 'active'
        :project_bot       | 'active'
        :migration_bot     | 'active'
        :security_bot      | 'active'
        :automation_bot    | 'active'
      end
      with_them do
        it 'deactivates certain user types' do
          user = create(:user, user_type: user_type, state: :active, last_activity_on: User::MINIMUM_INACTIVE_DAYS.days.ago.to_date)

          worker.perform

          expect(user.reload.state).to eq(expected_state)
        end
      end

      it 'does not deactivate non-active users' do
        human_user = create(:user, user_type: :human, state: :blocked, last_activity_on: User::MINIMUM_INACTIVE_DAYS.days.ago.to_date)
        service_user = create(:user, user_type: :service_user, state: :blocked, last_activity_on: User::MINIMUM_INACTIVE_DAYS.days.ago.to_date)

        worker.perform

        expect(human_user.reload.state).to eq('blocked')
        expect(service_user.reload.state).to eq('blocked')
      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
        worker.perform

        expect(User.dormant.count).to eq(1)
        expect(User.with_no_activity.count).to eq(1)
      end
    end
  end
end