BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
b7f35360
Unverified
Commit
b7f35360
authored
Dec 01, 2017
by
Matija Čupić
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add specs JSON PUT #delete for ClustersController
parent
5fb8b2f7
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
37 additions
and
0 deletions
+37
-0
clusters_controller_spec.rb
spec/controllers/projects/clusters_controller_spec.rb
+37
-0
No files found.
spec/controllers/projects/clusters_controller_spec.rb
View file @
b7f35360
...
...
@@ -384,6 +384,35 @@ describe Projects::ClustersController do
sign_in
(
user
)
end
context
'when format is json'
do
context
'when update enabled'
do
let
(
:params
)
do
{
cluster:
{
enabled:
false
}
}
end
it
"updates and redirects back to show page"
do
go_json
cluster
.
reload
expect
(
response
).
to
have_http_status
(
:no_content
)
end
context
'when cluster is being created'
do
let
(
:cluster
)
{
create
(
:cluster
,
:project
,
:providing_by_gcp
)
}
it
"rejects changes"
do
go_json
# head bad_request
expect
(
response
).
to
have_http_status
(
:bad_request
)
end
end
end
end
context
'when format is html'
do
context
'when update enabled'
do
let
(
:params
)
do
{
...
...
@@ -413,6 +442,7 @@ describe Projects::ClustersController do
end
end
end
end
describe
'security'
do
let
(
:params
)
do
...
...
@@ -436,6 +466,13 @@ describe Projects::ClustersController do
project_id:
project
,
id:
cluster
)
end
def
go_json
put
:update
,
params
.
merge
(
namespace_id:
project
.
namespace
,
project_id:
project
,
id:
cluster
,
format: :json
)
end
end
describe
'delete update'
do
...
...
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