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

github_organizations_box_spec.js « components « import_projects « import_entities « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b6f96cd6a230c64f39664cd8212878ba41010022 (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
import { GlCollapsibleListbox } from '@gitlab/ui';
import MockAdapter from 'axios-mock-adapter';
import { mount } from '@vue/test-utils';
import { captureException } from '@sentry/browser';
import { nextTick } from 'vue';

import axios from '~/lib/utils/axios_utils';
import { HTTP_STATUS_INTERNAL_SERVER_ERROR, HTTP_STATUS_OK } from '~/lib/utils/http_status';
import { createAlert } from '~/alert';

import GithubOrganizationsBox from '~/import_entities/import_projects/components/github_organizations_box.vue';

jest.mock('@sentry/browser');
jest.mock('~/alert');

const MOCK_RESPONSE = {
  provider_groups: [{ name: 'alpha-1' }, { name: 'alpha-2' }, { name: 'beta-1' }],
};

describe('GithubOrganizationsBox component', () => {
  let wrapper;
  let mockAxios;

  const findListbox = () => wrapper.findComponent(GlCollapsibleListbox);
  const mockGithubGroupPath = '/mock/groups.json';

  const createComponent = (props) => {
    wrapper = mount(GithubOrganizationsBox, {
      propsData: {
        value: 'some-org',
        ...props,
      },
      provide: () => ({
        statusImportGithubGroupPath: mockGithubGroupPath,
      }),
    });
  };

  beforeEach(() => {
    mockAxios = new MockAdapter(axios);
    mockAxios.onGet(mockGithubGroupPath).reply(HTTP_STATUS_OK, MOCK_RESPONSE);
  });

  afterEach(() => {
    mockAxios.restore();
  });

  it('has underlying listbox as loading while loading organizations', () => {
    createComponent();
    expect(findListbox().props('loading')).toBe(true);
  });

  it('clears underlying listbox when loading is complete', async () => {
    createComponent();
    await axios.waitForAll();
    expect(findListbox().props('loading')).toBe(false);
  });

  it('sets toggle-text to all organizations when selection is not provided', () => {
    createComponent({ value: '' });
    expect(findListbox().props('toggleText')).toBe(GithubOrganizationsBox.i18n.allOrganizations);
  });

  it('sets toggle-text to organization name when it is provided', () => {
    const ORG_NAME = 'org';
    createComponent({ value: ORG_NAME });

    expect(findListbox().props('toggleText')).toBe(ORG_NAME);
  });

  it('emits selected organization from underlying listbox', () => {
    createComponent();

    findListbox().vm.$emit('select', 'org-id');
    expect(wrapper.emitted('input').at(-1)).toStrictEqual(['org-id']);
  });

  it('filters list for underlying listbox', async () => {
    createComponent();
    await axios.waitForAll();

    findListbox().vm.$emit('search', 'alpha');
    await nextTick();

    // 2 matches + 'All organizations'
    expect(findListbox().props('items')).toHaveLength(3);
  });

  it('reports error to sentry on load', async () => {
    mockAxios.onGet(mockGithubGroupPath).reply(HTTP_STATUS_INTERNAL_SERVER_ERROR);
    createComponent();
    await axios.waitForAll();

    expect(captureException).toHaveBeenCalled();
    expect(createAlert).toHaveBeenCalled();
  });
});