74 lines
2.2 KiB
Ruby
74 lines
2.2 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require('spec_helper')
|
|
|
|
RSpec.describe Projects::Settings::AccessTokensController do
|
|
let_it_be(:user) { create(:user) }
|
|
let_it_be(:group) { create(:group) }
|
|
let_it_be(:project) { create(:project, group: group) }
|
|
let_it_be(:bot_user) { create(:user, :project_bot) }
|
|
|
|
before_all do
|
|
project.add_maintainer(user)
|
|
project.add_maintainer(bot_user)
|
|
end
|
|
|
|
before do
|
|
sign_in(user)
|
|
end
|
|
|
|
shared_examples 'feature unavailable' do
|
|
context 'user is not a maintainer' do
|
|
before do
|
|
project.add_developer(user)
|
|
end
|
|
|
|
it { is_expected.to have_gitlab_http_status(:not_found) }
|
|
end
|
|
end
|
|
|
|
describe '#index' do
|
|
subject { get :index, params: { namespace_id: project.namespace, project_id: project } }
|
|
|
|
it_behaves_like 'feature unavailable'
|
|
it_behaves_like 'project access tokens available #index'
|
|
end
|
|
|
|
describe '#create' do
|
|
let(:access_token_params) { { name: 'Nerd bot', scopes: ["api"], expires_at: Date.today + 1.month } }
|
|
|
|
subject { post :create, params: { namespace_id: project.namespace, project_id: project }.merge(project_access_token: access_token_params) }
|
|
|
|
it_behaves_like 'feature unavailable'
|
|
it_behaves_like 'project access tokens available #create'
|
|
|
|
context 'when project access token creation is disabled' do
|
|
before do
|
|
group.namespace_settings.update_column(:resource_access_token_creation_allowed, false)
|
|
end
|
|
|
|
it { is_expected.to have_gitlab_http_status(:not_found) }
|
|
|
|
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
|
|
end
|
|
end
|
|
|
|
describe '#revoke', :sidekiq_inline do
|
|
let(:project_access_token) { create(:personal_access_token, user: bot_user) }
|
|
|
|
subject { put :revoke, params: { namespace_id: project.namespace, project_id: project, id: project_access_token } }
|
|
|
|
it_behaves_like 'feature unavailable'
|
|
it_behaves_like 'project access tokens available #revoke'
|
|
end
|
|
end
|