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

create_a_new_pipeline.fixture.js « pipeline « project « fixtures « consumer « contracts « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 68063d2fb0c8d176c7f4862fc3ee85ce5ca1f41a (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
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 NewProjectPipeline = {
  success: {
    status: 302,
    headers: {
      'Content-Type': 'text/html; charset=utf-8',
    },
    body,
  },

  scenario: {
    state: 'a project with a valid .gitlab-ci.yml configuration exists',
    uponReceiving: 'a request to create a new pipeline',
  },

  request: {
    withRequest: {
      method: 'POST',
      path: '/gitlab-org/gitlab-qa/-/pipelines',
      headers: {
        Accept: '*/*',
        'Content-Type': 'application/json; charset=utf-8',
      },
      body: {
        ref: 'master',
      },
    },
  },
};

export { NewProjectPipeline };