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

mock_data.js « log « components « job_details « ci « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 066f783586b8ca3d7d05b4e887c21d19ca5ec1af (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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
export const mockJobLines = [
  {
    offset: 0,
    content: [
      {
        text: 'Running with gitlab-runner 12.1.0 (de7731dd)',
        style: 'term-fg-l-cyan term-bold',
      },
    ],
  },
  {
    offset: 1001,
    content: [{ text: ' on docker-auto-scale-com 8a6210b8' }],
  },
];

export const mockEmptySection = [
  {
    offset: 1002,
    content: [
      {
        text: 'Resolving secrets',
        style: 'term-fg-l-cyan term-bold',
      },
    ],
    section: 'resolve-secrets',
    section_header: true,
  },
  {
    offset: 1003,
    content: [],
    section: 'resolve-secrets',
    section_footer: true,
    section_duration: '00:00',
  },
];

export const mockContentSection = [
  {
    offset: 1004,
    content: [
      {
        text: 'Using Docker executor with image dev.gitlab.org3',
      },
    ],
    section: 'prepare-executor',
    section_header: true,
  },
  {
    offset: 1005,
    content: [{ text: 'Docker executor with image registry.gitlab.com ...' }],
    section: 'prepare-executor',
  },
  {
    offset: 1006,
    content: [{ text: 'Starting service ...', style: 'term-fg-l-green' }],
    section: 'prepare-executor',
  },
  {
    offset: 1007,
    content: [],
    section: 'prepare-executor',
    section_footer: true,
    section_duration: '00:09',
  },
];

export const mockJobLogEnd = [
  {
    offset: 1008,
    content: [{ text: 'Job succeeded' }],
  },
];

export const mockJobLog = [
  ...mockJobLines,
  ...mockEmptySection,
  ...mockContentSection,
  ...mockJobLogEnd,
];

export const mockJobLogLineCount = 7; // `text` entries in mockJobLog

export const mockContentSectionClosed = [
  {
    offset: 0,
    content: [
      {
        text: 'Using Docker executor with image dev.gitlab.org3',
      },
    ],
    section: 'mock-closed-section',
    section_header: true,
    section_options: { collapsed: true },
  },
  {
    offset: 1003,
    content: [{ text: 'Docker executor with image registry.gitlab.com ...' }],
    section: 'mock-closed-section',
  },
  {
    offset: 1004,
    content: [{ text: 'Starting service ...', style: 'term-fg-l-green' }],
    section: 'mock-closed-section',
  },
  {
    offset: 1005,
    content: [],
    section: 'mock-closed-section',
    section_footer: true,
    section_duration: '00:09',
  },
];

export const mockContentSectionHiddenDuration = [
  {
    offset: 0,
    content: [{ text: 'Line 1' }],
    section: 'mock-hidden-duration-section',
    section_header: true,
    section_options: { hide_duration: 'true' },
  },
  {
    offset: 1001,
    content: [{ text: 'Line 2' }],
    section: 'mock-hidden-duration-section',
  },
  {
    offset: 1002,
    content: [],
    section: 'mock-hidden-duration-section',
    section_footer: true,
    section_duration: '00:09',
  },
];

export const mockContentSubsection = [
  {
    offset: 0,
    content: [{ text: 'Line 1' }],
    section: 'mock-section',
    section_header: true,
  },
  {
    offset: 1002,
    content: [{ text: 'Line 2 - section content' }],
    section: 'mock-section',
  },
  {
    offset: 1003,
    content: [{ text: 'Line 3 - sub section header' }],
    section: 'sub-section',
    section_header: true,
  },
  {
    offset: 1004,
    content: [{ text: 'Line 4 - sub section content' }],
    section: 'sub-section',
  },
  {
    offset: 1005,
    content: [{ text: 'Line 5 - sub sub section header with no content' }],
    section: 'sub-sub-section',
    section_header: true,
  },
  {
    offset: 1006,
    content: [],
    section: 'sub-sub-section',
    section_footer: true,
    section_duration: '00:00',
  },

  {
    offset: 1007,
    content: [{ text: 'Line 6 - sub section content 2' }],
    section: 'sub-section',
  },
  {
    offset: 1008,
    content: [],
    section: 'sub-section',
    section_footer: true,
    section_duration: '00:29',
  },
  {
    offset: 1009,
    content: [{ text: 'Line 7 - section content' }],
    section: 'mock-section',
  },
  {
    offset: 1010,
    content: [],
    section: 'mock-section',
    section_footer: true,
    section_duration: '00:59',
  },
  {
    offset: 1011,
    content: [{ text: 'Job succeeded' }],
  },
];

export const mockTruncatedBottomSection = [
  // only the top of a section is obtained, such as when a job gets cancelled
  {
    offset: 1004,
    content: [
      {
        text: 'Starting job',
      },
    ],
    section: 'mock-section',
    section_header: true,
  },
  {
    offset: 1005,
    content: [{ text: 'Job interrupted' }],
    section: 'mock-section',
  },
];

export const mockTruncatedTopSection = [
  // only the bottom half of a section is obtained, such as when jobs are cut off due to large sizes
  {
    offset: 1008,
    content: [{ text: 'Line N - incomplete section content' }],
    section: 'mock-section',
  },
  {
    offset: 1009,
    content: [{ text: 'Line N+1 - incomplete section content' }],
    section: 'mock-section',
  },
  {
    offset: 1010,
    content: [],
    section: 'mock-section',
    section_footer: true,
    section_duration: '00:59',
  },
  {
    offset: 1011,
    content: [{ text: 'Job succeeded' }],
  },
];