2019-03-25 11:18:39 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-06-24 05:08:32 -04:00
|
|
|
RSpec.describe ClustersHelper do
|
2019-03-25 11:18:39 -04:00
|
|
|
describe '#has_rbac_enabled?' do
|
|
|
|
context 'when kubernetes platform has been created' do
|
|
|
|
let(:platform_kubernetes) { build_stubbed(:cluster_platform_kubernetes) }
|
|
|
|
let(:cluster) { build_stubbed(:cluster, :provided_by_gcp, platform_kubernetes: platform_kubernetes) }
|
|
|
|
|
|
|
|
it 'returns kubernetes platform value' do
|
|
|
|
expect(helper.has_rbac_enabled?(cluster)).to be_truthy
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when kubernetes platform has not been created yet' do
|
|
|
|
let(:cluster) { build_stubbed(:cluster, :providing_by_gcp) }
|
|
|
|
|
|
|
|
it 'delegates to cluster provider' do
|
|
|
|
expect(helper.has_rbac_enabled?(cluster)).to be_truthy
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when ABAC cluster is created' do
|
|
|
|
let(:provider) { build_stubbed(:cluster_provider_gcp, :abac_enabled) }
|
|
|
|
let(:cluster) { build_stubbed(:cluster, :providing_by_gcp, provider_gcp: provider) }
|
|
|
|
|
|
|
|
it 'delegates to cluster provider' do
|
|
|
|
expect(helper.has_rbac_enabled?(cluster)).to be_falsy
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2019-11-08 01:06:24 -05:00
|
|
|
|
|
|
|
describe '#create_new_cluster_label' do
|
|
|
|
subject { helper.create_new_cluster_label(provider: provider) }
|
|
|
|
|
|
|
|
context 'GCP provider' do
|
|
|
|
let(:provider) { 'gcp' }
|
|
|
|
|
2019-12-17 19:08:09 -05:00
|
|
|
it { is_expected.to eq('Create new cluster on GKE') }
|
2019-11-08 01:06:24 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'AWS provider' do
|
|
|
|
let(:provider) { 'aws' }
|
|
|
|
|
2019-12-17 19:08:09 -05:00
|
|
|
it { is_expected.to eq('Create new cluster on EKS') }
|
2019-11-08 01:06:24 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'other provider' do
|
|
|
|
let(:provider) { 'other' }
|
|
|
|
|
2019-12-17 19:08:09 -05:00
|
|
|
it { is_expected.to eq('Create new cluster') }
|
2019-11-08 01:06:24 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'no provider' do
|
|
|
|
let(:provider) { nil }
|
|
|
|
|
2019-12-17 19:08:09 -05:00
|
|
|
it { is_expected.to eq('Create new cluster') }
|
2019-11-08 01:06:24 -05:00
|
|
|
end
|
|
|
|
end
|
2020-04-10 11:09:50 -04:00
|
|
|
|
2020-10-01 14:10:20 -04:00
|
|
|
describe '#js_cluster_agents_list_data' do
|
|
|
|
let_it_be(:project) { build(:project, :repository) }
|
|
|
|
|
|
|
|
subject { helper.js_cluster_agents_list_data(project) }
|
|
|
|
|
|
|
|
it 'displays project default branch' do
|
|
|
|
expect(subject[:default_branch_name]).to eq(project.default_branch)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'displays image path' do
|
|
|
|
expect(subject[:empty_state_image]).to match(%r(/illustrations/logos/clusters_empty|svg))
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'displays project path' do
|
|
|
|
expect(subject[:project_path]).to eq(project.full_path)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-06-10 14:09:15 -04:00
|
|
|
describe '#js_clusters_list_data' do
|
2020-07-13 20:09:46 -04:00
|
|
|
subject { helper.js_clusters_list_data('/path') }
|
2020-06-10 14:09:15 -04:00
|
|
|
|
2020-07-13 20:09:46 -04:00
|
|
|
it 'displays endpoint path' do
|
|
|
|
expect(subject[:endpoint]).to eq('/path')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'generates svg image data', :aggregate_failures do
|
|
|
|
expect(subject.dig(:img_tags, :aws, :path)).to match(%r(/illustrations/logos/amazon_eks|svg))
|
|
|
|
expect(subject.dig(:img_tags, :default, :path)).to match(%r(/illustrations/logos/kubernetes|svg))
|
|
|
|
expect(subject.dig(:img_tags, :gcp, :path)).to match(%r(/illustrations/logos/google_gke|svg))
|
2020-06-10 14:09:15 -04:00
|
|
|
|
2020-07-13 20:09:46 -04:00
|
|
|
expect(subject.dig(:img_tags, :aws, :text)).to eq('Amazon EKS')
|
|
|
|
expect(subject.dig(:img_tags, :default, :text)).to eq('Kubernetes Cluster')
|
|
|
|
expect(subject.dig(:img_tags, :gcp, :text)).to eq('Google GKE')
|
|
|
|
end
|
2020-06-10 14:09:15 -04:00
|
|
|
|
2020-07-13 20:09:46 -04:00
|
|
|
it 'displays and ancestor_help_path' do
|
2020-08-28 11:10:21 -04:00
|
|
|
expect(subject[:ancestor_help_path]).to eq(help_page_path('user/group/clusters/index', anchor: 'cluster-precedence'))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#js_cluster_new' do
|
|
|
|
subject { helper.js_cluster_new }
|
|
|
|
|
|
|
|
it 'displays a cluster_connect_help_path' do
|
|
|
|
expect(subject[:cluster_connect_help_path]).to eq(help_page_path('user/project/clusters/add_remove_clusters', anchor: 'add-existing-cluster'))
|
2020-06-10 14:09:15 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-04-10 11:09:50 -04:00
|
|
|
describe '#cluster_type_label' do
|
|
|
|
subject { helper.cluster_type_label(cluster_type) }
|
|
|
|
|
|
|
|
context 'project cluster' do
|
|
|
|
let(:cluster_type) { 'project_type' }
|
|
|
|
|
|
|
|
it { is_expected.to eq('Project cluster') }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'group cluster' do
|
|
|
|
let(:cluster_type) { 'group_type' }
|
|
|
|
|
|
|
|
it { is_expected.to eq('Group cluster') }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'instance cluster' do
|
|
|
|
let(:cluster_type) { 'instance_type' }
|
|
|
|
|
|
|
|
it { is_expected.to eq('Instance cluster') }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'other values' do
|
|
|
|
let(:cluster_type) { 'not_supported' }
|
|
|
|
|
2020-12-09 13:09:48 -05:00
|
|
|
it 'diplays generic cluster and reports error' do
|
2020-04-10 11:09:50 -04:00
|
|
|
expect(Gitlab::ErrorTracking).to receive(:track_and_raise_for_dev_exception).with(
|
|
|
|
an_instance_of(ArgumentError),
|
|
|
|
cluster_error: { error: 'Cluster Type Missing', cluster_type: 'not_supported' }
|
|
|
|
)
|
|
|
|
|
|
|
|
is_expected.to eq('Cluster')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2019-03-25 11:18:39 -04:00
|
|
|
end
|