420 lines
		
	
	
		
			13 KiB
		
	
	
	
		
			Ruby
		
	
	
	
			
		
		
	
	
			420 lines
		
	
	
		
			13 KiB
		
	
	
	
		
			Ruby
		
	
	
	
| require 'spec_helper'
 | |
| 
 | |
| describe Projects::ClustersController do
 | |
|   include AccessMatchersForController
 | |
|   include GoogleApi::CloudPlatformHelpers
 | |
| 
 | |
|   set(:project) { create(:project) }
 | |
| 
 | |
|   describe 'GET index' do
 | |
|     describe 'functionality' do
 | |
|       let(:user) { create(:user) }
 | |
| 
 | |
|       before do
 | |
|         project.add_master(user)
 | |
|         sign_in(user)
 | |
|       end
 | |
| 
 | |
|       context 'when project has one or more clusters' do
 | |
|         let(:project) { create(:project) }
 | |
|         let!(:enabled_cluster) { create(:cluster, :provided_by_gcp, projects: [project]) }
 | |
|         let!(:disabled_cluster) { create(:cluster, :disabled, :provided_by_gcp, projects: [project]) }
 | |
|         it 'lists available clusters' do
 | |
|           go
 | |
| 
 | |
|           expect(response).to have_gitlab_http_status(:ok)
 | |
|           expect(response).to render_template(:index)
 | |
|           expect(assigns(:clusters)).to match_array([enabled_cluster, disabled_cluster])
 | |
|         end
 | |
| 
 | |
|         it 'assigns counters to correct values' do
 | |
|           go
 | |
| 
 | |
|           expect(assigns(:active_count)).to eq(1)
 | |
|           expect(assigns(:inactive_count)).to eq(1)
 | |
|         end
 | |
| 
 | |
|         context 'when page is specified' do
 | |
|           let(:last_page) { project.clusters.page.total_pages }
 | |
| 
 | |
|           before do
 | |
|             Clusters::Cluster.paginates_per(1)
 | |
|             create_list(:cluster, 2, :provided_by_gcp, projects: [project])
 | |
|             get :index, namespace_id: project.namespace, project_id: project, page: last_page
 | |
|           end
 | |
| 
 | |
|           it 'redirects to the page' do
 | |
|             expect(response).to have_gitlab_http_status(:ok)
 | |
|             expect(assigns(:clusters).current_page).to eq(last_page)
 | |
|           end
 | |
|         end
 | |
| 
 | |
|         context 'when only enabled clusters are requested' do
 | |
|           it 'returns only enabled clusters' do
 | |
|             get :index, namespace_id: project.namespace, project_id: project, scope: 'active'
 | |
|             expect(assigns(:clusters)).to all(have_attributes(enabled: true))
 | |
|           end
 | |
|         end
 | |
| 
 | |
|         context 'when only disabled clusters are requested' do
 | |
|           it 'returns only disabled clusters' do
 | |
|             get :index, namespace_id: project.namespace, project_id: project, scope: 'inactive'
 | |
|             expect(assigns(:clusters)).to all(have_attributes(enabled: false))
 | |
|           end
 | |
|         end
 | |
|       end
 | |
| 
 | |
|       context 'when project does not have a cluster' do
 | |
|         let(:project) { create(:project) }
 | |
| 
 | |
|         it 'returns an empty state page' do
 | |
|           go
 | |
| 
 | |
|           expect(response).to have_gitlab_http_status(:ok)
 | |
|           expect(response).to render_template(:index, partial: :empty_state)
 | |
|           expect(assigns(:clusters)).to eq([])
 | |
|         end
 | |
| 
 | |
|         it 'assigns counters to zero' do
 | |
|           go
 | |
| 
 | |
|           expect(assigns(:active_count)).to eq(0)
 | |
|           expect(assigns(:inactive_count)).to eq(0)
 | |
|         end
 | |
|       end
 | |
|     end
 | |
| 
 | |
|     describe 'security' do
 | |
|       let(:cluster) { create(:cluster, :provided_by_gcp, projects: [project]) }
 | |
| 
 | |
|       it { expect { go }.to be_allowed_for(:admin) }
 | |
|       it { expect { go }.to be_allowed_for(:owner).of(project) }
 | |
|       it { expect { go }.to be_allowed_for(:master).of(project) }
 | |
