summaryrefslogtreecommitdiff
path: root/spec/frontend/registry/settings/components/registry_settings_app_spec.js
blob: eceb5bf643cecafe385f30e38722ed12b165e2b6 (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
import { shallowMount } from '@vue/test-utils';
import component from '~/registry/settings/components/registry_settings_app.vue';
import { createStore } from '~/registry/settings/store/';
import { FETCH_SETTINGS_ERROR_MESSAGE } from '~/registry/settings/constants';

describe('Registry Settings App', () => {
  let wrapper;
  let store;

  const findSettingsComponent = () => wrapper.find({ ref: 'settings-form' });

  const mountComponent = ({ dispatchMock } = {}) => {
    store = createStore();
    const dispatchSpy = jest.spyOn(store, 'dispatch');
    if (dispatchMock) {
      dispatchSpy[dispatchMock]();
    }
    wrapper = shallowMount(component, {
      mocks: {
        $toast: {
          show: jest.fn(),
        },
      },
      store,
    });
  };

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

  it('renders', () => {
    mountComponent({ dispatchMock: 'mockResolvedValue' });
    expect(wrapper.element).toMatchSnapshot();
  });

  it('call the store function to load the data on mount', () => {
    mountComponent({ dispatchMock: 'mockResolvedValue' });
    expect(store.dispatch).toHaveBeenCalledWith('fetchSettings');
  });

  it('show a toast if fetchSettings fails', () => {
    mountComponent({ dispatchMock: 'mockRejectedValue' });
    return wrapper.vm.$nextTick().then(() =>
      expect(wrapper.vm.$toast.show).toHaveBeenCalledWith(FETCH_SETTINGS_ERROR_MESSAGE, {
        type: 'error',
      }),
    );
  });

  it('renders the setting form', () => {
    mountComponent({ dispatchMock: 'mockResolvedValue' });
    expect(findSettingsComponent().exists()).toBe(true);
  });
});