summaryrefslogtreecommitdiff
path: root/spec/frontend/admin/background_migrations/components/database_listbox_spec.js
blob: 3778943872eaac0dd7e230de06540fc2e4af62e6 (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 { GlListbox } 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 findGlListbox = () => wrapper.findComponent(GlListbox);

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

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

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

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

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