summaryrefslogtreecommitdiff
path: root/spec/frontend/clusters_list/components/install_agent_modal_spec.js
blob: 98ca5e05b3ff8cd2ed6ceada39ed7c491b24db90 (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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
import { GlAlert, GlButton, GlFormInputGroup } from '@gitlab/ui';
import { createLocalVue, shallowMount } from '@vue/test-utils';
import VueApollo from 'vue-apollo';
import AvailableAgentsDropdown from '~/clusters_list/components/available_agents_dropdown.vue';
import InstallAgentModal from '~/clusters_list/components/install_agent_modal.vue';
import { I18N_INSTALL_AGENT_MODAL } from '~/clusters_list/constants';
import createAgentMutation from '~/clusters_list/graphql/mutations/create_agent.mutation.graphql';
import createAgentTokenMutation from '~/clusters_list/graphql/mutations/create_agent_token.mutation.graphql';
import createMockApollo from 'helpers/mock_apollo_helper';
import waitForPromises from 'helpers/wait_for_promises';
import CodeBlock from '~/vue_shared/components/code_block.vue';
import {
  createAgentResponse,
  createAgentErrorResponse,
  createAgentTokenResponse,
  createAgentTokenErrorResponse,
} from '../mocks/apollo';
import ModalStub from '../stubs';

const localVue = createLocalVue();
localVue.use(VueApollo);

describe('InstallAgentModal', () => {
  let wrapper;
  let apolloProvider;

  const i18n = I18N_INSTALL_AGENT_MODAL;
  const findModal = () => wrapper.findComponent(ModalStub);
  const findAgentDropdown = () => findModal().findComponent(AvailableAgentsDropdown);
  const findAlert = () => findModal().findComponent(GlAlert);
  const findButtonByVariant = (variant) =>
    findModal()
      .findAll(GlButton)
      .wrappers.find((button) => button.props('variant') === variant);
  const findActionButton = () => findButtonByVariant('confirm');
  const findCancelButton = () => findButtonByVariant('default');

  const expectDisabledAttribute = (element, disabled) => {
    if (disabled) {
      expect(element.attributes('disabled')).toBe('true');
    } else {
      expect(element.attributes('disabled')).toBeUndefined();
    }
  };

  const createWrapper = () => {
    const provide = {
      projectPath: 'path/to/project',
      kasAddress: 'kas.example.com',
    };

    wrapper = shallowMount(InstallAgentModal, {
      attachTo: document.body,
      stubs: {
        GlModal: ModalStub,
      },
      localVue,
      apolloProvider,
      provide,
    });
  };

  const mockSelectedAgentResponse = () => {
    createWrapper();

    wrapper.vm.setAgentName('agent-name');
    findActionButton().vm.$emit('click');

    return waitForPromises();
  };

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

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

  describe('initial state', () => {
    it('renders the dropdown for available agents', () => {
      expect(findAgentDropdown().isVisible()).toBe(true);
      expect(findModal().text()).not.toContain(i18n.basicInstallTitle);
      expect(findModal().findComponent(GlFormInputGroup).exists()).toBe(false);
      expect(findModal().findComponent(GlAlert).exists()).toBe(false);
      expect(findModal().findComponent(CodeBlock).exists()).toBe(false);
    });

    it('renders a cancel button', () => {
      expect(findCancelButton().isVisible()).toBe(true);
      expectDisabledAttribute(findCancelButton(), false);
    });

    it('renders a disabled next button', () => {
      expect(findActionButton().isVisible()).toBe(true);
      expect(findActionButton().text()).toBe(i18n.next);
      expectDisabledAttribute(findActionButton(), true);
    });
  });

  describe('an agent is selected', () => {
    beforeEach(() => {
      findAgentDropdown().vm.$emit('agentSelected');
    });

    it('enables the next button', () => {
      expect(findActionButton().isVisible()).toBe(true);
      expectDisabledAttribute(findActionButton(), false);
    });
  });

  describe('registering an agent', () => {
    const createAgentHandler = jest.fn().mockResolvedValue(createAgentResponse);
    const createAgentTokenHandler = jest.fn().mockResolvedValue(createAgentTokenResponse);

    beforeEach(() => {
      apolloProvider = createMockApollo([
        [createAgentMutation, createAgentHandler],
        [createAgentTokenMutation, createAgentTokenHandler],
      ]);

      return mockSelectedAgentResponse(apolloProvider);
    });

    it('creates an agent and token', () => {
      expect(createAgentHandler).toHaveBeenCalledWith({
        input: { name: 'agent-name', projectPath: 'path/to/project' },
      });

      expect(createAgentTokenHandler).toHaveBeenCalledWith({
        input: { clusterAgentId: 'agent-id', name: 'agent-name' },
      });
    });

    it('renders a done button', () => {
      expect(findActionButton().isVisible()).toBe(true);
      expect(findActionButton().text()).toBe(i18n.done);
      expectDisabledAttribute(findActionButton(), false);
    });

    it('shows agent instructions', () => {
      const modalText = findModal().text();
      expect(modalText).toContain(i18n.basicInstallTitle);
      expect(modalText).toContain(i18n.basicInstallBody);

      const token = findModal().findComponent(GlFormInputGroup);
      expect(token.props('value')).toBe('mock-agent-token');

      const alert = findModal().findComponent(GlAlert);
      expect(alert.props('title')).toBe(i18n.tokenSingleUseWarningTitle);

      const code = findModal().findComponent(CodeBlock).props('code');
      expect(code).toContain('--agent-token=mock-agent-token');
      expect(code).toContain('--kas-address=kas.example.com');
    });

    describe('error creating agent', () => {
      beforeEach(() => {
        apolloProvider = createMockApollo([
          [createAgentMutation, jest.fn().mockResolvedValue(createAgentErrorResponse)],
        ]);

        return mockSelectedAgentResponse();
      });

      it('displays the error message', () => {
        expect(findAlert().text()).toBe(createAgentErrorResponse.data.createClusterAgent.errors[0]);
      });
    });

    describe('error creating token', () => {
      beforeEach(() => {
        apolloProvider = createMockApollo([
          [createAgentMutation, jest.fn().mockResolvedValue(createAgentResponse)],
          [createAgentTokenMutation, jest.fn().mockResolvedValue(createAgentTokenErrorResponse)],
        ]);

        return mockSelectedAgentResponse();
      });

      it('displays the error message', () => {
        expect(findAlert().text()).toBe(
          createAgentTokenErrorResponse.data.clusterAgentTokenCreate.errors[0],
        );
      });
    });
  });
});