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
d945300b
Commit
d945300b
authored
Nov 14, 2016
by
Grzegorz Bizon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Check permissions before stopping CI environments
parent
ec0daedb
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
50 additions
and
23 deletions
+50
-23
app/services/ci/stop_environment_service.rb
app/services/ci/stop_environment_service.rb
+1
-0
spec/services/ci/stop_environment_service_spec.rb
spec/services/ci/stop_environment_service_spec.rb
+49
-23
No files found.
app/services/ci/stop_environment_service.rb
View file @
d945300b
...
...
@@ -10,6 +10,7 @@ module Ci
environments
.
each
do
|
environment
|
next
unless
environment
.
stoppable?
next
unless
can?
(
current_user
,
:create_deployment
,
project
)
environment
.
stop!
(
current_user
)
end
...
...
spec/services/ci/stop_environment_service_spec.rb
View file @
d945300b
require
'spec_helper'
describe
Ci
::
StopEnvironmentService
,
services:
true
do
let
(
:project
)
{
create
(
:project
)
}
let
(
:project
)
{
create
(
:project
,
:private
)
}
let
(
:user
)
{
create
(
:user
)
}
let
(
:service
)
{
described_class
.
new
(
project
,
user
)
}
...
...
@@ -12,38 +12,46 @@ describe Ci::StopEnvironmentService, services: true do
create
(
:environment
,
:with_review_app
,
project:
project
)
end
it
'stops environment'
do
expect_any_instance_of
(
Environment
).
to
receive
(
:stop!
)
context
'when user has permission to stop environment'
do
before
do
project
.
team
<<
[
user
,
:developer
]
end
service
.
execute
(
'master'
)
end
it
'stops environment'
do
expect_environment_stopped_on
(
'master'
)
end
context
'when specified branch does not exist'
do
it
'does not stop environment'
do
expect_any_instance_of
(
Environment
).
not_to
receive
(
:stop!
)
context
'when specified branch does not exist'
do
it
'does not stop environment'
do
expect_environment_not_stopped_on
(
'non/existent/branch'
)
end
end
service
.
execute
(
'non/existent/branch'
)
context
'when no branch not specified'
do
it
'does not stop environment'
do
expect_environment_not_stopped_on
(
nil
)
end
end
end
context
'when no branch not specified'
do
it
'does not stop environment'
do
expect_any_instance_of
(
Environment
).
not_to
receive
(
:stop!
)
context
'when environment is not stoppable'
do
before
do
allow_any_instance_of
(
Environment
)
.
to
receive
(
:stoppable?
).
and_return
(
false
)
end
service
.
execute
(
nil
)
it
'does not stop environment'
do
expect_environment_not_stopped_on
(
'master'
)
end
end
end
context
'when
environment is not stoppable
'
do
context
'when
user does not have permission to stop environment
'
do
before
do
allow_any_instance_of
(
Environment
)
.
to
receive
(
:stoppable?
).
and_return
(
false
)
project
.
team
<<
[
user
,
:guest
]
end
it
'does not stop environment'
do
expect_any_instance_of
(
Environment
).
not_to
receive
(
:stop!
)
service
.
execute
(
'master'
)
expect_environment_not_stopped_on
(
'master'
)
end
end
end
...
...
@@ -53,10 +61,14 @@ describe Ci::StopEnvironmentService, services: true do
create
(
:environment
,
project:
project
)
end
it
'does not stop environment'
do
expect_any_instance_of
(
Environment
).
not_to
receive
(
:stop!
)
context
'when user has permission to stop environments'
do
before
do
project
.
team
<<
[
user
,
:master
]
end
service
.
execute
(
'master'
)
it
'does not stop environment'
do
expect_environment_not_stopped_on
(
'master'
)
end
end
end
...
...
@@ -67,4 +79,18 @@ describe Ci::StopEnvironmentService, services: true do
end
end
end
def
expect_environment_stopped_on
(
branch
)
expect_any_instance_of
(
Environment
)
.
to
receive
(
:stop!
)
service
.
execute
(
branch
)
end
def
expect_environment_not_stopped_on
(
branch
)
expect_any_instance_of
(
Environment
)
.
not_to
receive
(
:stop!
)
service
.
execute
(
branch
)
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