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

empty_state_spec.js « components « monitoring « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: abb8b21e9f47b50cb7ca330a7334dca6dffeaf79 (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 { GlLoadingIcon, GlEmptyState } from '@gitlab/ui';
import { dashboardEmptyStates } from '~/monitoring/constants';
import EmptyState from '~/monitoring/components/empty_state.vue';

function createComponent(props) {
  return shallowMount(EmptyState, {
    propsData: {
      settingsPath: '/settingsPath',
      clustersPath: '/clustersPath',
      documentationPath: '/documentationPath',
      emptyGettingStartedSvgPath: '/path/to/getting-started.svg',
      emptyLoadingSvgPath: '/path/to/loading.svg',
      emptyNoDataSvgPath: '/path/to/no-data.svg',
      emptyNoDataSmallSvgPath: '/path/to/no-data-small.svg',
      emptyUnableToConnectSvgPath: '/path/to/unable-to-connect.svg',
      ...props,
    },
  });
}

describe('EmptyState', () => {
  it('shows loading state with a loading icon', () => {
    const wrapper = createComponent({
      selectedState: dashboardEmptyStates.LOADING,
    });

    expect(wrapper.find(GlLoadingIcon).exists()).toBe(true);
    expect(wrapper.find(GlEmptyState).exists()).toBe(false);
  });

  it('shows gettingStarted state', () => {
    const wrapper = createComponent({
      selectedState: dashboardEmptyStates.GETTING_STARTED,
    });

    expect(wrapper.element).toMatchSnapshot();
  });

  it('shows unableToConnect state', () => {
    const wrapper = createComponent({
      selectedState: dashboardEmptyStates.UNABLE_TO_CONNECT,
    });

    expect(wrapper.element).toMatchSnapshot();
  });

  it('shows noData state', () => {
    const wrapper = createComponent({
      selectedState: dashboardEmptyStates.NO_DATA,
    });

    expect(wrapper.element).toMatchSnapshot();
  });
});