42 lines
1.2 KiB
Ruby
42 lines
1.2 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
RSpec.describe ::Ci::Runners::AssignRunnerService, '#execute', feature_category: :runner_fleet do
|
|
subject(:execute) { described_class.new(runner, project, user).execute }
|
|
|
|
let_it_be(:runner) { create(:ci_runner, :project, projects: [project]) }
|
|
let_it_be(:project) { create(:project) }
|
|
|
|
context 'without user' do
|
|
let(:user) { nil }
|
|
|
|
it 'does not call assign_to on runner and returns error response', :aggregate_failures do
|
|
expect(runner).not_to receive(:assign_to)
|
|
|
|
is_expected.to be_error
|
|
expect(execute.message).to eq('user not allowed to assign runner')
|
|
end
|
|
end
|
|
|
|
context 'with unauthorized user' do
|
|
let(:user) { build(:user) }
|
|
|
|
it 'does not call assign_to on runner and returns error message' do
|
|
expect(runner).not_to receive(:assign_to)
|
|
|
|
is_expected.to be_error
|
|
expect(execute.message).to eq('user not allowed to assign runner')
|
|
end
|
|
end
|
|
|
|
context 'with admin user', :enable_admin_mode do
|
|
let(:user) { create_default(:user, :admin) }
|
|
|
|
it 'calls assign_to on runner and returns success response' do
|
|
expect(runner).to receive(:assign_to).with(project, user).once.and_call_original
|
|
|
|
is_expected.to be_success
|
|
end
|
|
end
|
|
end
|