|       it { expect { go }.to be_denied_for(:developer).of(project) }
 | |
|       it { expect { go }.to be_denied_for(:reporter).of(project) }
 | |
|       it { expect { go }.to be_denied_for(:guest).of(project) }
 | |
|       it { expect { go }.to be_denied_for(:user) }
 | |
|       it { expect { go }.to be_denied_for(:external) }
 | |
|     end
 | |
| 
 | |
|     def go
 | |
|       get :index, namespace_id: project.namespace.to_param, project_id: project
 | |
|     end
 | |
|   end
 | |
| 
 | |
|   describe 'GET status' do
 | |
|     let(:cluster) { create(:cluster, :providing_by_gcp, projects: [project]) }
 | |
| 
 | |
|     describe 'functionality' do
 | |
|       let(:user) { create(:user) }
 | |
| 
 | |
|       before do
 | |
|         project.add_master(user)
 | |
|         sign_in(user)
 | |
|       end
 | |
| 
 | |
|       it "responds with matching schema" do
 | |
|         go
 | |
| 
 | |
|         expect(response).to have_gitlab_http_status(:ok)
 | |
|         expect(response).to match_response_schema('cluster_status')
 | |
|       end
 | |
|     end
 | |
| 
 | |
|     describe 'security' do
 | |
|       it { expect { go }.to be_allowed_for(:admin) }
 | |
|       it { expect { go }.to be_allowed_for(:owner).of(project) }
 | |
|       it { expect { go }.to be_allowed_for(:master).of(project) }
 | |
|       it { expect { go }.to be_denied_for(:developer).of(project) }
 | |
|       it { expect { go }.to be_denied_for(:reporter).of(project) }
 | |
|       it { expect { go }.to be_denied_for(:guest).of(project) }
 | |
|       it { expect { go }.to be_denied_for(:user) }
 | |
|       it { expect { go }.to be_denied_for(:external) }
 | |
|     end
 | |
| 
 | |
|     def go
 | |
|       get :status, namespace_id: project.namespace,
 | |
|                    project_id: project,
 | |
|                    id: cluster,
 | |
|                    format: :json
 | |
|     end
 | |
|   end
 | |
| 
 | |
|   describe 'GET show' do
 | |
|     let(:cluster) { create(:cluster, :provided_by_gcp, projects: [project]) }
 | |
| 
 | |
|     describe 'functionality' do
 | |
|       let(:user) { create(:user) }
 | |
| 
 | |
|       before do
 | |
|         project.add_master(user)
 | |
|         sign_in(user)
 | |
|       end
 | |
| 
 | |
|       it "renders view" do
 | |
|         go
 | |
| 
 | |
|         expect(response).to have_gitlab_http_status(:ok)
 | |
|         expect(assigns(:cluster)).to eq(cluster)
 | |
|       end
 | |
|     end
 | |
| 
 | |
|     describe 'security' do
 | |
|       it { expect { go }.to be_allowed_for(:admin) }
 | |
|       it { expect { go }.to be_allowed_for(:owner).of(project) }
 | |
|       it { expect { go }.to be_allowed_for(:master).of(project) }
 | |
|       it { expect { go }.to be_denied_for(:developer).of(project) }
 | |
|       it { expect { go }.to be_denied_for(:reporter).of(project) }
 | |
|       it { expect { go }.to be_denied_for(:guest).of(project) }
 | |
|       it { expect { go }.to be_denied_for(:user) }
 | |
|       it { expect { go }.to be_denied_for(:external) }
 | |
|     end
 | |
| 
 | |
|     def go
 | |
|       get :show, namespace_id: project.namespace,
 | |
|                  project_id: project,
 | |
|                  id: cluster
 | |
|     end
 | |
|   end
 | |
| 
 | |
|   describe 'PUT update' do
 | |
|     context 'when cluster is provided by GCP' do
 | |
|       let(:cluster) { create(:cluster, :provided_by_gcp, projects: [project]) }
 | |
|       let(:user) { create(:user) }
 | |
| 
 | |
|       before do
 | |
|         project.add_master(user)
 | |
|         sign_in(user)
 | |
|       end
 | |
| 
 | |
|       context 'when changing parameters' do
 | |
|         let(:params) do
 | |
