2019-09-30 08:06:01 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-09-06 15:29:38 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe AutoDevopsHelper do
|
|
|
|
set(:project) { create(:project) }
|
|
|
|
set(:user) { create(:user) }
|
|
|
|
|
|
|
|
describe '.show_auto_devops_callout?' do
|
|
|
|
let(:allowed) { true }
|
|
|
|
|
|
|
|
before do
|
|
|
|
allow(helper).to receive(:can?).with(user, :admin_pipeline, project) { allowed }
|
|
|
|
allow(helper).to receive(:current_user) { user }
|
2017-09-12 08:00:50 -04:00
|
|
|
|
|
|
|
Feature.get(:auto_devops_banner_disabled).disable
|
2017-09-06 15:29:38 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
subject { helper.show_auto_devops_callout?(project) }
|
|
|
|
|
2018-09-18 15:20:43 -04:00
|
|
|
context 'when auto devops is implicitly enabled' do
|
|
|
|
it { is_expected.to eq(false) }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when auto devops is not implicitly enabled' do
|
|
|
|
before do
|
|
|
|
Gitlab::CurrentSettings.update!(auto_devops_enabled: false)
|
|
|
|
end
|
|
|
|
|
2017-09-06 15:29:38 -04:00
|
|
|
it { is_expected.to eq(true) }
|
|
|
|
end
|
|
|
|
|
2017-09-12 08:00:50 -04:00
|
|
|
context 'when the banner is disabled by feature flag' do
|
2019-03-12 06:15:33 -04:00
|
|
|
before do
|
2017-09-12 08:00:50 -04:00
|
|
|
Feature.get(:auto_devops_banner_disabled).enable
|
|
|
|
end
|
2019-03-12 06:15:33 -04:00
|
|
|
|
|
|
|
it { is_expected.to be_falsy }
|
2017-09-12 08:00:50 -04:00
|
|
|
end
|
|
|
|
|
2017-09-06 15:29:38 -04:00
|
|
|
context 'when dismissed' do
|
|
|
|
before do
|
|
|
|
helper.request.cookies[:auto_devops_settings_dismissed] = 'true'
|
|
|
|
end
|
|
|
|
|
|
|
|
it { is_expected.to eq(false) }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when user cannot admin project' do
|
|
|
|
let(:allowed) { false }
|
|
|
|
|
|
|
|
it { is_expected.to eq(false) }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when auto devops is enabled system-wide' do
|
|
|
|
before do
|
|
|
|
stub_application_setting(auto_devops_enabled: true)
|
|
|
|
end
|
|
|
|
|
|
|
|
it { is_expected.to eq(false) }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when auto devops is explicitly enabled for project' do
|
|
|
|
before do
|
|
|
|
project.create_auto_devops!(enabled: true)
|
|
|
|
end
|
|
|
|
|
|
|
|
it { is_expected.to eq(false) }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when auto devops is explicitly disabled for project' do
|
|
|
|
before do
|
|
|
|
project.create_auto_devops!(enabled: false)
|
|
|
|
end
|
|
|
|
|
|
|
|
it { is_expected.to eq(false) }
|
|
|
|
end
|
2017-09-12 03:21:47 -04:00
|
|
|
|
|
|
|
context 'when master contains a .gitlab-ci.yml file' do
|
|
|
|
before do
|
2017-09-12 03:21:47 -04:00
|
|
|
allow(project.repository).to receive(:gitlab_ci_yml).and_return("script: ['test']")
|
2017-09-12 03:21:47 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it { is_expected.to eq(false) }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when another service is enabled' do
|
|
|
|
before do
|
|
|
|
create(:service, project: project, category: :ci, active: true)
|
|
|
|
end
|
|
|
|
|
|
|
|
it { is_expected.to eq(false) }
|
|
|
|
end
|
2017-09-06 15:29:38 -04:00
|
|
|
end
|
2019-03-12 06:15:33 -04:00
|
|
|
|
|
|
|
describe '#badge_for_auto_devops_scope' do
|
|
|
|
subject { helper.badge_for_auto_devops_scope(receiver) }
|
|
|
|
|
|
|
|
context 'when receiver is a group' do
|
|
|
|
context 'when explicitly enabled' do
|
|
|
|
let(:receiver) { create(:group, :auto_devops_enabled) }
|
|
|
|
|
|
|
|
it { is_expected.to eq('group enabled') }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when explicitly disabled' do
|
|
|
|
let(:receiver) { create(:group, :auto_devops_disabled) }
|
|
|
|
|
|
|
|
it { is_expected.to be_nil }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when auto devops is implicitly enabled' do
|
|
|
|
let(:receiver) { create(:group) }
|
|
|
|
|
|
|
|
context 'by instance' do
|
|
|
|
before do
|
|
|
|
stub_application_setting(auto_devops_enabled: true)
|
|
|
|
end
|
|
|
|
|
|
|
|
it { is_expected.to eq('instance enabled') }
|
|
|
|
end
|
|
|
|
|
2019-07-24 05:20:54 -04:00
|
|
|
context 'with groups' do
|
2019-03-12 06:15:33 -04:00
|
|
|
before do
|
|
|
|
receiver.update(parent: parent)
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when auto devops is enabled on parent' do
|
|
|
|
let(:parent) { create(:group, :auto_devops_enabled) }
|
|
|
|
|
|
|
|
it { is_expected.to eq('group enabled') }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when auto devops is enabled on parent group' do
|
|
|
|
let(:root_parent) { create(:group, :auto_devops_enabled) }
|
|
|
|
let(:parent) { create(:group, parent: root_parent) }
|
|
|
|
|
|
|
|
it { is_expected.to eq('group enabled') }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when auto devops disabled set on parent group' do
|
|
|
|
let(:root_parent) { create(:group, :auto_devops_disabled) }
|
|
|
|
let(:parent) { create(:group, parent: root_parent) }
|
|
|
|
|
|
|
|
it { is_expected.to be_nil }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when receiver is a project' do
|
|
|
|
context 'when auto devops is enabled at project level' do
|
|
|
|
let(:receiver) { create(:project, :auto_devops) }
|
|
|
|
|
|
|
|
it { is_expected.to be_nil }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when auto devops is disabled at project level' do
|
|
|
|
let(:receiver) { create(:project, :auto_devops_disabled) }
|
|
|
|
|
|
|
|
it { is_expected.to be_nil }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when auto devops is implicitly enabled' do
|
|
|
|
let(:receiver) { create(:project) }
|
|
|
|
|
|
|
|
context 'by instance' do
|
|
|
|
before do
|
|
|
|
stub_application_setting(auto_devops_enabled: true)
|
|
|
|
end
|
|
|
|
|
|
|
|
it { is_expected.to eq('instance enabled') }
|
|
|
|
end
|
|
|
|
|
2019-07-24 05:20:54 -04:00
|
|
|
context 'with groups' do
|
2019-03-12 06:15:33 -04:00
|
|
|
let(:receiver) { create(:project, :repository, namespace: group) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
stub_application_setting(auto_devops_enabled: false)
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when auto devops is enabled on group level' do
|
|
|
|
let(:group) { create(:group, :auto_devops_enabled) }
|
|
|
|
|
|
|
|
it { is_expected.to eq('group enabled') }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when auto devops is enabled on root group' do
|
|
|
|
let(:root_parent) { create(:group, :auto_devops_enabled) }
|
|
|
|
let(:group) { create(:group, parent: root_parent) }
|
|
|
|
|
|
|
|
it { is_expected.to eq('group enabled') }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when auto devops is implicitly disabled' do
|
|
|
|
let(:receiver) { create(:project) }
|
|
|
|
|
|
|
|
context 'by instance' do
|
|
|
|
before do
|
|
|
|
stub_application_setting(auto_devops_enabled: false)
|
|
|
|
end
|
|
|
|
|
|
|
|
it { is_expected.to be_nil }
|
|
|
|
end
|
|
|
|
|
2019-07-24 05:20:54 -04:00
|
|
|
context 'with groups' do
|
2019-03-12 06:15:33 -04:00
|
|
|
let(:receiver) { create(:project, :repository, namespace: group) }
|
|
|
|
|
|
|
|
context 'when auto devops is disabled on group level' do
|
|
|
|
let(:group) { create(:group, :auto_devops_disabled) }
|
|
|
|
|
|
|
|
it { is_expected.to be_nil }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when root group is enabled and parent disabled' do
|
|
|
|
let(:root_parent) { create(:group, :auto_devops_enabled) }
|
|
|
|
let(:group) { create(:group, :auto_devops_disabled, parent: root_parent) }
|
|
|
|
|
|
|
|
it { is_expected.to be_nil }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2017-09-06 15:29:38 -04:00
|
|
|
end
|