summaryrefslogtreecommitdiff
path: root/spec/javascripts/ide/mock_data.js
blob: 3c09ff36afa98b5228d1cf800b6e3bdbe1947946 (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
export const projectData = {
  id: 1,
  name: 'abcproject',
  web_url: '',
  avatar_url: '',
  path: '',
  name_with_namespace: 'namespace/abcproject',
  branches: {
    master: {
      treeId: 'abcproject/master',
    },
  },
  mergeRequests: {},
  merge_requests_enabled: true,
};

export const pipelines = [
  {
    id: 1,
    ref: 'master',
    sha: '123',
    status: 'failed',
  },
  {
    id: 2,
    ref: 'master',
    sha: '213',
    status: 'success',
  },
];

export const jobs = [
  {
    id: 1,
    name: 'test',
    status: 'failed',
    stage: 'test',
    duration: 1,
  },
  {
    id: 2,
    name: 'test 2',
    status: 'failed',
    stage: 'test',
    duration: 1,
  },
  {
    id: 3,
    name: 'test 3',
    status: 'failed',
    stage: 'test',
    duration: 1,
  },
  {
    id: 4,
    name: 'test 3',
    status: 'failed',
    stage: 'build',
    duration: 1,
  },
];

export const fullPipelinesResponse = {
  data: {
    count: {
      all: 2,
    },
    pipelines: [
      {
        id: '51',
        commit: {
          id: 'xxxxxxxxxxxxxxxxxxxx',
        },
        details: {
          status: {
            icon: 'status_failed',
            text: 'failed',
          },
        },
      },
      {
        id: '50',
        commit: {
          id: 'abc123def456ghi789jkl',
        },
        details: {
          status: {
            icon: 'status_passed',
            text: 'passed',
          },
        },
      },
    ],
  },
};

export const mergeRequests = [
  {
    iid: 1,
    title: 'Test merge request',
    project_id: 1,
  },
];