summaryrefslogtreecommitdiff
path: root/spec/javascripts/vue_pipelines_index/mock_data.js
blob: 2365a662b9f334f0e77b85bbe6b12c425403f28a (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
export default {
  pipelines: [{
    id: 115,
    user: {
      name: 'Root',
      username: 'root',
      id: 1,
      state: 'active',
      avatar_url: 'http://www.gravatar.com/avatar/e64c7d89f26bd1972efa854d13d7dd61?s=80\u0026d=identicon',
      web_url: 'http://localhost:3000/root',
    },
    path: '/root/review-app/pipelines/115',
    details: {
      status: {
        icon: 'icon_status_failed',
        text: 'failed',
        label: 'failed',
        group: 'failed',
        has_details: true,
        details_path: '/root/review-app/pipelines/115',
      },
      duration: null,
      finished_at: '2017-03-17T19:00:15.996Z',
      stages: [{
        name: 'build',
        title: 'build: failed',
        status: {
          icon: 'icon_status_failed',
          text: 'failed',
          label: 'failed',
          group: 'failed',
          has_details: true,
          details_path: '/root/review-app/pipelines/115#build',
        },
        path: '/root/review-app/pipelines/115#build',
        dropdown_path: '/root/review-app/pipelines/115/stage.json?stage=build',
      },
      {
        name: 'review',
        title: 'review: skipped',
        status: {
          icon: 'icon_status_skipped',
          text: 'skipped',
          label: 'skipped',
          group: 'skipped',
          has_details: true,
          details_path: '/root/review-app/pipelines/115#review',
        },
        path: '/root/review-app/pipelines/115#review',
        dropdown_path: '/root/review-app/pipelines/115/stage.json?stage=review',
      }],
      artifacts: [],
      manual_actions: [{
        name: 'stop_review',
        path: '/root/review-app/builds/3766/play',
      }],
    },
    flags: {
      latest: true,
      triggered: false,
      stuck: false,
      yaml_errors: false,
      retryable: true,
      cancelable: false,
    },
    ref: {
      name: 'thisisabranch',
      path: '/root/review-app/tree/thisisabranch',
      tag: false,
      branch: true,
    },
    commit: {
      id: '9e87f87625b26c42c59a2ee0398f81d20cdfe600',
      short_id: '9e87f876',
      title: 'Update README.md',
      created_at: '2017-03-15T22:58:28.000+00:00',
      parent_ids: ['3744f9226e699faec2662a8b267e5d3fd0bfff0e'],
      message: 'Update README.md',
      author_name: 'Root',
      author_email: 'admin@example.com',
      authored_date: '2017-03-15T22:58:28.000+00:00',
      committer_name: 'Root',
      committer_email: 'admin@example.com',
      committed_date: '2017-03-15T22:58:28.000+00:00',
      author: {
        name: 'Root',
        username: 'root',
        id: 1,
        state: 'active',
        avatar_url: 'http://www.gravatar.com/avatar/e64c7d89f26bd1972efa854d13d7dd61?s=80\u0026d=identicon',
        web_url: 'http://localhost:3000/root',
      },
      author_gravatar_url: 'http://www.gravatar.com/avatar/e64c7d89f26bd1972efa854d13d7dd61?s=80\u0026d=identicon',
      commit_url: 'http://localhost:3000/root/review-app/commit/9e87f87625b26c42c59a2ee0398f81d20cdfe600',
      commit_path: '/root/review-app/commit/9e87f87625b26c42c59a2ee0398f81d20cdfe600',
    },
    retry_path: '/root/review-app/pipelines/115/retry',
    created_at: '2017-03-15T22:58:33.436Z',
    updated_at: '2017-03-17T19:00:15.997Z',
  }],
  count: {
    all: 52,
    running: 0,
    pending: 0,
    finished: 52,
  },
};