Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/frontend/security_configuration/components/upgrade_banner_spec.js')
-rw-r--r--spec/frontend/security_configuration/components/upgrade_banner_spec.js60
1 files changed, 60 insertions, 0 deletions
diff --git a/spec/frontend/security_configuration/components/upgrade_banner_spec.js b/spec/frontend/security_configuration/components/upgrade_banner_spec.js
new file mode 100644
index 00000000000..cf7945343af
--- /dev/null
+++ b/spec/frontend/security_configuration/components/upgrade_banner_spec.js
@@ -0,0 +1,60 @@
+import { GlBanner } from '@gitlab/ui';
+import { shallowMountExtended } from 'helpers/vue_test_utils_helper';
+import UpgradeBanner from '~/security_configuration/components/upgrade_banner.vue';
+
+const upgradePath = '/upgrade';
+
+describe('UpgradeBanner component', () => {
+ let wrapper;
+ let closeSpy;
+
+ const createComponent = (propsData) => {
+ closeSpy = jest.fn();
+
+ wrapper = shallowMountExtended(UpgradeBanner, {
+ provide: {
+ upgradePath,
+ },
+ propsData,
+ listeners: {
+ close: closeSpy,
+ },
+ });
+ };
+
+ const findGlBanner = () => wrapper.findComponent(GlBanner);
+
+ beforeEach(() => {
+ createComponent();
+ });
+
+ afterEach(() => {
+ wrapper.destroy();
+ });
+
+ it('passes the expected props to GlBanner', () => {
+ expect(findGlBanner().props()).toMatchObject({
+ title: UpgradeBanner.i18n.title,
+ buttonText: UpgradeBanner.i18n.buttonText,
+ buttonLink: upgradePath,
+ });
+ });
+
+ it('renders the list of benefits', () => {
+ const wrapperText = wrapper.text();
+
+ expect(wrapperText).toContain('GitLab Ultimate checks your application');
+ expect(wrapperText).toContain('statistics in the merge request');
+ expect(wrapperText).toContain('statistics across projects');
+ expect(wrapperText).toContain('Runtime security metrics');
+ expect(wrapperText).toContain('risk analysis and remediation');
+ });
+
+ it(`re-emits GlBanner's close event`, () => {
+ expect(closeSpy).not.toHaveBeenCalled();
+
+ wrapper.findComponent(GlBanner).vm.$emit('close');
+
+ expect(closeSpy).toHaveBeenCalledTimes(1);
+ });
+});