summaryrefslogtreecommitdiff
path: root/spec/contracts/consumer/fixtures/project/pipeline_schedule/update_pipeline_schedule.fixture.js
blob: acfab14851a75feb4c42d0e1e3bcb49d867af850 (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
import { Matchers } from '@pact-foundation/pact';
import { REDIRECT_HTML } from '../../../helpers/common_regex_patterns';

const body = Matchers.term({
  matcher: REDIRECT_HTML,
  generate:
    '<html><body>You are being <a href="http://example.org/gitlab-org/gitlab-qa/-/pipelines/5">redirected</a>.</body></html>',
});

const UpdatePipelineSchedule = {
  success: {
    status: 302,
    headers: {
      'Content-Type': 'text/html; charset=utf-8',
    },
    body,
  },

  scenario: {
    state: 'a project with a pipeline schedule exists',
    uponReceiving: 'a request to edit a pipeline schedule',
  },

  request: {
    withRequest: {
      method: 'PUT',
      path: '/gitlab-org/gitlab-qa/-/pipeline_schedules/25',
      headers: {
        Accept: '*/*',
        'Content-Type': 'application/json; charset=utf-8',
      },
      body: {
        schedule: {
          description: 'bar',
          cron: '0 1 * * *',
          cron_timezone: 'UTC',
          active: true,
        },
      },
    },
  },
};

export { UpdatePipelineSchedule };