debian-mirror-gitlab/spec/features/projects/clusters/user_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

115 lines
3.7 KiB
Ruby
Raw Normal View History

2019-10-12 21:52:04 +05:30
# frozen_string_literal: true
2018-03-17 18:26:18 +05:30
require 'spec_helper'
2020-06-23 00:09:42 +05:30
RSpec.describe 'User Cluster', :js do
2018-03-17 18:26:18 +05:30
include GoogleApi::CloudPlatformHelpers
let(:project) { create(:project) }
let(:user) { create(:user) }
before do
2018-11-18 11:00:15 +05:30
project.add_maintainer(user)
2018-03-17 18:26:18 +05:30
gitlab_sign_in(user)
2018-12-13 13:39:08 +05:30
2018-03-17 18:26:18 +05:30
allow(Projects::ClustersController).to receive(:STATUS_POLLING_INTERVAL) { 100 }
2019-12-26 22:10:19 +05:30
allow_next_instance_of(Clusters::Kubernetes::CreateOrUpdateNamespaceService) do |instance|
allow(instance).to receive(:execute)
end
allow_next_instance_of(Clusters::Cluster) do |instance|
allow(instance).to receive(:retrieve_connection_status).and_return(:connected)
end
2018-03-17 18:26:18 +05:30
end
context 'when user does not have a cluster and visits cluster index page' do
before do
visit project_clusters_path(project)
2022-06-21 17:19:12 +05:30
click_button(class: 'dropdown-toggle-split')
click_link 'Connect a cluster (certificate - deprecated)'
2018-03-17 18:26:18 +05:30
end
context 'when user filled form with valid parameters' do
before do
fill_in 'cluster_name', with: 'dev-cluster'
fill_in 'cluster_platform_kubernetes_attributes_api_url', with: 'http://example.com'
fill_in 'cluster_platform_kubernetes_attributes_token', with: 'my-token'
end
2018-12-05 23:21:45 +05:30
subject { click_button 'Add Kubernetes cluster' }
2018-11-20 20:47:30 +05:30
2019-02-15 15:39:39 +05:30
it 'user sees a cluster details page' do
subject
2018-11-20 20:47:30 +05:30
2020-04-08 14:13:33 +05:30
expect(page).to have_content('GitLab Integration')
2019-02-15 15:39:39 +05:30
expect(page.find_field('cluster[name]').value).to eq('dev-cluster')
expect(page.find_field('cluster[platform_kubernetes_attributes][api_url]').value)
.to have_content('http://example.com')
expect(page.find_field('cluster[platform_kubernetes_attributes][token]').value)
2020-05-30 21:06:31 +05:30
.to be_empty
2019-02-15 15:39:39 +05:30
end
2018-12-05 23:21:45 +05:30
2019-02-15 15:39:39 +05:30
it 'user sees RBAC is enabled by default' do
expect(page).to have_checked_field('RBAC-enabled cluster')
2018-11-20 20:47:30 +05:30
end
2021-01-03 14:25:43 +05:30
it 'user sees namespace per environment is enabled by default' do
expect(page).to have_checked_field('Namespace per environment')
end
2018-03-17 18:26:18 +05:30
end
context 'when user filled form with invalid parameters' do
before do
click_button 'Add Kubernetes cluster'
end
it 'user sees a validation error' do
2019-07-07 11:18:12 +05:30
expect(page).to have_css('.gl-field-error')
2018-03-17 18:26:18 +05:30
end
end
end
context 'when user does have a cluster and visits cluster page' do
let(:cluster) { create(:cluster, :provided_by_user, projects: [project]) }
before do
visit project_cluster_path(project, cluster)
end
it 'user sees a cluster details page' do
2020-10-24 23:57:45 +05:30
expect(page).to have_content('GitLab Integration')
2018-03-17 18:26:18 +05:30
expect(page).to have_button('Save changes')
end
2022-05-07 20:08:51 +05:30
include_examples "user disables a cluster"
2018-03-17 18:26:18 +05:30
context 'when user changes cluster parameters' do
before do
fill_in 'cluster_name', with: 'my-dev-cluster'
fill_in 'cluster_platform_kubernetes_attributes_namespace', with: 'my-namespace'
2020-04-08 14:13:33 +05:30
page.within('.js-provider-details') { click_button 'Save changes' }
2018-03-17 18:26:18 +05:30
end
it 'user sees the successful message' do
expect(page).to have_content('Kubernetes cluster was successfully updated.')
expect(cluster.reload.name).to eq('my-dev-cluster')
expect(cluster.reload.platform_kubernetes.namespace).to eq('my-namespace')
end
end
2020-01-01 13:55:28 +05:30
context 'when user destroys the cluster' do
2018-03-17 18:26:18 +05:30
before do
2020-04-08 14:13:33 +05:30
click_link 'Advanced Settings'
2020-01-01 13:55:28 +05:30
click_button 'Remove integration and resources'
fill_in 'confirm_cluster_name_input', with: cluster.name
click_button 'Remove integration'
2022-01-26 12:08:38 +05:30
click_link 'Certificate'
2018-03-17 18:26:18 +05:30
end
it 'user sees creation form with the successful message' do
expect(page).to have_content('Kubernetes cluster integration was successfully removed.')
end
end
end
end