|           {
 | |
|             cluster: {
 | |
|               enabled: false,
 | |
|               name: 'my-new-cluster-name',
 | |
|               platform_kubernetes_attributes: {
 | |
|                 namespace: 'my-namespace'
 | |
|               }
 | |
|             }
 | |
|           }
 | |
|         end
 | |
| 
 | |
|         it "updates and redirects back to show page" do
 | |
|           go
 | |
| 
 | |
|           cluster.reload
 | |
|           expect(response).to redirect_to(project_cluster_path(project, cluster))
 | |
|           expect(flash[:notice]).to eq('Cluster was successfully updated.')
 | |
|           expect(cluster.enabled).to be_falsey
 | |
|         end
 | |
| 
 | |
|         it "does not change cluster name" do
 | |
|           go
 | |
| 
 | |
|           expect(cluster.name).to eq('test-cluster')
 | |
|         end
 | |
| 
 | |
|         context 'when cluster is being created' do
 | |
|           let(:cluster) { create(:cluster, :providing_by_gcp, projects: [project]) }
 | |
| 
 | |
|           it "rejects changes" do
 | |
|             go
 | |
| 
 | |
|             expect(response).to have_gitlab_http_status(:ok)
 | |
|             expect(response).to render_template(:show)
 | |
|             expect(cluster.enabled).to be_truthy
 | |
|           end
 | |
|         end
 | |
|       end
 | |
|     end
 | |
| 
 | |
|     context 'when cluster is provided by user' do
 | |
|       let(:cluster) { create(:cluster, :provided_by_user, projects: [project]) }
 | |
|       let(:user) { create(:user) }
 | |
| 
 | |
|       before do
 | |
|         project.add_master(user)
 | |
|         sign_in(user)
 | |
|       end
 | |
| 
 | |
|       context 'when format is json' do
 | |
|         context 'when changing parameters' do
 | |
|           context 'when valid parameters are used' do
 | |
|             let(:params) do
 | |
|               {
 | |
|                 cluster: {
 | |
|                   enabled: false,
 | |
|                   name: 'my-new-cluster-name',
 | |
|                   platform_kubernetes_attributes: {
 | |
|                     namespace: 'my-namespace'
 | |
|                   }
 | |
|                 }
 | |
|               }
 | |
|             end
 | |
| 
 | |
|             it "updates and redirects back to show page" do
 | |
|               go_json
 | |
| 
 | |
|               cluster.reload
 | |
|               expect(response).to have_http_status(:no_content)
 | |
|               expect(cluster.enabled).to be_falsey
 | |
|               expect(cluster.name).to eq('my-new-cluster-name')
 | |
|               expect(cluster.platform_kubernetes.namespace).to eq('my-namespace')
 | |
|             end
 | |
|           end
 | |
| 
 | |
|           context 'when invalid parameters are used' do
 | |
|             let(:params) do
 | |
|               {
 | |
|                 cluster: {
 | |
|                   enabled: false,
 | |
|                   platform_kubernetes_attributes: {
 | |
|                     namespace: 'my invalid namespace #@'
 | |
|                   }
 | |
|                 }
 | |
|               }
 | |
|             end
 | |
| 
 | |
|             it "rejects changes" do
 | |
|               go_json
 | |
| 
 | |
|               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
 | |
|             {
 | |
|               cluster: {
 | |
|                 enabled: false,
 | |
|                 name: 'my-new-cluster-name',
 | |
|                 platform_kubernetes_attributes: {
 | |
|                   namespace: 'my-namespace'
 | |
|                 }
 | |
|               }
 | |
|             }
 | |
|           end
 | |
| 
 | |
|           it "updates and redirects back to show page" do
 | |
|             go
 | |
| 
 | |
|             cluster.reload
 | |
|             expect(response).to redirect_to(project_cluster_path(project, cluster))
 | |
|             expect(flash[:notice]).to eq('Cluster was successfully updated.')
 | |
|             expect(cluster.enabled).to be_falsey
 | |
|             expect(cluster.name).to eq('my-new-cluster-name')
 | |
|             expect(cluster.platform_kubernetes.namespace).to eq('my-namespace')
 | |
|           end
 | |
|         end
 | |
|       end
 | |
|     end
 | |
| 
 | |
|     describe 'security' do
 | |
|       set(:cluster) { create(:cluster, :provided_by_gcp, projects: [project]) }
 | |
| 
 | |
|       let(:params) do
 | |
|         { cluster: { enabled: false } }
 | |
