2019-09-30 08:06:01 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-01-27 11:32:10 -05:00
|
|
|
require "spec_helper"
|
|
|
|
|
2020-06-24 05:08:32 -04:00
|
|
|
RSpec.describe UserCalloutsHelper do
|
2020-06-26 11:08:45 -04:00
|
|
|
let_it_be(:user) { create(:user) }
|
2018-01-27 11:32:10 -05:00
|
|
|
|
|
|
|
before do
|
|
|
|
allow(helper).to receive(:current_user).and_return(user)
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '.show_gke_cluster_integration_callout?' do
|
2020-06-26 11:08:45 -04:00
|
|
|
let_it_be(:project) { create(:project) }
|
2018-01-27 11:32:10 -05:00
|
|
|
|
2018-01-30 10:59:10 -05:00
|
|
|
subject { helper.show_gke_cluster_integration_callout?(project) }
|
2018-01-27 11:32:10 -05:00
|
|
|
|
2018-02-05 08:33:49 -05:00
|
|
|
context 'when user can create a cluster' do
|
2018-01-27 11:32:10 -05:00
|
|
|
before do
|
2018-02-05 08:33:49 -05:00
|
|
|
allow(helper).to receive(:can?).with(anything, :create_cluster, anything)
|
|
|
|
.and_return(true)
|
2018-01-27 11:32:10 -05:00
|
|
|
end
|
|
|
|
|
2018-02-05 08:33:49 -05:00
|
|
|
context 'when user has not dismissed' do
|
2018-01-27 11:32:10 -05:00
|
|
|
before do
|
2018-02-05 08:33:49 -05:00
|
|
|
allow(helper).to receive(:user_dismissed?).and_return(false)
|
2018-01-27 11:32:10 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it { is_expected.to be true }
|
|
|
|
end
|
|
|
|
|
2018-02-05 08:33:49 -05:00
|
|
|
context 'when user dismissed' do
|
2018-02-01 21:39:07 -05:00
|
|
|
before do
|
2018-02-05 08:33:49 -05:00
|
|
|
allow(helper).to receive(:user_dismissed?).and_return(true)
|
2018-01-27 11:32:10 -05:00
|
|
|
end
|
|
|
|
|
2018-02-01 21:39:07 -05:00
|
|
|
it { is_expected.to be false }
|
2018-01-27 11:32:10 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-02-05 08:33:49 -05:00
|
|
|
context 'when user can not create a cluster' do
|
2018-01-27 11:32:10 -05:00
|
|
|
before do
|
2018-02-05 08:33:49 -05:00
|
|
|
allow(helper).to receive(:can?).with(anything, :create_cluster, anything)
|
|
|
|
.and_return(false)
|
2018-01-27 11:32:10 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it { is_expected.to be false }
|
|
|
|
end
|
|
|
|
end
|
2019-01-04 18:14:15 -05:00
|
|
|
|
2020-03-24 11:08:44 -04:00
|
|
|
describe '.show_admin_integrations_moved?' do
|
|
|
|
subject { helper.show_admin_integrations_moved? }
|
|
|
|
|
|
|
|
context 'when user has not dismissed' do
|
|
|
|
before do
|
|
|
|
allow(helper).to receive(:user_dismissed?).with(described_class::ADMIN_INTEGRATIONS_MOVED) { false }
|
|
|
|
end
|
|
|
|
|
|
|
|
it { is_expected.to be true }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when user dismissed' do
|
|
|
|
before do
|
|
|
|
allow(helper).to receive(:user_dismissed?).with(described_class::ADMIN_INTEGRATIONS_MOVED) { true }
|
|
|
|
end
|
|
|
|
|
|
|
|
it { is_expected.to be false }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-01-04 18:14:15 -05:00
|
|
|
describe '.render_flash_user_callout' do
|
|
|
|
it 'renders the flash_user_callout partial' do
|
|
|
|
expect(helper).to receive(:render)
|
|
|
|
.with(/flash_user_callout/, flash_type: :warning, message: 'foo', feature_name: 'bar')
|
|
|
|
|
|
|
|
helper.render_flash_user_callout(:warning, 'foo', 'bar')
|
|
|
|
end
|
|
|
|
end
|
2018-01-27 11:32:10 -05:00
|
|
|
end
|