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

dashboard_page_spec.js « pages « monitoring « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7fcb7607772cc6b7a237b70a1fadf0b3693348ae (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
import { shallowMount } from '@vue/test-utils';
import Dashboard from '~/monitoring/components/dashboard.vue';
import DashboardPage from '~/monitoring/pages/dashboard_page.vue';
import { createStore } from '~/monitoring/stores';
import { assertProps } from 'helpers/assert_props';
import { dashboardProps } from '../fixture_data';

describe('monitoring/pages/dashboard_page', () => {
  let wrapper;
  let store;
  let $route;

  const buildRouter = () => {
    const dashboard = {};
    $route = {
      params: { dashboard },
      query: { dashboard },
    };
  };

  const buildWrapper = (props = {}) => {
    wrapper = shallowMount(DashboardPage, {
      store,
      propsData: {
        ...props,
      },
      mocks: {
        $route,
      },
    });
  };

  const findDashboardComponent = () => wrapper.findComponent(Dashboard);

  beforeEach(() => {
    buildRouter();
    store = createStore();
    jest.spyOn(store, 'dispatch').mockResolvedValue();
  });

  it('throws errors if dashboard props are not passed', () => {
    expect(() => assertProps(DashboardPage, {})).toThrow('Missing required prop: "dashboardProps"');
  });

  it('renders the dashboard page with dashboard component', () => {
    buildWrapper({ dashboardProps });

    const allProps = {
      ...dashboardProps,
      // default props values
      rearrangePanelsAvailable: false,
      showHeader: true,
      showPanels: true,
      smallEmptyState: false,
    };

    expect(findDashboardComponent().exists()).toBe(true);
    expect(allProps).toMatchObject(findDashboardComponent().props());
  });
});