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
e5d40968
Commit
e5d40968
authored
May 13, 2018
by
Matija Čupić
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Extract Clusters::CreateService EE specific spec parts
parent
98d2d23d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
106 additions
and
34 deletions
+106
-34
ee/spec/services/ee/clusters/create_service_spec.rb
ee/spec/services/ee/clusters/create_service_spec.rb
+103
-0
spec/services/clusters/create_service_spec.rb
spec/services/clusters/create_service_spec.rb
+3
-34
No files found.
ee/spec/services/ee/clusters/create_service_spec.rb
0 → 100644
View file @
e5d40968
require
'spec_helper'
describe
Clusters
::
CreateService
do
let
(
:access_token
)
{
'xxx'
}
let
(
:project
)
{
create
(
:project
)
}
let
(
:user
)
{
create
(
:user
)
}
let!
(
:cluster
)
{
create
(
:cluster
,
:provided_by_gcp
,
:production_environment
,
projects:
[
project
])
}
subject
{
described_class
.
new
(
project
,
user
,
params
).
execute
(
access_token
)
}
shared_context
'valid params'
do
let
(
:params
)
do
{
name:
'test-cluster'
,
provider_type: :gcp
,
provider_gcp_attributes:
{
gcp_project_id:
'gcp-project'
,
zone:
'us-central1-a'
,
num_nodes:
1
,
machine_type:
'machine_type-a'
}
}
end
end
shared_context
'invalid params'
do
let
(
:params
)
do
{
name:
'test-cluster'
,
provider_type: :gcp
,
provider_gcp_attributes:
{
gcp_project_id:
'!!!!!!!'
,
zone:
'us-central1-a'
,
num_nodes:
1
,
machine_type:
'machine_type-a'
}
}
end
end
shared_examples
'create cluster'
do
it
'creates a cluster object and performs a worker'
do
expect
(
ClusterProvisionWorker
).
to
receive
(
:perform_async
)
expect
{
subject
}
.
to
change
{
Clusters
::
Cluster
.
count
}.
by
(
1
)
.
and
change
{
Clusters
::
Providers
::
Gcp
.
count
}.
by
(
1
)
expect
(
subject
.
name
).
to
eq
(
'test-cluster'
)
expect
(
subject
.
user
).
to
eq
(
user
)
expect
(
subject
.
project
).
to
eq
(
project
)
expect
(
subject
.
provider
.
gcp_project_id
).
to
eq
(
'gcp-project'
)
expect
(
subject
.
provider
.
zone
).
to
eq
(
'us-central1-a'
)
expect
(
subject
.
provider
.
num_nodes
).
to
eq
(
1
)
expect
(
subject
.
provider
.
machine_type
).
to
eq
(
'machine_type-a'
)
expect
(
subject
.
provider
.
access_token
).
to
eq
(
access_token
)
expect
(
subject
.
platform
).
to
be_nil
end
end
shared_examples
'error'
do
it
'returns an error'
do
expect
(
ClusterProvisionWorker
).
not_to
receive
(
:perform_async
)
expect
{
subject
}.
to
change
{
Clusters
::
Cluster
.
count
}.
by
(
0
)
expect
(
subject
.
errors
[
:"provider_gcp.gcp_project_id"
]).
to
be_present
end
end
before
do
allow
(
project
).
to
receive
(
:feature_available?
).
and_call_original
end
context
'when license has multiple clusters feature'
do
before
do
allow
(
project
).
to
receive
(
:feature_available?
).
with
(
:multiple_clusters
).
and_return
(
true
)
end
context
'when correct params'
do
include_context
'valid params'
include_examples
'create cluster'
end
context
'when invalid params'
do
include_context
'invalid params'
include_examples
'error'
end
end
context
'when license does not have multiple clusters feature'
do
include_context
'valid params'
before
do
allow
(
project
).
to
receive
(
:feature_available?
).
with
(
:multiple_clusters
).
and_return
(
false
)
end
it
'does not create a cluster'
do
expect
(
ClusterProvisionWorker
).
not_to
receive
(
:perform_async
)
expect
{
subject
}.
to
raise_error
(
ArgumentError
).
and
change
{
Clusters
::
Cluster
.
count
}.
by
(
0
)
end
end
end
spec/services/clusters/create_service_spec.rb
View file @
e5d40968
...
...
@@ -82,42 +82,11 @@ describe Clusters::CreateService do
context
'when project has a cluster'
do
include_context
'valid params'
let!
(
:cluster
)
{
create
(
:cluster
,
:provided_by_gcp
,
:production_environment
,
projects:
[
project
])
}
before
do
allow
(
project
).
to
receive
(
:feature_available?
).
and_call_original
end
context
'when license has multiple clusters feature'
do
before
do
allow
(
project
).
to
receive
(
:feature_available?
).
with
(
:multiple_clusters
).
and_return
(
true
)
end
context
'when correct params'
do
include_context
'valid params'
include_examples
'create cluster'
end
context
'when invalid params'
do
include_context
'invalid params'
include_examples
'error'
end
end
context
'when license does not have multiple clusters feature'
do
include_context
'valid params'
before
do
allow
(
project
).
to
receive
(
:feature_available?
).
with
(
:multiple_clusters
).
and_return
(
false
)
end
it
'does not create a cluster'
do
expect
(
ClusterProvisionWorker
).
not_to
receive
(
:perform_async
)
expect
{
subject
}.
to
raise_error
(
ArgumentError
).
and
change
{
Clusters
::
Cluster
.
count
}.
by
(
0
)
end
it
'does not create a cluster'
do
expect
(
ClusterProvisionWorker
).
not_to
receive
(
:perform_async
)
expect
{
subject
}.
to
raise_error
(
ArgumentError
).
and
change
{
Clusters
::
Cluster
.
count
}.
by
(
0
)
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