summaryrefslogtreecommitdiff
path: root/spec/support/services/clusters
diff options
context:
space:
mode:
authorThong Kuah <tkuah@gitlab.com>2018-10-16 21:05:04 +1300
committerThong Kuah <tkuah@gitlab.com>2018-10-17 10:43:14 +1300
commitc3c22cb210dd1545b1a4ef500643480836245bae (patch)
treef8b5e66503f033cee671051562c70ef5ede7baa9 /spec/support/services/clusters
parentb69a047409d035aa69f8018cea2a86884e0530fd (diff)
downloadgitlab-ce-refactor-cluster-create-service-spec.tar.gz
Move shared examples into the only file where usedrefactor-cluster-create-service-spec
This will make it easier to perform in place adjustments, etc for future MRs involving group clusters.
Diffstat (limited to 'spec/support/services/clusters')
-rw-r--r--spec/support/services/clusters/create_service_shared.rb59
1 files changed, 0 insertions, 59 deletions
diff --git a/spec/support/services/clusters/create_service_shared.rb b/spec/support/services/clusters/create_service_shared.rb
deleted file mode 100644
index b0bf942aa09..00000000000
--- a/spec/support/services/clusters/create_service_shared.rb
+++ /dev/null
@@ -1,59 +0,0 @@
-shared_context 'valid cluster create 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',
- legacy_abac: 'true'
- }
- }
- end
-end
-
-shared_context 'invalid cluster create 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 service success' 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.provider).to be_legacy_abac
- expect(subject.platform).to be_nil
- end
-end
-
-shared_examples 'create cluster service 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