debian-mirror-gitlab/spec/presenters/project_clusterable_presenter_spec.rb

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

88 lines
2.3 KiB
Ruby
Raw Normal View History

2018-12-13 13:39:08 +05:30
# frozen_string_literal: true
require 'spec_helper'
2023-06-20 00:43:36 +05:30
RSpec.describe ProjectClusterablePresenter, feature_category: :environment_management do
2018-12-13 13:39:08 +05:30
include Gitlab::Routing.url_helpers
let(:presenter) { described_class.new(project) }
2023-06-20 00:43:36 +05:30
let(:project) { build_stubbed(:project) }
let(:cluster) { build_stubbed(:cluster, :provided_by_gcp, projects: [project]) }
2018-12-13 13:39:08 +05:30
describe '#can_create_cluster?' do
2023-06-20 00:43:36 +05:30
let(:user) { build_stubbed(:user) }
2018-12-13 13:39:08 +05:30
subject { presenter.can_create_cluster? }
before do
allow(presenter).to receive(:current_user).and_return(user)
end
context 'when user can create' do
before do
2023-06-20 00:43:36 +05:30
stub_member_access_level(project, maintainer: user)
2018-12-13 13:39:08 +05:30
end
it { is_expected.to be_truthy }
end
context 'when user cannot create' do
it { is_expected.to be_falsey }
end
end
describe '#index_path' do
subject { presenter.index_path }
it { is_expected.to eq(project_clusters_path(project)) }
end
2022-05-07 20:08:51 +05:30
describe '#connect_path' do
subject { presenter.connect_path }
it { is_expected.to eq(connect_project_clusters_path(project)) }
end
2022-06-21 17:19:12 +05:30
describe '#new_cluster_docs_path' do
subject { presenter.new_cluster_docs_path }
it { is_expected.to eq(new_cluster_docs_project_clusters_path(project)) }
end
2018-12-13 13:39:08 +05:30
describe '#create_user_clusters_path' do
subject { presenter.create_user_clusters_path }
it { is_expected.to eq(create_user_project_clusters_path(project)) }
end
describe '#cluster_status_cluster_path' do
subject { presenter.cluster_status_cluster_path(cluster) }
it { is_expected.to eq(cluster_status_project_cluster_path(project, cluster)) }
end
2020-01-01 13:55:28 +05:30
describe '#clear_cluster_cache_path' do
subject { presenter.clear_cluster_cache_path(cluster) }
it { is_expected.to eq(clear_cache_project_cluster_path(project, cluster)) }
end
2018-12-13 13:39:08 +05:30
describe '#cluster_path' do
subject { presenter.cluster_path(cluster) }
it { is_expected.to eq(project_cluster_path(project, cluster)) }
end
2020-07-28 23:09:34 +05:30
describe '#metrics_dashboard_path' do
subject { presenter.metrics_dashboard_path(cluster) }
it { is_expected.to eq(metrics_dashboard_project_cluster_path(project, cluster)) }
end
2021-11-18 22:05:49 +05:30
describe '#learn_more_link' do
subject { presenter.learn_more_link }
it { is_expected.to include('user/project/clusters/index') }
end
2018-12-13 13:39:08 +05:30
end