diff --git a/app/assets/javascripts/security_configuration/components/upgrade.vue b/app/assets/javascripts/security_configuration/components/upgrade.vue index 166ee4ff194b06914f81d04d7b2d18806ab2735e..04f3763d5daf244d676c2fc51b58da365aef13ec 100644 --- a/app/assets/javascripts/security_configuration/components/upgrade.vue +++ b/app/assets/javascripts/security_configuration/components/upgrade.vue @@ -7,6 +7,12 @@ export default { GlLink, GlSprintf, }, + inject: { + upgradePath: { + from: 'upgradePath', + default: '#', + }, + }, i18n: { UPGRADE_CTA, }, @@ -17,7 +23,7 @@ export default { <span> <gl-sprintf :message="$options.i18n.UPGRADE_CTA"> <template #link="{ content }"> - <gl-link target="_blank" href="https://about.gitlab.com/pricing/"> + <gl-link target="_blank" :href="upgradePath"> {{ content }} </gl-link> </template> diff --git a/app/assets/javascripts/security_configuration/index.js b/app/assets/javascripts/security_configuration/index.js index c98fa46b32ba99d575c18e6ff1eec4ff529bd23a..1134a1ffb44798a1fa71dc76f8b859dd002096be 100644 --- a/app/assets/javascripts/security_configuration/index.js +++ b/app/assets/javascripts/security_configuration/index.js @@ -14,13 +14,14 @@ export const initStaticSecurityConfiguration = (el) => { defaultClient: createDefaultClient(), }); - const { projectPath } = el.dataset; + const { projectPath, upgradePath } = el.dataset; return new Vue({ el, apolloProvider, provide: { projectPath, + upgradePath, }, render(createElement) { return createElement(SecurityConfigurationApp); diff --git a/app/helpers/projects/security/configuration_helper.rb b/app/helpers/projects/security/configuration_helper.rb new file mode 100644 index 0000000000000000000000000000000000000000..265d46cbc41f18e6304791dec1499d44a2a13dac --- /dev/null +++ b/app/helpers/projects/security/configuration_helper.rb @@ -0,0 +1,13 @@ +# frozen_string_literal: true + +module Projects + module Security + module ConfigurationHelper + def security_upgrade_path + 'https://about.gitlab.com/pricing/' + end + end + end +end + +::Projects::Security::ConfigurationHelper.prepend_if_ee('::EE::Projects::Security::ConfigurationHelper') diff --git a/app/views/projects/security/configuration/show.html.haml b/app/views/projects/security/configuration/show.html.haml index fe47ce327c20e1b3fce38ddde45e484797eefeac..4d6feb9de6da399ef00bc14c0c9d19cc8111242e 100644 --- a/app/views/projects/security/configuration/show.html.haml +++ b/app/views/projects/security/configuration/show.html.haml @@ -1,4 +1,4 @@ - breadcrumb_title _("Security Configuration") - page_title _("Security Configuration") -#js-security-configuration-static{ data: {project_path: @project.full_path} } +#js-security-configuration-static{ data: { project_path: @project.full_path, upgrade_path: security_upgrade_path } } diff --git a/ee/app/helpers/ee/projects/security/configuration_helper.rb b/ee/app/helpers/ee/projects/security/configuration_helper.rb new file mode 100644 index 0000000000000000000000000000000000000000..8718cc937a79b61476cf1a0dc7fbad6460fde5d2 --- /dev/null +++ b/ee/app/helpers/ee/projects/security/configuration_helper.rb @@ -0,0 +1,18 @@ +# frozen_string_literal: true + +module EE + module Projects + module Security + module ConfigurationHelper + extend ::Gitlab::Utils::Override + + override :security_upgrade_path + def security_upgrade_path + return super unless show_discover_project_security?(@project) + + project_security_discover_path(@project) + end + end + end + end +end diff --git a/ee/spec/helpers/ee/projects/security/configuration_helper_spec.rb b/ee/spec/helpers/ee/projects/security/configuration_helper_spec.rb new file mode 100644 index 0000000000000000000000000000000000000000..c5d90d1fe76b9719e375acf01724212bd2927b80 --- /dev/null +++ b/ee/spec/helpers/ee/projects/security/configuration_helper_spec.rb @@ -0,0 +1,29 @@ +# frozen_string_literal: true + +require 'spec_helper' + +RSpec.describe EE::Projects::Security::ConfigurationHelper do + include ActionView::Helpers::UrlHelper + + let_it_be(:project) { create(:project) } + let(:current_user) { create(:user) } + + subject { helper.security_upgrade_path } + + before do + helper.instance_variable_set(:@project, project) + allow(helper).to receive(:show_discover_project_security?).and_return(can_access_discover_security) + end + + context 'when user can access discover security' do + let(:can_access_discover_security) { true } + + it { is_expected.to eq(project_security_discover_path(project)) } + end + + context 'when user can not access discover security' do + let(:can_access_discover_security) { false } + + it { is_expected.to eq('https://about.gitlab.com/pricing/') } + end +end diff --git a/spec/frontend/security_configuration/upgrade_spec.js b/spec/frontend/security_configuration/upgrade_spec.js index 0ab1108b2652202da5c6d4e4fcf9e20a3985f1c9..b516b926dc51389d4041d5539d97ed22525ad215 100644 --- a/spec/frontend/security_configuration/upgrade_spec.js +++ b/spec/frontend/security_configuration/upgrade_spec.js @@ -2,27 +2,28 @@ import { mount } from '@vue/test-utils'; import { UPGRADE_CTA } from '~/security_configuration/components/features_constants'; import Upgrade from '~/security_configuration/components/upgrade.vue'; +const TEST_URL = 'http://www.example.test'; let wrapper; -const createComponent = () => { - wrapper = mount(Upgrade, {}); +const createComponent = (componentData = {}) => { + wrapper = mount(Upgrade, componentData); }; -beforeEach(() => { - createComponent(); -}); - afterEach(() => { wrapper.destroy(); }); describe('Upgrade component', () => { + beforeEach(() => { + createComponent({ provide: { upgradePath: TEST_URL } }); + }); + it('renders correct text in link', () => { expect(wrapper.text()).toMatchInterpolatedText(UPGRADE_CTA); }); - it('renders link with correct attributes', () => { + it('renders link with correct default attributes', () => { expect(wrapper.find('a').attributes()).toMatchObject({ - href: 'https://about.gitlab.com/pricing/', + href: TEST_URL, target: '_blank', }); }); diff --git a/spec/helpers/projects/security/configuration_helper_spec.rb b/spec/helpers/projects/security/configuration_helper_spec.rb new file mode 100644 index 0000000000000000000000000000000000000000..c5049bd87f0cb7bfc7f1e5e9456dfc6e5cb836c6 --- /dev/null +++ b/spec/helpers/projects/security/configuration_helper_spec.rb @@ -0,0 +1,13 @@ +# frozen_string_literal: true + +require 'spec_helper' + +RSpec.describe Projects::Security::ConfigurationHelper do + let(:current_user) { create(:user) } + + describe 'security_upgrade_path' do + subject { security_upgrade_path } + + it { is_expected.to eq('https://about.gitlab.com/pricing/') } + end +end