|       end
 | |
| 
 | |
|       it { expect { go }.to be_allowed_for(:admin) }
 | |
|       it { expect { go }.to be_allowed_for(:owner).of(project) }
 | |
|       it { expect { go }.to be_allowed_for(:master).of(project) }
 | |
|       it { expect { go }.to be_denied_for(:developer).of(project) }
 | |
|       it { expect { go }.to be_denied_for(:reporter).of(project) }
 | |
|       it { expect { go }.to be_denied_for(:guest).of(project) }
 | |
|       it { expect { go }.to be_denied_for(:user) }
 | |
|       it { expect { go }.to be_denied_for(:external) }
 | |
|     end
 | |
| 
 | |
|     def go
 | |
|       put :update, params.merge(namespace_id: project.namespace,
 | |
|                                 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 destroy' do
 | |
|     describe 'functionality' do
 | |
|       let(:user) { create(:user) }
 | |
| 
 | |
|       before do
 | |
|         project.add_master(user)
 | |
|         sign_in(user)
 | |
|       end
 | |
| 
 | |
|       context 'when cluster is provided by GCP' do
 | |
|         context 'when cluster is created' do
 | |
|           let!(:cluster) { create(:cluster, :provided_by_gcp, projects: [project]) }
 | |
| 
 | |
|           it "destroys and redirects back to clusters list" do
 | |
|             expect { go }
 | |
|               .to change { Clusters::Cluster.count }.by(-1)
 | |
|               .and change { Clusters::Platforms::Kubernetes.count }.by(-1)
 | |
|               .and change { Clusters::Providers::Gcp.count }.by(-1)
 | |
| 
 | |
|             expect(response).to redirect_to(project_clusters_path(project))
 | |
|             expect(flash[:notice]).to eq('Cluster integration was successfully removed.')
 | |
|           end
 | |
|         end
 | |
| 
 | |
|         context 'when cluster is being created' do
 | |
|           let!(:cluster) { create(:cluster, :providing_by_gcp, projects: [project]) }
 | |
| 
 | |
|           it "destroys and redirects back to clusters list" do
 | |
|             expect { go }
 | |
|               .to change { Clusters::Cluster.count }.by(-1)
 | |
|               .and change { Clusters::Providers::Gcp.count }.by(-1)
 | |
| 
 | |
|             expect(response).to redirect_to(project_clusters_path(project))
 | |
|             expect(flash[:notice]).to eq('Cluster integration was successfully removed.')
 | |
|           end
 | |
|         end
 | |
|       end
 | |
| 
 | |
|       context 'when cluster is provided by user' do
 | |
|         let!(:cluster) { create(:cluster, :provided_by_user, projects: [project]) }
 | |
| 
 | |
|         it "destroys and redirects back to clusters list" do
 | |
|           expect { go }
 | |
|             .to change { Clusters::Cluster.count }.by(-1)
 | |
|             .and change { Clusters::Platforms::Kubernetes.count }.by(-1)
 | |
|             .and change { Clusters::Providers::Gcp.count }.by(0)
 | |
| 
 | |
|           expect(response).to redirect_to(project_clusters_path(project))
 | |
|           expect(flash[:notice]).to eq('Cluster integration was successfully removed.')
 | |
|         end
 | |
|       end
 | |
|     end
 | |
| 
 | |
|     describe 'security' do
 | |
|       set(:cluster) { create(:cluster, :provided_by_gcp, projects: [project]) }
 | |
| 
 | |
|       it { expect { go }.to be_allowed_for(:admin) }
 | |
|       it { expect { go }.to be_allowed_for(:owner).of(project) }
 | |
|       it { expect { go }.to be_allowed_for(:master).of(project) }
 | |
|       it { expect { go }.to be_denied_for(:developer).of(project) }
 | |
|       it { expect { go }.to be_denied_for(:reporter).of(project) }
 | |
|       it { expect { go }.to be_denied_for(:guest).of(project) }
 | |
|       it { expect { go }.to be_denied_for(:user) }
 | |
|       it { expect { go }.to be_denied_for(:external) }
 | |
|     end
 | |
| 
 | |
|     def go
 | |
|       delete :destroy, namespace_id: project.namespace,
 | |
|                        project_id: project,
 | |
|                        id: cluster
 | |
|     end
 | |
|   end
 | |
| end
 |