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

runner_details_tabs_spec.js « components « runner « ci « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 689d0575726a023325841a921fffcf0254d2dc47 (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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
import Vue from 'vue';
import { GlTab, GlTabs } from '@gitlab/ui';
import VueRouter from 'vue-router';
import VueApollo from 'vue-apollo';
import setWindowLocation from 'helpers/set_window_location_helper';
import { mountExtended, shallowMountExtended } from 'helpers/vue_test_utils_helper';
import waitForPromises from 'helpers/wait_for_promises';
import { JOBS_ROUTE_PATH, I18N_DETAILS, I18N_JOBS } from '~/ci/runner/constants';

import RunnerDetailsTabs from '~/ci/runner/components/runner_details_tabs.vue';
import RunnerDetails from '~/ci/runner/components/runner_details.vue';
import RunnerJobs from '~/ci/runner/components/runner_jobs.vue';

import { runnerData } from '../mock_data';

// Vue Test Utils `stubs` option does not stub components mounted
// in <router-view>. Use mocking instead:
jest.mock('~/ci/runner/components/runner_jobs.vue', () => {
  const { props } = jest.requireActual('~/ci/runner/components/runner_jobs.vue').default;
  return {
    props,
    render() {},
  };
});

jest.mock('~/ci/runner/components/runner_managers_detail.vue', () => {
  const { props } = jest.requireActual('~/ci/runner/components/runner_managers_detail.vue').default;
  return {
    props,
    render() {},
  };
});

const mockRunner = runnerData.data.runner;

Vue.use(VueApollo);
Vue.use(VueRouter);

describe('RunnerDetailsTabs', () => {
  let wrapper;
  let routerPush;

  const findTabs = () => wrapper.findComponent(GlTabs);
  const findRunnerDetails = () => wrapper.findComponent(RunnerDetails);
  const findRunnerJobs = () => wrapper.findComponent(RunnerJobs);
  const findJobCountBadge = () => wrapper.findByTestId('job-count-badge');

  const createComponent = ({ props = {}, mountFn = shallowMountExtended, ...options } = {}) => {
    wrapper = mountFn(RunnerDetailsTabs, {
      propsData: {
        runner: mockRunner,
        ...props,
      },
      ...options,
    });

    routerPush = jest.spyOn(wrapper.vm.$router, 'push').mockImplementation(() => {});

    return waitForPromises();
  };

  it('shows basic runner details', async () => {
    await createComponent({ mountFn: mountExtended });

    expect(findRunnerDetails().props('runner')).toBe(mockRunner);
    expect(findRunnerJobs().exists()).toBe(false);
  });

  it('shows runner jobs', async () => {
    setWindowLocation(`#${JOBS_ROUTE_PATH}`);

    await createComponent({ mountFn: mountExtended });

    expect(findRunnerDetails().exists()).toBe(false);
    expect(findRunnerJobs().props('runner')).toBe(mockRunner);
  });

  it.each`
    jobCount | badgeText
    ${null}  | ${null}
    ${1}     | ${'1'}
    ${1000}  | ${'1,000'}
    ${1001}  | ${'1,000+'}
  `('shows runner jobs count', async ({ jobCount, badgeText }) => {
    await createComponent({
      stubs: {
        GlTab,
      },
      props: {
        runner: {
          ...mockRunner,
          jobCount,
        },
      },
    });

    if (!badgeText) {
      expect(findJobCountBadge().exists()).toBe(false);
    } else {
      expect(findJobCountBadge().text()).toBe(badgeText);
    }
  });

  it.each(['#/', '#/unknown-tab'])('shows details when location hash is `%s`', async (hash) => {
    setWindowLocation(hash);

    await createComponent({ mountFn: mountExtended });

    expect(findTabs().props('value')).toBe(0);
    expect(findRunnerDetails().exists()).toBe(true);
    expect(findRunnerJobs().exists()).toBe(false);
  });

  describe.each`
    location       | tab             | navigatedTo
    ${'#/details'} | ${I18N_DETAILS} | ${[]}
    ${'#/details'} | ${I18N_JOBS}    | ${[[{ name: 'jobs' }]]}
    ${'#/jobs'}    | ${I18N_JOBS}    | ${[]}
    ${'#/jobs'}    | ${I18N_DETAILS} | ${[[{ name: 'details' }]]}
  `('When at $location', ({ location, tab, navigatedTo }) => {
    beforeEach(async () => {
      setWindowLocation(location);

      await createComponent({
        mountFn: mountExtended,
      });
    });

    it(`on click on ${tab}, navigates to ${JSON.stringify(navigatedTo)}`, () => {
      wrapper.findByText(tab).trigger('click');

      expect(routerPush.mock.calls).toEqual(navigatedTo);
    });
  });
});