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

organization_select_spec.js « entity_select « components « vue_shared « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6dc38bbd0c6cfcad3b7c4db0209470901cac0734 (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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
import VueApollo from 'vue-apollo';
import Vue from 'vue';
import { GlCollapsibleListbox, GlAlert } from '@gitlab/ui';
import { chunk } from 'lodash';
import { mountExtended } from 'helpers/vue_test_utils_helper';
import OrganizationSelect from '~/vue_shared/components/entity_select/organization_select.vue';
import EntitySelect from '~/vue_shared/components/entity_select/entity_select.vue';
import { DEFAULT_PER_PAGE } from '~/api';
import {
  ORGANIZATION_TOGGLE_TEXT,
  ORGANIZATION_HEADER_TEXT,
  FETCH_ORGANIZATIONS_ERROR,
  FETCH_ORGANIZATION_ERROR,
} from '~/vue_shared/components/entity_select/constants';
import getCurrentUserOrganizationsQuery from '~/organizations/shared/graphql/queries/organizations.query.graphql';
import getOrganizationQuery from '~/organizations/shared/graphql/queries/organization.query.graphql';
import { organizations as nodes, pageInfo, pageInfoEmpty } from '~/organizations/mock_data';
import waitForPromises from 'helpers/wait_for_promises';
import createMockApollo from 'helpers/mock_apollo_helper';
import { getIdFromGraphQLId } from '~/graphql_shared/utils';

Vue.use(VueApollo);

describe('OrganizationSelect', () => {
  let wrapper;
  let mockApollo;

  // Mocks
  const [organization] = nodes;
  const organizations = {
    nodes,
    pageInfo,
  };

  // Props
  const label = 'label';
  const description = 'description';
  const inputName = 'inputName';
  const inputId = 'inputId';
  const toggleClass = 'foo-bar';

  // Finders
  const findListbox = () => wrapper.findComponent(GlCollapsibleListbox);
  const findEntitySelect = () => wrapper.findComponent(EntitySelect);
  const findAlert = () => wrapper.findComponent(GlAlert);

  // Mock handlers
  const handleInput = jest.fn();
  const getCurrentUserOrganizationsQueryHandler = jest.fn().mockResolvedValue({
    data: { currentUser: { id: 'gid://gitlab/User/1', __typename: 'CurrentUser', organizations } },
  });
  const getOrganizationQueryHandler = jest.fn().mockResolvedValue({
    data: { organization },
  });

  // Helpers
  const createComponent = ({
    props = {},
    handlers = [
      [getCurrentUserOrganizationsQuery, getCurrentUserOrganizationsQueryHandler],
      [getOrganizationQuery, getOrganizationQueryHandler],
    ],
  } = {}) => {
    mockApollo = createMockApollo(handlers);

    wrapper = mountExtended(OrganizationSelect, {
      apolloProvider: mockApollo,
      propsData: {
        label,
        description,
        inputName,
        inputId,
        toggleClass,
        ...props,
      },
      listeners: {
        input: handleInput,
      },
    });
  };
  const openListbox = () => findListbox().vm.$emit('shown');

  describe('entity_select props', () => {
    beforeEach(() => {
      createComponent();
    });

    it.each`
      prop                   | expectedValue
      ${'label'}             | ${label}
      ${'description'}       | ${description}
      ${'inputName'}         | ${inputName}
      ${'inputId'}           | ${inputId}
      ${'defaultToggleText'} | ${ORGANIZATION_TOGGLE_TEXT}
      ${'headerText'}        | ${ORGANIZATION_HEADER_TEXT}
      ${'toggleClass'}       | ${toggleClass}
    `('passes the $prop prop to entity-select', ({ prop, expectedValue }) => {
      expect(findEntitySelect().props(prop)).toBe(expectedValue);
    });
  });

  describe('on mount', () => {
    it('fetches organizations when the listbox is opened', async () => {
      createComponent();
      openListbox();
      await waitForPromises();

      const expectedItems = nodes.map((node) => ({
        ...node,
        text: node.name,
        value: getIdFromGraphQLId(node.id),
      }));

      expect(findListbox().props('items')).toEqual(expectedItems);
    });

    describe('with an initial selection', () => {
      it("fetches the initially selected value's name", async () => {
        createComponent({ props: { initialSelection: organization.id } });
        await waitForPromises();

        expect(findListbox().props('toggleText')).toBe(organization.name);
      });

      it('show an error if fetching initially selected fails', async () => {
        createComponent({
          props: { initialSelection: organization.id },
          handlers: [[getOrganizationQuery, jest.fn().mockRejectedValueOnce()]],
        });

        expect(findAlert().exists()).toBe(false);

        await waitForPromises();

        expect(findAlert().exists()).toBe(true);
        expect(findAlert().text()).toBe(FETCH_ORGANIZATION_ERROR);
      });
    });
  });

  describe('when listbox bottom is reached and there are more organizations to load', () => {
    const [firstPage, secondPage] = chunk(nodes, Math.ceil(nodes.length / 2));
    const getCurrentUserOrganizationsQueryMultiplePagesHandler = jest
      .fn()
      .mockResolvedValueOnce({
        data: {
          currentUser: {
            id: 'gid://gitlab/User/1',
            __typename: 'CurrentUser',
            organizations: { nodes: firstPage, pageInfo },
          },
        },
      })
      .mockResolvedValueOnce({
        data: {
          currentUser: {
            id: 'gid://gitlab/User/1',
            __typename: 'CurrentUser',
            organizations: { nodes: secondPage, pageInfo: pageInfoEmpty },
          },
        },
      });

    beforeEach(async () => {
      createComponent({
        handlers: [
          [getCurrentUserOrganizationsQuery, getCurrentUserOrganizationsQueryMultiplePagesHandler],
          [getOrganizationQuery, getOrganizationQueryHandler],
        ],
      });
      openListbox();
      await waitForPromises();

      findListbox().vm.$emit('bottom-reached');
      await waitForPromises();
    });

    it('calls graphQL query correct `after` variable', () => {
      expect(getCurrentUserOrganizationsQueryMultiplePagesHandler).toHaveBeenCalledWith({
        after: pageInfo.endCursor,
        first: DEFAULT_PER_PAGE,
      });
      expect(findListbox().props('infiniteScroll')).toBe(false);
    });
  });

  it('shows an error when fetching organizations fails', async () => {
    createComponent({
      handlers: [[getCurrentUserOrganizationsQuery, jest.fn().mockRejectedValueOnce()]],
    });
    openListbox();
    expect(findAlert().exists()).toBe(false);

    await waitForPromises();

    expect(findAlert().exists()).toBe(true);
    expect(findAlert().text()).toBe(FETCH_ORGANIZATIONS_ERROR);
  });

  it('forwards events to the parent scope via `v-on="$listeners"`', () => {
    createComponent();
    findEntitySelect().vm.$emit('input');

    expect(handleInput).toHaveBeenCalledTimes(1);
  });
});