summaryrefslogtreecommitdiff
path: root/spec/frontend/clusters_list/components/clusters_actions_spec.js
blob: cb8303ca4b24c5a4d808b319da8b402d3dc9b1bc (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
import { GlDropdown, GlDropdownItem } from '@gitlab/ui';
import { shallowMountExtended } from 'helpers/vue_test_utils_helper';
import ClustersActions from '~/clusters_list/components/clusters_actions.vue';
import { createMockDirective, getBinding } from 'helpers/vue_mock_directive';
import { INSTALL_AGENT_MODAL_ID, CLUSTERS_ACTIONS } from '~/clusters_list/constants';

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

  const newClusterPath = 'path/to/create/cluster';
  const addClusterPath = 'path/to/connect/existing/cluster';

  const provideData = {
    newClusterPath,
    addClusterPath,
  };

  const findDropdown = () => wrapper.findComponent(GlDropdown);
  const findDropdownItems = () => wrapper.findAllComponents(GlDropdownItem);
  const findNewClusterLink = () => wrapper.findByTestId('new-cluster-link');
  const findConnectClusterLink = () => wrapper.findByTestId('connect-cluster-link');
  const findConnectNewAgentLink = () => wrapper.findByTestId('connect-new-agent-link');

  beforeEach(() => {
    wrapper = shallowMountExtended(ClustersActions, {
      provide: provideData,
      directives: {
        GlModalDirective: createMockDirective(),
      },
    });
  });

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

  it('renders actions menu', () => {
    expect(findDropdown().props('text')).toBe(CLUSTERS_ACTIONS.actionsButton);
  });

  it('renders a dropdown with 3 actions items', () => {
    expect(findDropdownItems()).toHaveLength(3);
  });

  it('renders correct href attributes for the links', () => {
    expect(findNewClusterLink().attributes('href')).toBe(newClusterPath);
    expect(findConnectClusterLink().attributes('href')).toBe(addClusterPath);
  });

  it('renders correct modal id for the agent link', () => {
    const binding = getBinding(findConnectNewAgentLink().element, 'gl-modal-directive');

    expect(binding.value).toBe(INSTALL_AGENT_MODAL_ID);
  });
});