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

update_highest_role_worker_spec.rb « workers « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cb112ebe07e444cd3907ec9e99003ff88752f7da (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
# frozen_string_literal: true

require 'spec_helper'

describe UpdateHighestRoleWorker, :clean_gitlab_redis_shared_state do
  include ExclusiveLeaseHelpers

  let(:worker) { described_class.new }

  describe '#perform' do
    let(:active_scope_attributes) do
      {
        state: 'active',
        ghost: false,
        user_type: nil
      }
    end
    let(:user) { create(:user, attributes) }

    subject { worker.perform(user.id) }

    context 'when user is found' do
      let(:attributes) { active_scope_attributes }

      it 'updates the highest role for the user' do
        user_highest_role = create(:user_highest_role, user: user)
        create(:group_member, :developer, user: user)

        expect { subject }
          .to change { user_highest_role.reload.highest_access_level }
          .from(nil)
          .to(Gitlab::Access::DEVELOPER)
      end
    end

    context 'when user is not found' do
      shared_examples 'no update' do
        it 'does not update any highest role' do
          expect(Users::UpdateHighestMemberRoleService).not_to receive(:new)

          worker.perform(user.id)
        end
      end

      context 'when user is blocked' do
        let(:attributes) { active_scope_attributes.merge(state: 'blocked') }

        it_behaves_like 'no update'
      end

      context 'when user is a ghost' do
        let(:attributes) { active_scope_attributes.merge(ghost: true) }

        it_behaves_like 'no update'
      end

      context 'when user has a user type' do
        let(:attributes) { active_scope_attributes.merge(user_type: :alert_bot) }

        it_behaves_like 'no update'
      end
    end
  end
end