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
3856a3da
Commit
3856a3da
authored
Feb 15, 2017
by
Lin Jen-Shin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add some tests for admin/project runners page
parent
a065ee34
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
160 additions
and
0 deletions
+160
-0
spec/controllers/admin/runners_controller_spec.rb
spec/controllers/admin/runners_controller_spec.rb
+85
-0
spec/controllers/projects/runners_controller_spec.rb
spec/controllers/projects/runners_controller_spec.rb
+75
-0
No files found.
spec/controllers/admin/runners_controller_spec.rb
0 → 100644
View file @
3856a3da
require
'spec_helper'
describe
Admin
::
RunnersController
do
let
(
:runner
)
{
create
(
:ci_runner
)
}
before
do
sign_in
(
create
(
:admin
))
end
describe
'#index'
do
it
'lists all runners'
do
get
:index
expect
(
response
).
to
have_http_status
(
200
)
end
end
describe
'#show'
do
it
'shows a particular runner'
do
get
:show
,
id:
runner
.
id
expect
(
response
).
to
have_http_status
(
200
)
end
it
'shows 404 for unknown runner'
do
get
:show
,
id:
0
expect
(
response
).
to
have_http_status
(
404
)
end
end
describe
'#update'
do
it
'updates the runner and ticks the queue'
do
old_tick
=
runner
.
ensure_runner_queue_value
new_desc
=
runner
.
description
.
swapcase
post
:update
,
id:
runner
.
id
,
runner:
{
description:
new_desc
}
runner
.
reload
expect
(
response
).
to
have_http_status
(
302
)
expect
(
runner
.
description
).
to
eq
(
new_desc
)
expect
(
runner
.
ensure_runner_queue_value
).
not_to
eq
(
old_tick
)
end
end
describe
'#destroy'
do
it
'destroys the runner'
do
delete
:destroy
,
id:
runner
.
id
expect
(
response
).
to
have_http_status
(
302
)
expect
(
Ci
::
Runner
.
find_by
(
id:
runner
.
id
)).
to
be_nil
end
end
describe
'#resume'
do
it
'marks the runner as active and ticks the queue'
do
old_tick
=
runner
.
ensure_runner_queue_value
runner
.
update
(
active:
false
)
post
:resume
,
id:
runner
.
id
runner
.
reload
expect
(
response
).
to
have_http_status
(
302
)
expect
(
runner
.
active
).
to
eq
(
true
)
expect
(
runner
.
ensure_runner_queue_value
).
not_to
eq
(
old_tick
)
end
end
describe
'#pause'
do
it
'marks the runner as inactive and ticks the queue'
do
old_tick
=
runner
.
ensure_runner_queue_value
runner
.
update
(
active:
true
)
post
:pause
,
id:
runner
.
id
runner
.
reload
expect
(
response
).
to
have_http_status
(
302
)
expect
(
runner
.
active
).
to
eq
(
false
)
expect
(
runner
.
ensure_runner_queue_value
).
not_to
eq
(
old_tick
)
end
end
end
spec/controllers/projects/runners_controller_spec.rb
0 → 100644
View file @
3856a3da
require
'spec_helper'
describe
Projects
::
RunnersController
do
let
(
:user
)
{
create
(
:user
)
}
let
(
:project
)
{
create
(
:empty_project
)
}
let
(
:runner
)
{
create
(
:ci_runner
)
}
let
(
:params
)
do
{
namespace_id:
project
.
namespace
,
project_id:
project
,
id:
runner
}
end
before
do
sign_in
(
user
)
project
.
add_master
(
user
)
project
.
runners
<<
runner
end
describe
'#update'
do
it
'updates the runner and ticks the queue'
do
old_tick
=
runner
.
ensure_runner_queue_value
new_desc
=
runner
.
description
.
swapcase
post
:update
,
params
.
merge
(
runner:
{
description:
new_desc
}
)
runner
.
reload
expect
(
response
).
to
have_http_status
(
302
)
expect
(
runner
.
description
).
to
eq
(
new_desc
)
expect
(
runner
.
ensure_runner_queue_value
).
not_to
eq
(
old_tick
)
end
end
describe
'#destroy'
do
it
'destroys the runner'
do
delete
:destroy
,
params
expect
(
response
).
to
have_http_status
(
302
)
expect
(
Ci
::
Runner
.
find_by
(
id:
runner
.
id
)).
to
be_nil
end
end
describe
'#resume'
do
it
'marks the runner as active and ticks the queue'
do
old_tick
=
runner
.
ensure_runner_queue_value
runner
.
update
(
active:
false
)
post
:resume
,
params
runner
.
reload
expect
(
response
).
to
have_http_status
(
302
)
expect
(
runner
.
active
).
to
eq
(
true
)
expect
(
runner
.
ensure_runner_queue_value
).
not_to
eq
(
old_tick
)
end
end
describe
'#pause'
do
it
'marks the runner as inactive and ticks the queue'
do
old_tick
=
runner
.
ensure_runner_queue_value
runner
.
update
(
active:
true
)
post
:pause
,
params
runner
.
reload
expect
(
response
).
to
have_http_status
(
302
)
expect
(
runner
.
active
).
to
eq
(
false
)
expect
(
runner
.
ensure_runner_queue_value
).
not_to
eq
(
old_tick
)
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