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

actions_cell_spec.js « cells « table « components « jobs « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6caf36e1461f04fe89a6d080864ad8e487a4b05e (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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
import { GlModal } from '@gitlab/ui';
import { nextTick } from 'vue';
import { shallowMountExtended } from 'helpers/vue_test_utils_helper';
import ActionsCell from '~/jobs/components/table/cells/actions_cell.vue';
import JobPlayMutation from '~/jobs/components/table/graphql/mutations/job_play.mutation.graphql';
import JobRetryMutation from '~/jobs/components/table/graphql/mutations/job_retry.mutation.graphql';
import JobUnscheduleMutation from '~/jobs/components/table/graphql/mutations/job_unschedule.mutation.graphql';
import {
  playableJob,
  retryableJob,
  scheduledJob,
  cannotRetryJob,
  cannotPlayJob,
  cannotPlayScheduledJob,
} from '../../../mock_data';

describe('Job actions cell', () => {
  let wrapper;
  let mutate;

  const findRetryButton = () => wrapper.findByTestId('retry');
  const findPlayButton = () => wrapper.findByTestId('play');
  const findDownloadArtifactsButton = () => wrapper.findByTestId('download-artifacts');
  const findCountdownButton = () => wrapper.findByTestId('countdown');
  const findPlayScheduledJobButton = () => wrapper.findByTestId('play-scheduled');
  const findUnscheduleButton = () => wrapper.findByTestId('unschedule');

  const findModal = () => wrapper.findComponent(GlModal);

  const MUTATION_SUCCESS = { data: { JobRetryMutation: { jobId: retryableJob.id } } };
  const MUTATION_SUCCESS_UNSCHEDULE = {
    data: { JobUnscheduleMutation: { jobId: scheduledJob.id } },
  };
  const MUTATION_SUCCESS_PLAY = { data: { JobPlayMutation: { jobId: playableJob.id } } };

  const $toast = {
    show: jest.fn(),
  };

  const createComponent = (jobType, mutationType = MUTATION_SUCCESS, props = {}) => {
    mutate = jest.fn().mockResolvedValue(mutationType);

    wrapper = shallowMountExtended(ActionsCell, {
      propsData: {
        job: jobType,
        ...props,
      },
      mocks: {
        $apollo: {
          mutate,
        },
        $toast,
      },
    });
  };

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

  it('displays the artifacts download button with correct link', () => {
    createComponent(playableJob);

    expect(findDownloadArtifactsButton().attributes('href')).toBe(
      playableJob.artifacts.nodes[0].downloadPath,
    );
  });

  it('does not display an artifacts download button', () => {
    createComponent(retryableJob);

    expect(findDownloadArtifactsButton().exists()).toBe(false);
  });

  it.each`
    button                        | action              | jobType
    ${findPlayButton}             | ${'play'}           | ${cannotPlayJob}
    ${findRetryButton}            | ${'retry'}          | ${cannotRetryJob}
    ${findPlayScheduledJobButton} | ${'play scheduled'} | ${cannotPlayScheduledJob}
  `('does not display the $action button if user cannot update build', ({ button, jobType }) => {
    createComponent(jobType);

    expect(button().exists()).toBe(false);
  });

  it.each`
    button                         | action                  | jobType
    ${findPlayButton}              | ${'play'}               | ${playableJob}
    ${findRetryButton}             | ${'retry'}              | ${retryableJob}
    ${findDownloadArtifactsButton} | ${'download artifacts'} | ${playableJob}
  `('displays the $action button', ({ button, jobType }) => {
    createComponent(jobType);

    expect(button().exists()).toBe(true);
  });

  it.each`
    button             | mutationResult           | action     | jobType         | mutationFile
    ${findPlayButton}  | ${MUTATION_SUCCESS_PLAY} | ${'play'}  | ${playableJob}  | ${JobPlayMutation}
    ${findRetryButton} | ${MUTATION_SUCCESS}      | ${'retry'} | ${retryableJob} | ${JobRetryMutation}
  `('performs the $action mutation', ({ button, mutationResult, jobType, mutationFile }) => {
    createComponent(jobType, mutationResult);

    button().vm.$emit('click');

    expect(mutate).toHaveBeenCalledWith({
      mutation: mutationFile,
      variables: {
        id: jobType.id,
      },
    });
  });

  describe('Scheduled Jobs', () => {
    const today = () => new Date('2021-08-31');

    beforeEach(() => {
      jest.spyOn(Date, 'now').mockImplementation(today);
    });

    it('displays the countdown, play and unschedule buttons', () => {
      createComponent(scheduledJob);

      expect(findCountdownButton().exists()).toBe(true);
      expect(findPlayScheduledJobButton().exists()).toBe(true);
      expect(findUnscheduleButton().exists()).toBe(true);
    });

    it('unschedules a job', () => {
      createComponent(scheduledJob, MUTATION_SUCCESS_UNSCHEDULE);

      findUnscheduleButton().vm.$emit('click');

      expect(mutate).toHaveBeenCalledWith({
        mutation: JobUnscheduleMutation,
        variables: {
          id: scheduledJob.id,
        },
      });
    });

    it('shows the play job confirmation modal', async () => {
      createComponent(scheduledJob, MUTATION_SUCCESS);

      findPlayScheduledJobButton().vm.$emit('click');

      await nextTick();

      expect(findModal().exists()).toBe(true);
    });
  });
});