175 lines
4.8 KiB
Ruby
175 lines
4.8 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
RSpec.describe Clusters::ClusterPresenter do
|
|
include Gitlab::Routing.url_helpers
|
|
|
|
let(:cluster) { create(:cluster, :provided_by_gcp, :project) }
|
|
let(:user) { create(:user) }
|
|
|
|
subject(:presenter) do
|
|
described_class.new(cluster, current_user: user)
|
|
end
|
|
|
|
it 'inherits from Gitlab::View::Presenter::Delegated' do
|
|
expect(described_class.superclass).to eq(Gitlab::View::Presenter::Delegated)
|
|
end
|
|
|
|
describe '#initialize' do
|
|
it 'takes a cluster and optional params' do
|
|
expect { presenter }.not_to raise_error
|
|
end
|
|
|
|
it 'exposes cluster' do
|
|
expect(presenter.cluster).to eq(cluster)
|
|
end
|
|
|
|
it 'forwards missing methods to cluster' do
|
|
expect(presenter.status).to eq(cluster.status)
|
|
end
|
|
end
|
|
|
|
describe '#provider_label' do
|
|
let(:cluster) { create(:cluster, provider_type: provider_type) }
|
|
|
|
subject { described_class.new(cluster).provider_label }
|
|
|
|
context 'AWS provider' do
|
|
let(:provider_type) { :aws }
|
|
|
|
it { is_expected.to eq('Elastic Kubernetes Service') }
|
|
end
|
|
|
|
context 'GCP provider' do
|
|
let(:provider_type) { :gcp }
|
|
|
|
it { is_expected.to eq('Google Kubernetes Engine') }
|
|
end
|
|
end
|
|
|
|
describe '#provider_management_url' do
|
|
let(:cluster) { provider.cluster }
|
|
|
|
subject { described_class.new(cluster).provider_management_url }
|
|
|
|
context 'AWS provider' do
|
|
let(:provider) { create(:cluster_provider_aws) }
|
|
|
|
it { is_expected.to include(provider.region) }
|
|
it { is_expected.to include(cluster.name) }
|
|
end
|
|
|
|
context 'GCP provider' do
|
|
let(:provider) { create(:cluster_provider_gcp) }
|
|
|
|
it { is_expected.to include(provider.zone) }
|
|
it { is_expected.to include(cluster.name) }
|
|
end
|
|
end
|
|
|
|
describe '#show_path' do
|
|
subject { described_class.new(cluster).show_path }
|
|
|
|
context 'project_type cluster' do
|
|
let(:project) { cluster.project }
|
|
|
|
it { is_expected.to eq(project_cluster_path(project, cluster)) }
|
|
end
|
|
|
|
context 'group_type cluster' do
|
|
let(:group) { cluster.group }
|
|
let(:cluster) { create(:cluster, :provided_by_gcp, :group) }
|
|
|
|
it { is_expected.to eq(group_cluster_path(group, cluster)) }
|
|
end
|
|
|
|
context 'instance_type cluster' do
|
|
let(:cluster) { create(:cluster, :provided_by_gcp, :instance) }
|
|
|
|
it { is_expected.to eq(admin_cluster_path(cluster)) }
|
|
end
|
|
end
|
|
|
|
describe '#read_only_kubernetes_platform_fields?' do
|
|
subject { described_class.new(cluster).read_only_kubernetes_platform_fields? }
|
|
|
|
context 'with a user-provided cluster' do
|
|
let(:cluster) { build_stubbed(:cluster, :provided_by_user) }
|
|
|
|
it { is_expected.to be_falsy }
|
|
end
|
|
|
|
context 'with a GCP-provided cluster' do
|
|
let(:cluster) { build_stubbed(:cluster, :provided_by_gcp) }
|
|
|
|
it { is_expected.to be_truthy }
|
|
end
|
|
end
|
|
|
|
describe '#health_data' do
|
|
shared_examples 'cluster health data' do
|
|
let(:user) { create(:user) }
|
|
let(:cluster_presenter) { cluster.present(current_user: user) }
|
|
|
|
let(:clusterable_presenter) do
|
|
ClusterablePresenter.fabricate(clusterable, current_user: user)
|
|
end
|
|
|
|
subject { cluster_presenter.health_data(clusterable_presenter) }
|
|
|
|
it do
|
|
is_expected.to include(
|
|
'clusters-path': clusterable_presenter.index_path,
|
|
'settings-path': '',
|
|
'project-path': '',
|
|
'tags-path': ''
|
|
)
|
|
end
|
|
end
|
|
|
|
context 'with project cluster' do
|
|
let(:cluster) { create(:cluster, :project, :provided_by_gcp) }
|
|
let(:clusterable) { cluster.project }
|
|
|
|
it_behaves_like 'cluster health data'
|
|
end
|
|
|
|
context 'with group cluster' do
|
|
let(:cluster) { create(:cluster, :group, :provided_by_gcp) }
|
|
let(:clusterable) { cluster.group }
|
|
|
|
it_behaves_like 'cluster health data'
|
|
end
|
|
end
|
|
|
|
describe '#agent_migration_for_display' do
|
|
shared_examples 'cluster agent migration' do |cluster_type|
|
|
let(:cluster) { create(:cluster, cluster_type) }
|
|
let(:presenter) { described_class.new(cluster, current_user: user) }
|
|
|
|
context 'when migration exists' do
|
|
let!(:migration) { create(:cluster_agent_migration, cluster: cluster) }
|
|
|
|
it 'returns existing migration' do
|
|
expect(presenter.agent_migration_for_display).to eq(migration)
|
|
end
|
|
end
|
|
|
|
context 'when migration does not exist' do
|
|
it 'returns new migration instance' do
|
|
migration = presenter.agent_migration_for_display
|
|
|
|
expect(migration).to be_a(Clusters::AgentMigration)
|
|
expect(migration).to be_new_record
|
|
expect(migration.cluster).to eq(cluster)
|
|
end
|
|
end
|
|
end
|
|
|
|
it_behaves_like 'cluster agent migration', :project
|
|
it_behaves_like 'cluster agent migration', :group
|
|
it_behaves_like 'cluster agent migration', :instance
|
|
end
|
|
end
|