Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
b36116f9
Commit
b36116f9
authored
Feb 16, 2016
by
Tomasz Maczukin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move :runner_id param to POST body when enabling specific runner in project
parent
dc182dc5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
9 deletions
+17
-9
lib/api/runners.rb
lib/api/runners.rb
+3
-1
spec/requests/api/runners_spec.rb
spec/requests/api/runners_spec.rb
+14
-8
No files found.
lib/api/runners.rb
View file @
b36116f9
...
@@ -91,7 +91,9 @@ module API
...
@@ -91,7 +91,9 @@ module API
# runner_id (required) - The ID of the runner
# runner_id (required) - The ID of the runner
# Example Request:
# Example Request:
# POST /projects/:id/runners/:runner_id
# 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
])
runner
=
get_runner
(
params
[
:runner_id
])
authenticate_enable_runner!
(
runner
)
authenticate_enable_runner!
(
runner
)
Ci
::
RunnerProject
.
create
(
runner:
runner
,
project:
user_project
)
Ci
::
RunnerProject
.
create
(
runner:
runner
,
project:
user_project
)
...
...
spec/requests/api/runners_spec.rb
View file @
b36116f9
...
@@ -337,27 +337,27 @@ describe API::API, api: true do
...
@@ -337,27 +337,27 @@ describe API::API, api: true do
end
end
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
)
{
create
(
:ci_specific_runner
)
}
let!
(
:specific_runner2_project
)
{
create
(
:ci_runner_project
,
runner:
specific_runner2
,
project:
project2
)
}
let!
(
:specific_runner2_project
)
{
create
(
:ci_runner_project
,
runner:
specific_runner2
,
project:
project2
)
}
context
'authorized user'
do
context
'authorized user'
do
it
'should enable specific runner'
do
it
'should enable specific runner'
do
expect
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
)
end
.
to
change
{
project
.
runners
.
count
}.
by
(
+
1
)
expect
(
response
.
status
).
to
eq
(
201
)
expect
(
response
.
status
).
to
eq
(
201
)
end
end
it
'should avoid changes when enabling already enabled runner'
do
it
'should avoid changes when enabling already enabled runner'
do
expect
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
)
end
.
to
change
{
project
.
runners
.
count
}.
by
(
0
)
expect
(
response
.
status
).
to
eq
(
201
)
expect
(
response
.
status
).
to
eq
(
201
)
end
end
it
'should not enable shared runner'
do
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
)
expect
(
response
.
status
).
to
eq
(
403
)
end
end
...
@@ -365,7 +365,7 @@ describe API::API, api: true do
...
@@ -365,7 +365,7 @@ describe API::API, api: true do
context
'user is admin'
do
context
'user is admin'
do
it
'should enable any specific runner'
do
it
'should enable any specific runner'
do
expect
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
)
end
.
to
change
{
project
.
runners
.
count
}.
by
(
+
1
)
expect
(
response
.
status
).
to
eq
(
201
)
expect
(
response
.
status
).
to
eq
(
201
)
end
end
...
@@ -373,16 +373,22 @@ describe API::API, api: true do
...
@@ -373,16 +373,22 @@ describe API::API, api: true do
context
'user is not admin'
do
context
'user is not admin'
do
it
'should not enable runner without access to'
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
)
expect
(
response
.
status
).
to
eq
(
403
)
end
end
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
end
context
'authorized user without permissions'
do
context
'authorized user without permissions'
do
it
'should not enable runner'
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
)
expect
(
response
.
status
).
to
eq
(
403
)
end
end
...
@@ -390,7 +396,7 @@ describe API::API, api: true do
...
@@ -390,7 +396,7 @@ describe API::API, api: true do
context
'unauthorized user'
do
context
'unauthorized user'
do
it
'should not enable runner'
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
)
expect
(
response
.
status
).
to
eq
(
401
)
end
end
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment