summaryrefslogtreecommitdiff
path: root/spec/support/shared_examples/controllers/access_tokens_controller_shared_examples.rb
blob: 70a684c12bf796eee69d3bf08069309614892b51 (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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
# frozen_string_literal: true

RSpec.shared_examples 'project access tokens available #index' do
  let_it_be(:active_project_access_token) { create(:personal_access_token, user: bot_user) }
  let_it_be(:inactive_project_access_token) { create(:personal_access_token, :revoked, user: bot_user) }

  it 'retrieves active project access tokens' do
    subject

    expect(assigns(:active_project_access_tokens)).to contain_exactly(active_project_access_token)
  end

  it 'retrieves inactive project access tokens' do
    subject

    expect(assigns(:inactive_project_access_tokens)).to contain_exactly(inactive_project_access_token)
  end

  it 'lists all available scopes' do
    subject

    expect(assigns(:scopes)).to eq(Gitlab::Auth.resource_bot_scopes)
  end

  it 'retrieves newly created personal access token value' do
    token_value = 'random-value'
    allow(PersonalAccessToken).to receive(:redis_getdel).with("#{user.id}:#{project.id}").and_return(token_value)

    subject

    expect(assigns(:new_project_access_token)).to eq(token_value)
  end
end

RSpec.shared_examples 'project access tokens available #create' do
  def created_token
    PersonalAccessToken.order(:created_at).last
  end

  it 'returns success message' do
    subject

    expect(controller).to set_flash[:notice].to match('Your new project access token has been created.')
  end

  it 'creates project access token' do
    subject

    expect(created_token.name).to eq(access_token_params[:name])
    expect(created_token.scopes).to eq(access_token_params[:scopes])
    expect(created_token.expires_at).to eq(access_token_params[:expires_at])
  end

  it 'creates project bot user' do
    subject

    expect(created_token.user).to be_project_bot
  end

  it 'stores newly created token redis store' do
    expect(PersonalAccessToken).to receive(:redis_store!)

    subject
  end

  it { expect { subject }.to change { User.count }.by(1) }
  it { expect { subject }.to change { PersonalAccessToken.count }.by(1) }

  context 'when unsuccessful' do
    before do
      allow_next_instance_of(ResourceAccessTokens::CreateService) do |service|
        allow(service).to receive(:execute).and_return ServiceResponse.error(message: 'Failed!')
      end
    end

    it 'does not create the token' do
      expect { subject }.not_to change { PersonalAccessToken.count }
    end

    it 'does not add the project bot as a member' do
      expect { subject }.not_to change { Member.count }
    end

    it 'does not create the project bot user' do
      expect { subject }.not_to change { User.count }
    end

    it 'shows a failure alert' do
      subject

      expect(controller).to set_flash[:alert].to match("Failed to create new project access token: Failed!")
    end
  end
end

RSpec.shared_examples 'project access tokens available #revoke' do
  it 'calls delete user worker' do
    expect(DeleteUserWorker).to receive(:perform_async).with(user.id, bot_user.id, skip_authorization: true)

    subject
  end

  it 'removes membership of bot user' do
    subject

    expect(project.reload.bots).not_to include(bot_user)
  end

  it 'converts issuables of the bot user to ghost user' do
    issue = create(:issue, author: bot_user)

    subject

    expect(issue.reload.author.ghost?).to be true
  end

  it 'deletes project bot user' do
    subject

    expect(User.exists?(bot_user.id)).to be_falsy
  end
end