summaryrefslogtreecommitdiff
path: root/spec/frontend/vue_shared/components/runner_instructions/instructions/runner_cli_instructions_spec.js
blob: f9d700fe67f4dfe986294e50c84eb86e2388770e (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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
import { GlAlert, GlLoadingIcon } from '@gitlab/ui';
import { shallowMount } from '@vue/test-utils';
import Vue from 'vue';
import VueApollo from 'vue-apollo';
import createMockApollo from 'helpers/mock_apollo_helper';
import { extendedWrapper } from 'helpers/vue_test_utils_helper';
import waitForPromises from 'helpers/wait_for_promises';
import getRunnerSetupInstructionsQuery from '~/vue_shared/components/runner_instructions/graphql/get_runner_setup.query.graphql';
import RunnerCliInstructions from '~/vue_shared/components/runner_instructions/instructions/runner_cli_instructions.vue';

import { mockRunnerPlatforms, mockInstructions, mockInstructionsWindows } from '../mock_data';

Vue.use(VueApollo);

jest.mock('@gitlab/ui/dist/utils');

const mockPlatforms = mockRunnerPlatforms.data.runnerPlatforms.nodes.map(
  ({ name, humanReadableName, architectures }) => ({
    name,
    humanReadableName,
    architectures: architectures?.nodes || [],
  }),
);

const [mockPlatform, mockPlatform2] = mockPlatforms;
const mockArchitectures = mockPlatform.architectures;

describe('RunnerCliInstructions component', () => {
  let wrapper;
  let fakeApollo;
  let runnerSetupInstructionsHandler;

  const findGlLoadingIcon = () => wrapper.findComponent(GlLoadingIcon);
  const findAlert = () => wrapper.findComponent(GlAlert);
  const findArchitectureDropdownItems = () => wrapper.findAllByTestId('architecture-dropdown-item');
  const findBinaryDownloadButton = () => wrapper.findByTestId('binary-download-button');
  const findBinaryInstructions = () => wrapper.findByTestId('binary-instructions');
  const findRegisterCommand = () => wrapper.findByTestId('register-command');

  const createComponent = ({ props, ...options } = {}) => {
    const requestHandlers = [[getRunnerSetupInstructionsQuery, runnerSetupInstructionsHandler]];

    fakeApollo = createMockApollo(requestHandlers);

    wrapper = extendedWrapper(
      shallowMount(RunnerCliInstructions, {
        propsData: {
          platform: mockPlatform,
          registrationToken: 'MY_TOKEN',
          ...props,
        },
        apolloProvider: fakeApollo,
        ...options,
      }),
    );
  };

  beforeEach(() => {
    runnerSetupInstructionsHandler = jest.fn().mockResolvedValue(mockInstructions);
  });

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

  describe('when the instructions are shown', () => {
    beforeEach(async () => {
      createComponent();
      await waitForPromises();
    });

    it('should not show alert', async () => {
      expect(findAlert().exists()).toBe(false);
    });

    it('should contain a number of dropdown items for the architecture options', () => {
      expect(findArchitectureDropdownItems()).toHaveLength(
        mockRunnerPlatforms.data.runnerPlatforms.nodes[0].architectures.nodes.length,
      );
    });

    describe('should display instructions', () => {
      const { installInstructions } = mockInstructions.data.runnerSetup;

      it('runner instructions are requested', () => {
        expect(runnerSetupInstructionsHandler).toHaveBeenCalledWith({
          platform: 'linux',
          architecture: 'amd64',
        });
      });

      it('binary instructions are shown', async () => {
        const instructions = findBinaryInstructions().text();

        expect(instructions).toBe(installInstructions.trim());
      });

      it('register command is shown with a replaced token', async () => {
        const command = findRegisterCommand().text();

        expect(command).toBe(
          'sudo gitlab-runner register --url http://localhost/ --registration-token MY_TOKEN',
        );
      });

      it('architecture download link is shown', () => {
        expect(findBinaryDownloadButton().attributes('href')).toBe(
          mockArchitectures[0].downloadLocation,
        );
      });
    });

    describe('after another platform and architecture are selected', () => {
      beforeEach(async () => {
        runnerSetupInstructionsHandler.mockResolvedValue(mockInstructionsWindows);

        findArchitectureDropdownItems().at(1).vm.$emit('click');

        wrapper.setProps({ platform: mockPlatform2 });
        await waitForPromises();
      });

      it('runner instructions are requested', () => {
        expect(runnerSetupInstructionsHandler).toHaveBeenLastCalledWith({
          platform: mockPlatform2.name,
          architecture: mockPlatform2.architectures[0].name,
        });
      });
    });
  });

  describe('when a register token is not known', () => {
    beforeEach(async () => {
      createComponent({ props: { registrationToken: undefined } });
      await waitForPromises();
    });

    it('register command is shown without a defined registration token', () => {
      const instructions = findRegisterCommand().text();

      expect(instructions).toBe(mockInstructions.data.runnerSetup.registerInstructions);
    });
  });

  describe('when apollo is loading', () => {
    it('should show a loading icon', async () => {
      createComponent();

      expect(findGlLoadingIcon().exists()).toBe(true);

      await waitForPromises();

      expect(findGlLoadingIcon().exists()).toBe(false);
    });
  });

  describe('when instructions cannot be loaded', () => {
    beforeEach(async () => {
      runnerSetupInstructionsHandler.mockRejectedValue();

      createComponent();
      await waitForPromises();
    });

    it('should show alert', () => {
      expect(wrapper.emitted()).toEqual({ error: [[]] });
    });
  });
});