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
1a6d9789
Commit
1a6d9789
authored
Apr 30, 2018
by
Dylan Griffith
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove unnecessary API specs for group runners since we do not have API support yet
parent
e2b62f6e
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
78 deletions
+1
-78
spec/requests/api/runners_spec.rb
spec/requests/api/runners_spec.rb
+1
-78
No files found.
spec/requests/api/runners_spec.rb
View file @
1a6d9789
...
...
@@ -47,7 +47,7 @@ describe API::Runners do
expect
(
response
).
to
include_pagination_headers
expect
(
json_response
).
to
be_an
Array
expect
(
descriptions
).
to
contain_exactly
(
'Project runner'
,
'
Group runner'
,
'
Two projects runner'
'Project runner'
,
'Two projects runner'
)
expect
(
shared
).
to
be_falsey
end
...
...
@@ -149,16 +149,6 @@ describe API::Runners do
expect
(
json_response
[
'projects'
].
first
[
'id'
]).
to
eq
(
project
.
id
)
end
it
"returns the group's details for a group runner"
do
get
api
(
"/runners/
#{
group_runner
.
id
}
"
,
admin
)
expect
(
json_response
[
'groups'
].
first
).
to
eq
(
'id'
=>
group
.
id
,
'web_url'
=>
group
.
web_url
,
'name'
=>
group
.
name
)
end
end
it
'returns 404 if runner does not exists'
do
...
...
@@ -188,29 +178,12 @@ describe API::Runners do
end
end
context
"runner group's administrative user"
do
context
'when runner is not shared'
do
it
"returns runner's details"
do
get
api
(
"/runners/
#{
group_runner
.
id
}
"
,
user
)
expect
(
response
).
to
have_http_status
(
200
)
expect
(
json_response
[
'id'
]).
to
eq
(
group_runner
.
id
)
end
end
end
context
'other authorized user'
do
it
"does not return project runner's details"
do
get
api
(
"/runners/
#{
project_runner
.
id
}
"
,
user2
)
expect
(
response
).
to
have_http_status
(
403
)
end
it
"does not return group runner's details"
do
get
api
(
"/runners/
#{
group_runner
.
id
}
"
,
user2
)
expect
(
response
).
to
have_gitlab_http_status
(
403
)
end
end
context
'unauthorized user'
do
...
...
@@ -219,12 +192,6 @@ describe API::Runners do
expect
(
response
).
to
have_http_status
(
401
)
end
it
"does not return group runner's details"
do
get
api
(
"/runners/
#{
group_runner
.
id
}
"
)
expect
(
response
).
to
have_gitlab_http_status
(
401
)
end
end
end
...
...
@@ -301,12 +268,6 @@ describe API::Runners do
expect
(
response
).
to
have_http_status
(
403
)
end
it
'does not update group runner without access to it'
do
put
api
(
"/runners/
#{
group_runner
.
id
}
"
,
user2
),
description:
'test'
expect
(
response
).
to
have_gitlab_http_status
(
403
)
end
it
'updates project runner with access to it'
do
description
=
project_runner
.
description
put
api
(
"/runners/
#{
project_runner
.
id
}
"
,
admin
),
description:
'test'
...
...
@@ -316,16 +277,6 @@ describe API::Runners do
expect
(
project_runner
.
description
).
to
eq
(
'test'
)
expect
(
project_runner
.
description
).
not_to
eq
(
description
)
end
it
'updates group runner with access to it'
do
description
=
group_runner
.
description
put
api
(
"/runners/
#{
group_runner
.
id
}
"
,
admin
),
description:
'test'
group_runner
.
reload
expect
(
response
).
to
have_gitlab_http_status
(
200
)
expect
(
group_runner
.
description
).
to
eq
(
'test'
)
expect
(
group_runner
.
description
).
not_to
eq
(
description
)
end
end
end
...
...
@@ -335,12 +286,6 @@ describe API::Runners do
expect
(
response
).
to
have_http_status
(
401
)
end
it
'does not delete group runner'
do
put
api
(
"/runners/
#{
group_runner
.
id
}
"
)
expect
(
response
).
to
have_gitlab_http_status
(
401
)
end
end
end
...
...
@@ -376,14 +321,6 @@ describe API::Runners do
expect
(
response
).
to
have_http_status
(
204
)
end
.
to
change
{
Ci
::
Runner
.
specific
.
count
}.
by
(
-
1
)
end
it
'deletes used group runner'
do
expect
do
delete
api
(
"/runners/
#{
group_runner
.
id
}
"
,
admin
)
expect
(
response
).
to
have_gitlab_http_status
(
204
)
end
.
to
change
{
Ci
::
Runner
.
specific
.
count
}.
by
(
-
1
)
end
end
it
'returns 404 if runner does not exists'
do
...
...
@@ -420,14 +357,6 @@ describe API::Runners do
end
.
to
change
{
Ci
::
Runner
.
specific
.
count
}.
by
(
-
1
)
end
it
'deletes group runner for one owned group'
do
expect
do
delete
api
(
"/runners/
#{
group_runner
.
id
}
"
,
user
)
expect
(
response
).
to
have_gitlab_http_status
(
204
)
end
.
to
change
{
Ci
::
Runner
.
specific
.
count
}.
by
(
-
1
)
end
it_behaves_like
'412 response'
do
let
(
:request
)
{
api
(
"/runners/
#{
project_runner
.
id
}
"
,
user
)
}
end
...
...
@@ -440,12 +369,6 @@ describe API::Runners do
expect
(
response
).
to
have_http_status
(
401
)
end
it
'does not delete group runner'
do
delete
api
(
"/runners/
#{
group_runner
.
id
}
"
)
expect
(
response
).
to
have_gitlab_http_status
(
401
)
end
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