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

database_listbox_spec.js « components « background_migrations « admin « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 212f4c0842cfb3d9f63d29e6177ddfa883d3015f (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
import { GlCollapsibleListbox } from '@gitlab/ui';
import { shallowMount } from '@vue/test-utils';
import BackgroundMigrationsDatabaseListbox from '~/admin/background_migrations/components/database_listbox.vue';
import { visitUrl, setUrlParams } from '~/lib/utils/url_utility';
import { MOCK_DATABASES, MOCK_SELECTED_DATABASE } from '../mock_data';

jest.mock('~/lib/utils/url_utility', () => ({
  visitUrl: jest.fn(),
  setUrlParams: jest.fn(),
}));

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

  const defaultProps = {
    databases: MOCK_DATABASES,
    selectedDatabase: MOCK_SELECTED_DATABASE,
  };

  const createComponent = (props = {}) => {
    wrapper = shallowMount(BackgroundMigrationsDatabaseListbox, {
      propsData: {
        ...defaultProps,
        ...props,
      },
    });
  };

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

  const findGlCollapsibleListbox = () => wrapper.findComponent(GlCollapsibleListbox);

  describe('template always', () => {
    beforeEach(() => {
      createComponent();
    });

    it('renders GlCollapsibleListbox', () => {
      expect(findGlCollapsibleListbox().exists()).toBe(true);
    });
  });

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

    it('selecting a listbox item fires visitUrl with the database param', () => {
      findGlCollapsibleListbox().vm.$emit('select', MOCK_DATABASES[1].value);

      expect(setUrlParams).toHaveBeenCalledWith({ database: MOCK_DATABASES[1].value });
      expect(visitUrl).toHaveBeenCalled();
    });
  });
});