2018-01-27 11:32:10 -05:00
|
|
|
require "spec_helper"
|
|
|
|
|
2018-02-02 16:51:03 -05:00
|
|
|
describe UserCalloutsHelper do
|
2018-01-27 11:32:10 -05:00
|
|
|
let(:user) { create(:user) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
allow(helper).to receive(:current_user).and_return(user)
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '.show_gke_cluster_integration_callout?' do
|
|
|
|
let(:project) { create(:project) }
|
|
|
|
|
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
|
|
|
|
end
|