Move :runner_id param to POST body when enabling specific runner in project
This commit is contained in:
parent
dc182dc50e
commit
b36116f9ad
2 changed files with 17 additions and 9 deletions
|
@ -91,7 +91,9 @@ module API
|
|||
# runner_id (required) - The ID of the runner
|
||||
# Example Request:
|
||||
# POST /projects/:id/runners/:runner_id
|
||||
post ':id/runners/:runner_id' do
|
||||
post ':id/runners' do
|
||||
required_attributes! [:runner_id]
|
||||
|
||||
runner = get_runner(params[:runner_id])
|
||||
authenticate_enable_runner!(runner)
|
||||
Ci::RunnerProject.create(runner: runner, project: user_project)
|
||||
|
|
|
@ -337,27 +337,27 @@ describe API::API, api: true do
|
|||
end
|
||||
end
|
||||
|
||||
describe 'POST /projects/:id/runners/:runner_id' do
|
||||
describe 'POST /projects/:id/runners' do
|
||||
let!(:specific_runner2) { create(:ci_specific_runner) }
|
||||
let!(:specific_runner2_project) { create(:ci_runner_project, runner: specific_runner2, project: project2) }
|
||||
|
||||
context 'authorized user' do
|
||||
it 'should enable specific runner' do
|
||||
expect do
|
||||
post api("/projects/#{project.id}/runners/#{specific_runner2.id}", user)
|
||||
post api("/projects/#{project.id}/runners", user), runner_id: specific_runner2.id
|
||||
end.to change{ project.runners.count }.by(+1)
|
||||
expect(response.status).to eq(201)
|
||||
end
|
||||
|
||||
it 'should avoid changes when enabling already enabled runner' do
|
||||
expect do
|
||||
post api("/projects/#{project.id}/runners/#{specific_runner.id}", user)
|
||||
post api("/projects/#{project.id}/runners", user), runner_id: specific_runner.id
|
||||
end.to change{ project.runners.count }.by(0)
|
||||
expect(response.status).to eq(201)
|
||||
end
|
||||
|
||||
it 'should not enable shared runner' do
|
||||
post api("/projects/#{project.id}/runners/#{shared_runner.id}", user)
|
||||
post api("/projects/#{project.id}/runners", user), runner_id: shared_runner.id
|
||||
|
||||
expect(response.status).to eq(403)
|
||||
end
|
||||
|
@ -365,7 +365,7 @@ describe API::API, api: true do
|
|||
context 'user is admin' do
|
||||
it 'should enable any specific runner' do
|
||||
expect do
|
||||
post api("/projects/#{project.id}/runners/#{unused_specific_runner.id}", admin)
|
||||
post api("/projects/#{project.id}/runners", admin), runner_id: unused_specific_runner.id
|
||||
end.to change{ project.runners.count }.by(+1)
|
||||
expect(response.status).to eq(201)
|
||||
end
|
||||
|
@ -373,16 +373,22 @@ describe API::API, api: true do
|
|||
|
||||
context 'user is not admin' do
|
||||
it 'should not enable runner without access to' do
|
||||
post api("/projects/#{project.id}/runners/#{unused_specific_runner.id}", user)
|
||||
post api("/projects/#{project.id}/runners", user), runner_id: unused_specific_runner.id
|
||||
|
||||
expect(response.status).to eq(403)
|
||||
end
|
||||
end
|
||||
|
||||
it 'should raise an error when no runner_id param is provided' do
|
||||
post api("/projects/#{project.id}/runners", admin)
|
||||
|
||||
expect(response.status).to eq(400)
|
||||
end
|
||||
end
|
||||
|
||||
context 'authorized user without permissions' do
|
||||
it 'should not enable runner' do
|
||||
post api("/projects/#{project.id}/runners/#{specific_runner2.id}", user2)
|
||||
post api("/projects/#{project.id}/runners", user2), runner_id: specific_runner2.id
|
||||
|
||||
expect(response.status).to eq(403)
|
||||
end
|
||||
|
@ -390,7 +396,7 @@ describe API::API, api: true do
|
|||
|
||||
context 'unauthorized user' do
|
||||
it 'should not enable runner' do
|
||||
post api("/projects/#{project.id}/runners/#{specific_runner2.id}")
|
||||
post api("/projects/#{project.id}/runners"), runner_id: specific_runner2.id
|
||||
|
||||
expect(response.status).to eq(401)
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue