summaryrefslogtreecommitdiff
path: root/spec/frontend/vue_shared/components/runner_aws_deployments/runner_aws_deployments_modal_spec.js
blob: 69db3ec7132cc9580d6e1cd6df8547327e8777d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
import { GlLink } from '@gitlab/ui';
import { shallowMount } from '@vue/test-utils';
import ExperimentTracking from '~/experimentation/experiment_tracking';
import { getBaseURL } from '~/lib/utils/url_utility';
import {
  EXPERIMENT_NAME,
  CF_BASE_URL,
  TEMPLATES_BASE_URL,
  EASY_BUTTONS,
} from '~/vue_shared/components/runner_aws_deployments/constants';
import RunnerAwsDeploymentsModal from '~/vue_shared/components/runner_aws_deployments/runner_aws_deployments_modal.vue';

jest.mock('~/experimentation/experiment_tracking');

describe('RunnerAwsDeploymentsModal', () => {
  let wrapper;

  const findEasyButtons = () => wrapper.findAllComponents(GlLink);

  const createComponent = () => {
    wrapper = shallowMount(RunnerAwsDeploymentsModal, {
      propsData: {
        modalId: 'runner-aws-deployments-modal',
      },
    });
  };

  beforeEach(() => {
    createComponent();
  });

  afterEach(() => {
    wrapper.destroy();
  });

  it('renders the modal', () => {
    expect(wrapper.element).toMatchSnapshot();
  });

  it('should contain all easy buttons', () => {
    expect(findEasyButtons()).toHaveLength(EASY_BUTTONS.length);
  });

  describe('first easy button', () => {
    const findFirstButton = () => findEasyButtons().at(0);

    it('should contain the correct description', () => {
      expect(findFirstButton().text()).toBe(EASY_BUTTONS[0].description);
    });

    it('should contain the correct link', () => {
      const link = findFirstButton().attributes('href');

      expect(link.startsWith(CF_BASE_URL)).toBe(true);
      expect(
        link.includes(
          `templateURL=${encodeURIComponent(TEMPLATES_BASE_URL + EASY_BUTTONS[0].templateName)}`,
        ),
      ).toBe(true);
      expect(link.includes(`stackName=${EASY_BUTTONS[0].stackName}`)).toBe(true);
      expect(
        link.includes(`param_3GITLABRunnerInstanceURL=${encodeURIComponent(getBaseURL())}`),
      ).toBe(true);
    });

    it('should track an event when clicked', () => {
      findFirstButton().vm.$emit('click');

      expect(ExperimentTracking).toHaveBeenCalledWith(EXPERIMENT_NAME);
      expect(ExperimentTracking.prototype.event).toHaveBeenCalledWith(
        `template_clicked_${EASY_BUTTONS[0].stackName}`,
      );
    });
  });
});