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

available_agents_dropwdown_spec.js « components « clusters_list « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 40c2c59e187dd0f4dc824df29ca721ed3971c0e1 (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
import { GlDropdown, GlDropdownItem } from '@gitlab/ui';
import { createLocalVue, mount } from '@vue/test-utils';
import VueApollo from 'vue-apollo';
import AvailableAgentsDropdown from '~/clusters_list/components/available_agents_dropdown.vue';
import { I18N_AVAILABLE_AGENTS_DROPDOWN } from '~/clusters_list/constants';
import agentConfigurationsQuery from '~/clusters_list/graphql/queries/agent_configurations.query.graphql';
import createMockApollo from 'helpers/mock_apollo_helper';
import { agentConfigurationsResponse } from './mock_data';

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

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

  const i18n = I18N_AVAILABLE_AGENTS_DROPDOWN;
  const findDropdown = () => wrapper.findComponent(GlDropdown);
  const findDropdownItems = () => wrapper.findAllComponents(GlDropdownItem);
  const findConfiguredAgentItem = () => findDropdownItems().at(0);

  const createWrapper = ({ propsData = {}, isLoading = false }) => {
    const provide = {
      projectPath: 'path/to/project',
    };

    wrapper = (() => {
      if (isLoading) {
        const mocks = {
          $apollo: {
            queries: {
              agents: {
                loading: true,
              },
            },
          },
        };

        return mount(AvailableAgentsDropdown, { mocks, provide, propsData });
      }

      const apolloProvider = createMockApollo([
        [agentConfigurationsQuery, jest.fn().mockResolvedValue(agentConfigurationsResponse)],
      ]);

      return mount(AvailableAgentsDropdown, {
        localVue,
        apolloProvider,
        provide,
        propsData,
      });
    })();
  };

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

  describe('there are agents available', () => {
    const propsData = {
      isRegistering: false,
    };

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

    it('prompts to select an agent', () => {
      expect(findDropdown().props('text')).toBe(i18n.selectAgent);
    });

    it('shows only agents that are not yet installed', () => {
      expect(findDropdownItems()).toHaveLength(1);
      expect(findConfiguredAgentItem().text()).toBe('configured-agent');
      expect(findConfiguredAgentItem().props('isChecked')).toBe(false);
    });

    describe('click events', () => {
      beforeEach(() => {
        findConfiguredAgentItem().vm.$emit('click');
      });

      it('emits agentSelected with the name of the clicked agent', () => {
        expect(wrapper.emitted('agentSelected')).toEqual([['configured-agent']]);
      });

      it('marks the clicked item as selected', () => {
        expect(findDropdown().props('text')).toBe('configured-agent');
        expect(findConfiguredAgentItem().props('isChecked')).toBe(true);
      });
    });
  });

  describe('registration in progress', () => {
    const propsData = {
      isRegistering: true,
    };

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

    it('updates the text in the dropdown', () => {
      expect(findDropdown().props('text')).toBe(i18n.registeringAgent);
    });

    it('displays a loading icon', () => {
      expect(findDropdown().props('loading')).toBe(true);
    });
  });

  describe('agents query is loading', () => {
    const propsData = {
      isRegistering: false,
    };

    beforeEach(() => {
      createWrapper({ propsData, isLoading: true });
    });

    it('updates the text in the dropdown', () => {
      expect(findDropdown().text()).toBe(i18n.selectAgent);
    });

    it('displays a loading icon', () => {
      expect(findDropdown().props('loading')).toBe(true);
    });
  });
});