2019-12-26 22:10:19 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-07-28 23:09:34 +05:30
|
|
|
RSpec.describe Clusters::ClusterPresenter do
|
2018-12-13 13:39:08 +05:30
|
|
|
include Gitlab::Routing.url_helpers
|
|
|
|
|
|
|
|
let(:cluster) { create(:cluster, :provided_by_gcp, :project) }
|
2019-02-15 15:39:39 +05:30
|
|
|
let(:user) { create(:user) }
|
2018-03-17 18:26:18 +05:30
|
|
|
|
|
|
|
subject(:presenter) do
|
2019-02-15 15:39:39 +05:30
|
|
|
described_class.new(cluster, current_user: user)
|
2018-03-17 18:26:18 +05:30
|
|
|
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
|
|
|
|
|
2019-02-15 15:39:39 +05:30
|
|
|
describe '#item_link' do
|
|
|
|
let(:clusterable_presenter) { double('ClusterablePresenter', subject: clusterable) }
|
|
|
|
|
|
|
|
subject { presenter.item_link(clusterable_presenter) }
|
|
|
|
|
|
|
|
context 'for a group cluster' do
|
|
|
|
let(:cluster) { create(:cluster, cluster_type: :group_type, groups: [group]) }
|
|
|
|
let(:group) { create(:group, name: 'Foo') }
|
|
|
|
let(:cluster_link) { "<a href=\"#{group_cluster_path(cluster.group, cluster)}\">#{cluster.name}</a>" }
|
|
|
|
|
|
|
|
before do
|
|
|
|
group.add_maintainer(user)
|
|
|
|
end
|
|
|
|
|
|
|
|
shared_examples 'ancestor clusters' do
|
2019-10-12 21:52:04 +05:30
|
|
|
context 'ancestor clusters' do
|
2019-02-15 15:39:39 +05:30
|
|
|
let(:root_group) { create(:group, name: 'Root Group') }
|
|
|
|
let(:parent) { create(:group, name: 'parent', parent: root_group) }
|
|
|
|
let(:child) { create(:group, name: 'child', parent: parent) }
|
|
|
|
let(:group) { create(:group, name: 'group', parent: child) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
root_group.add_maintainer(user)
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'top level group cluster' do
|
|
|
|
let(:cluster) { create(:cluster, cluster_type: :group_type, groups: [root_group]) }
|
|
|
|
|
|
|
|
it 'returns full group names and link for cluster' do
|
|
|
|
expect(subject).to eq("Root Group / #{cluster_link}")
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'is html safe' do
|
|
|
|
expect(presenter).to receive(:sanitize).with('Root Group').and_call_original
|
|
|
|
|
|
|
|
expect(subject).to be_html_safe
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'first level group cluster' do
|
|
|
|
let(:cluster) { create(:cluster, cluster_type: :group_type, groups: [parent]) }
|
|
|
|
|
|
|
|
it 'returns full group names and link for cluster' do
|
|
|
|
expect(subject).to eq("Root Group / parent / #{cluster_link}")
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'is html safe' do
|
|
|
|
expect(presenter).to receive(:sanitize).with('Root Group / parent').and_call_original
|
|
|
|
|
|
|
|
expect(subject).to be_html_safe
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'second level group cluster' do
|
|
|
|
let(:cluster) { create(:cluster, cluster_type: :group_type, groups: [child]) }
|
|
|
|
|
|
|
|
let(:ellipsis_h) do
|
|
|
|
/.*ellipsis_h.*/
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns clipped group names and link for cluster' do
|
|
|
|
expect(subject).to match("Root Group / #{ellipsis_h} / child / #{cluster_link}")
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'is html safe' do
|
|
|
|
expect(presenter).to receive(:sanitize).with('Root Group / parent / child').and_call_original
|
|
|
|
|
|
|
|
expect(subject).to be_html_safe
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'for a project clusterable' do
|
|
|
|
let(:clusterable) { project }
|
|
|
|
let(:project) { create(:project, group: group) }
|
|
|
|
|
|
|
|
it 'returns the group name and the link for cluster' do
|
|
|
|
expect(subject).to eq("Foo / #{cluster_link}")
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'is html safe' do
|
|
|
|
expect(presenter).to receive(:sanitize).with('Foo').and_call_original
|
|
|
|
|
|
|
|
expect(subject).to be_html_safe
|
|
|
|
end
|
|
|
|
|
|
|
|
include_examples 'ancestor clusters'
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'for the group clusterable for the cluster' do
|
|
|
|
let(:clusterable) { group }
|
|
|
|
|
|
|
|
it 'returns link for cluster' do
|
|
|
|
expect(subject).to eq(cluster_link)
|
|
|
|
end
|
|
|
|
|
|
|
|
include_examples 'ancestor clusters'
|
|
|
|
|
|
|
|
it 'is html safe' do
|
|
|
|
expect(subject).to be_html_safe
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'for a project cluster' do
|
|
|
|
let(:cluster) { create(:cluster, :project) }
|
|
|
|
let(:cluster_link) { "<a href=\"#{project_cluster_path(cluster.project, cluster)}\">#{cluster.name}</a>" }
|
|
|
|
|
|
|
|
before do
|
|
|
|
cluster.project.add_maintainer(user)
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'for the project clusterable' do
|
|
|
|
let(:clusterable) { cluster.project }
|
|
|
|
|
|
|
|
it 'returns link for cluster' do
|
|
|
|
expect(subject).to eq(cluster_link)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-01-01 13:55:28 +05:30
|
|
|
describe '#provider_label' do
|
|
|
|
let(:cluster) { create(:cluster, provider_type: provider_type) }
|
2018-03-17 18:26:18 +05:30
|
|
|
|
2020-01-01 13:55:28 +05:30
|
|
|
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
|
2018-03-17 18:26:18 +05:30
|
|
|
end
|
|
|
|
|
2019-02-15 15:39:39 +05:30
|
|
|
describe '#cluster_type_description' do
|
|
|
|
subject { described_class.new(cluster).cluster_type_description }
|
|
|
|
|
|
|
|
context 'project_type cluster' do
|
|
|
|
it { is_expected.to eq('Project cluster') }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'group_type cluster' do
|
|
|
|
let(:cluster) { create(:cluster, :provided_by_gcp, :group) }
|
|
|
|
|
|
|
|
it { is_expected.to eq('Group cluster') }
|
|
|
|
end
|
2019-07-31 22:56:46 +05:30
|
|
|
|
|
|
|
context 'instance_type cluster' do
|
|
|
|
let(:cluster) { create(:cluster, :provided_by_gcp, :instance) }
|
|
|
|
|
|
|
|
it { is_expected.to eq('Instance cluster') }
|
|
|
|
end
|
2019-02-15 15:39:39 +05:30
|
|
|
end
|
|
|
|
|
2018-12-13 13:39:08 +05:30
|
|
|
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
|
2019-02-15 15:39:39 +05:30
|
|
|
|
|
|
|
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
|
2019-07-31 22:56:46 +05:30
|
|
|
|
|
|
|
context 'instance_type cluster' do
|
|
|
|
let(:cluster) { create(:cluster, :provided_by_gcp, :instance) }
|
|
|
|
|
|
|
|
it { is_expected.to eq(admin_cluster_path(cluster)) }
|
|
|
|
end
|
2018-12-13 13:39:08 +05:30
|
|
|
end
|
2019-07-07 11:18:12 +05:30
|
|
|
|
|
|
|
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
|
2020-07-28 23:09:34 +05:30
|
|
|
|
|
|
|
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,
|
|
|
|
'dashboard-endpoint': clusterable_presenter.metrics_dashboard_path(cluster),
|
2020-11-24 15:15:51 +05:30
|
|
|
'documentation-path': help_page_path('user/project/clusters/index', anchor: 'monitoring-your-kubernetes-cluster'),
|
2020-10-24 23:57:45 +05:30
|
|
|
'add-dashboard-documentation-path': help_page_path('operations/metrics/dashboards/index.md', anchor: 'add-a-new-dashboard-to-your-project'),
|
2020-07-28 23:09:34 +05:30
|
|
|
'empty-getting-started-svg-path': match_asset_path('/assets/illustrations/monitoring/getting_started.svg'),
|
|
|
|
'empty-loading-svg-path': match_asset_path('/assets/illustrations/monitoring/loading.svg'),
|
|
|
|
'empty-no-data-svg-path': match_asset_path('/assets/illustrations/monitoring/no_data.svg'),
|
|
|
|
'empty-no-data-small-svg-path': match_asset_path('illustrations/chart-empty-state-small.svg'),
|
|
|
|
'empty-unable-to-connect-svg-path': match_asset_path('/assets/illustrations/monitoring/unable_to_connect.svg'),
|
|
|
|
'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 '#gitlab_managed_apps_logs_path' do
|
|
|
|
context 'user can read logs' do
|
|
|
|
let(:project) { cluster.project }
|
|
|
|
|
|
|
|
before do
|
|
|
|
project.add_maintainer(user)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns path to logs' do
|
|
|
|
expect(presenter.gitlab_managed_apps_logs_path).to eq k8s_project_logs_path(project, cluster_id: cluster.id, format: :json)
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'cluster has elastic stack application installed' do
|
|
|
|
before do
|
|
|
|
create(:clusters_applications_elastic_stack, :installed, cluster: cluster)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns path to logs' do
|
|
|
|
expect(presenter.gitlab_managed_apps_logs_path).to eq elasticsearch_project_logs_path(project, cluster_id: cluster.id, format: :json)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'group cluster' do
|
|
|
|
let(:cluster) { create(:cluster, cluster_type: :group_type, groups: [group]) }
|
|
|
|
let(:group) { create(:group, name: 'Foo') }
|
|
|
|
|
|
|
|
context 'user can read logs' do
|
|
|
|
before do
|
|
|
|
group.add_maintainer(user)
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'there are projects within group' do
|
|
|
|
let!(:project) { create(:project, namespace: group) }
|
|
|
|
|
|
|
|
it 'returns path to logs' do
|
|
|
|
expect(presenter.gitlab_managed_apps_logs_path).to eq k8s_project_logs_path(project, cluster_id: cluster.id, format: :json)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'there are no projects within group' do
|
|
|
|
it 'returns nil' do
|
|
|
|
expect(presenter.gitlab_managed_apps_logs_path).to be_nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'instance cluster' do
|
|
|
|
let(:cluster) { create(:cluster, cluster_type: :instance_type) }
|
|
|
|
let!(:project) { create(:project) }
|
|
|
|
let(:user) { create(:admin) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
project.add_maintainer(user)
|
|
|
|
stub_feature_flags(user_mode_in_session: false)
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'user can read logs' do
|
|
|
|
it 'returns path to logs' do
|
|
|
|
expect(presenter.gitlab_managed_apps_logs_path).to eq k8s_project_logs_path(project, cluster_id: cluster.id, format: :json)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'user can NOT read logs' do
|
|
|
|
let(:cluster) { create(:cluster, cluster_type: :instance_type) }
|
|
|
|
let!(:project) { create(:project) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
project.add_developer(user)
|
|
|
|
stub_feature_flags(user_mode_in_session: false)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns nil' do
|
|
|
|
expect(presenter.gitlab_managed_apps_logs_path).to be_nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2018-03-17 18:26:18 +05:30
|
|
|
end
|