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: 197735d3c7728d1cc7123eb0dec3340c025e5ebd (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
import { GlDropdown, GlDropdownItem, GlSearchBoxByType } from '@gitlab/ui';
import { shallowMountExtended } from 'helpers/vue_test_utils_helper';
import { ENTER_KEY } from '~/lib/utils/keys';
import AvailableAgentsDropdown from '~/clusters_list/components/available_agents_dropdown.vue';
import { I18N_AVAILABLE_AGENTS_DROPDOWN } from '~/clusters_list/constants';

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

  const i18n = I18N_AVAILABLE_AGENTS_DROPDOWN;
  const findDropdown = () => wrapper.findComponent(GlDropdown);
  const findDropdownItems = () => wrapper.findAllComponents(GlDropdownItem);
  const findFirstAgentItem = () => findDropdownItems().at(0);
  const findSearchInput = () => wrapper.findComponent(GlSearchBoxByType);
  const findCreateButton = () => wrapper.findByTestId('create-config-button');

  const createWrapper = ({ propsData }) => {
    wrapper = shallowMountExtended(AvailableAgentsDropdown, {
      propsData,
      stubs: { GlDropdown },
    });
    wrapper.vm.$refs.dropdown.hide = jest.fn();
  };

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

  describe('there are agents available', () => {
    const propsData = {
      availableAgents: ['configured-agent', 'search-agent', 'test-agent'],
      isRegistering: false,
    };

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

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

    describe('search agent', () => {
      it('renders search button', () => {
        expect(findSearchInput().exists()).toBe(true);
      });

      it('renders all agents when search term is empty', () => {
        expect(findDropdownItems()).toHaveLength(3);
      });

      it('renders only the agent searched for when the search item exists', async () => {
        await findSearchInput().vm.$emit('input', 'search-agent');

        expect(findDropdownItems()).toHaveLength(1);
        expect(findFirstAgentItem().text()).toBe('search-agent');
      });

      it('renders create button when search started', async () => {
        await findSearchInput().vm.$emit('input', 'new-agent');

        expect(findCreateButton().exists()).toBe(true);
      });

      it("doesn't render create button when search item is found", async () => {
        await findSearchInput().vm.$emit('input', 'search-agent');

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

    describe('select existing agent configuration', () => {
      beforeEach(() => {
        findFirstAgentItem().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(findFirstAgentItem().props('isChecked')).toBe(true);
      });
    });

    describe('create new agent configuration', () => {
      beforeEach(async () => {
        await findSearchInput().vm.$emit('input', 'new-agent');
        findCreateButton().vm.$emit('click');
      });

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

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

    describe('click enter to register new agent without configuration', () => {
      beforeEach(async () => {
        await findSearchInput().vm.$emit('input', 'new-agent');
        await findSearchInput().vm.$emit('keydown', new KeyboardEvent({ key: ENTER_KEY }));
      });

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

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

      it('closes the dropdown', () => {
        expect(wrapper.vm.$refs.dropdown.hide).toHaveBeenCalledTimes(1);
      });
    });
  });

  describe('registration in progress', () => {
    const propsData = {
      availableAgents: ['configured-agent'],
      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);
    });
  });
});