-
Notifications
You must be signed in to change notification settings - Fork 3k
/
createOrUpdateStagingDeployTest.js
396 lines (366 loc) · 16.9 KB
/
createOrUpdateStagingDeployTest.js
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
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
/**
* @jest-environment node
*/
import * as core from '@actions/core';
import * as fns from 'date-fns';
import {vol} from 'memfs';
import path from 'path';
import run from '../../.github/actions/javascript/createOrUpdateStagingDeploy/createOrUpdateStagingDeploy';
import CONST from '../../.github/libs/CONST';
import GithubUtils from '../../.github/libs/GithubUtils';
import GitUtils from '../../.github/libs/GitUtils';
const PATH_TO_PACKAGE_JSON = path.resolve(__dirname, '../../package.json');
jest.mock('fs');
const mockGetInput = jest.fn();
const mockListIssues = jest.fn();
const mockGetPullRequestsMergedBetween = jest.fn();
beforeAll(() => {
// Mock core module
core.getInput = mockGetInput;
// Mock octokit module
const moctokit = {
rest: {
issues: {
create: jest.fn().mockImplementation((arg) =>
Promise.resolve({
data: {
...arg,
html_url: 'https://github.com/Expensify/App/issues/29',
},
}),
),
update: jest.fn().mockImplementation((arg) =>
Promise.resolve({
data: {
...arg,
html_url: `https://github.com/Expensify/App/issues/${arg.issue_number}`,
},
}),
),
listForRepo: mockListIssues,
},
pulls: {
// Static mock for pulls.list (only used to filter out automated PRs, and that functionality is covered
// in the test for GithubUtils.generateStagingDeployCashBody
list: jest.fn().mockResolvedValue([]),
},
},
paginate: jest.fn().mockImplementation((objectMethod) => objectMethod().then(({data}) => data)),
};
GithubUtils.internalOctokit = moctokit;
// Mock GitUtils
GitUtils.getPullRequestsMergedBetween = mockGetPullRequestsMergedBetween;
vol.reset();
vol.fromJSON({
[PATH_TO_PACKAGE_JSON]: JSON.stringify({version: '1.0.2-1'}),
});
});
afterEach(() => {
mockGetInput.mockClear();
mockListIssues.mockClear();
mockGetPullRequestsMergedBetween.mockClear();
});
afterAll(() => {
jest.clearAllMocks();
});
const LABELS = {
STAGING_DEPLOY_CASH: {
id: 2783847782,
node_id: 'MDU6TGFiZWwyNzgzODQ3Nzgy',
url: 'https://api.github.com/repos/Expensify/App/labels/StagingDeployCash',
name: CONST.LABELS.STAGING_DEPLOY,
color: '6FC269',
default: false,
description: '',
},
DEPLOY_BLOCKER_CASH: {
id: 2810597462,
node_id: 'MDU6TGFiZWwyODEwNTk3NDYy',
url: 'https://api.github.com/repos/Expensify/App/labels/DeployBlockerCash',
name: CONST.LABELS.DEPLOY_BLOCKER,
color: '000000',
default: false,
description: 'This issue or pull request should block deployment',
},
};
const basePRList = [
'https://github.com/Expensify/App/pull/1',
'https://github.com/Expensify/App/pull/2',
'https://github.com/Expensify/App/pull/3',
'https://github.com/Expensify/App/pull/4',
'https://github.com/Expensify/App/pull/5',
'https://github.com/Expensify/App/pull/6',
'https://github.com/Expensify/App/pull/7',
'https://github.com/Expensify/App/pull/8',
'https://github.com/Expensify/App/pull/9',
'https://github.com/Expensify/App/pull/10',
];
const baseIssueList = ['https://github.com/Expensify/App/issues/11', 'https://github.com/Expensify/App/issues/12'];
// eslint-disable-next-line max-len
const baseExpectedOutput = (tag = '1.0.2-1') =>
`**Release Version:** \`${tag}\`\r\n**Compare Changes:** https://github.com/Expensify/App/compare/production...staging\r\n\r\n**This release contains changes from the following pull requests:**\r\n`;
const openCheckbox = '- [ ] ';
const closedCheckbox = '- [x] ';
const deployerVerificationsHeader = '**Deployer verifications:**';
// eslint-disable-next-line max-len
const timingDashboardVerification =
'I checked the [App Timing Dashboard](https://graphs.expensify.com/grafana/d/yj2EobAGz/app-timing?orgId=1) and verified this release does not cause a noticeable performance regression.';
// eslint-disable-next-line max-len
const firebaseVerification =
'I checked [Firebase Crashlytics](https://console.firebase.google.com/u/0/project/expensify-chat/crashlytics/app/android:com.expensify.chat/issues?state=open&time=last-seven-days&tag=all) and verified that this release does not introduce any new crashes. More detailed instructions on this verification can be found [here](https://stackoverflowteams.com/c/expensify/questions/15095/15096).';
// eslint-disable-next-line max-len
const ghVerification = 'I checked [GitHub Status](https://www.githubstatus.com/) and verified there is no reported incident with Actions.';
const ccApplauseLeads = 'cc @Expensify/applauseleads\r\n';
const deployBlockerHeader = '**Deploy Blockers:**';
const lineBreak = '\r\n';
const lineBreakDouble = '\r\n\r\n';
describe('createOrUpdateStagingDeployCash', () => {
const closedStagingDeployCash = {
url: 'https://api.github.com/repos/Expensify/App/issues/28',
title: 'Test StagingDeployCash',
number: 28,
labels: [LABELS.STAGING_DEPLOY_CASH],
html_url: 'https://github.com/Expensify/App/issues/29',
// eslint-disable-next-line max-len
body:
`${baseExpectedOutput('1.0.1-0')}` +
`${closedCheckbox}${basePRList[0]}` +
`${lineBreak}${closedCheckbox}${basePRList[1]}` +
`${lineBreak}${closedCheckbox}${basePRList[2]}${lineBreak}` +
`${lineBreakDouble}${deployBlockerHeader}` +
`${lineBreak}${closedCheckbox}${basePRList[0]}` +
`${lineBreak}${closedCheckbox}${basePRList[3]}` +
`${lineBreak}${closedCheckbox}${basePRList[4]}` +
`${lineBreakDouble}${ccApplauseLeads}`,
};
const baseNewPullRequests = [6, 7, 8];
test('creates new issue when there is none open', async () => {
vol.reset();
vol.fromJSON({
[PATH_TO_PACKAGE_JSON]: JSON.stringify({version: '1.0.2-1'}),
});
mockGetInput.mockImplementation((arg) => {
if (arg !== 'GITHUB_TOKEN') {
return;
}
return 'fake_token';
});
mockGetPullRequestsMergedBetween.mockImplementation((fromRef, toRef) => {
if (fromRef === '1.0.1-0' && toRef === '1.0.2-1') {
return [...baseNewPullRequests];
}
return [];
});
mockListIssues.mockImplementation((args) => {
if (args.labels === CONST.LABELS.STAGING_DEPLOY) {
return {data: [closedStagingDeployCash]};
}
return {data: []};
});
const result = await run();
expect(result).toStrictEqual({
owner: CONST.GITHUB_OWNER,
repo: CONST.APP_REPO,
title: `Deploy Checklist: New Expensify ${fns.format(new Date(), 'yyyy-MM-dd')}`,
labels: [CONST.LABELS.STAGING_DEPLOY],
html_url: 'https://github.com/Expensify/App/issues/29',
assignees: [CONST.APPLAUSE_BOT],
body:
`${baseExpectedOutput()}` +
`${openCheckbox}${basePRList[5]}` +
`${lineBreak}${openCheckbox}${basePRList[6]}` +
`${lineBreak}${openCheckbox}${basePRList[7]}${lineBreak}` +
`${lineBreakDouble}${deployerVerificationsHeader}` +
`${lineBreak}${openCheckbox}${timingDashboardVerification}` +
`${lineBreak}${openCheckbox}${firebaseVerification}` +
`${lineBreak}${openCheckbox}${ghVerification}` +
`${lineBreakDouble}${ccApplauseLeads}`,
});
});
describe('updates existing issue when there is one open', () => {
const openStagingDeployCashBefore = {
url: 'https://api.github.com/repos/Expensify/App/issues/29',
title: 'Test StagingDeployCash',
number: 29,
labels: [LABELS.STAGING_DEPLOY_CASH],
// eslint-disable-next-line max-len
body:
`${baseExpectedOutput()}` +
`${openCheckbox}${basePRList[5]}` +
`${lineBreak}${closedCheckbox}${basePRList[6]}` +
`${lineBreak}${openCheckbox}${basePRList[7]}${lineBreak}` +
`${lineBreakDouble}${deployBlockerHeader}` +
`${lineBreak}${openCheckbox}${basePRList[5]}` +
`${lineBreak}${openCheckbox}${basePRList[8]}` +
`${lineBreak}${closedCheckbox}${basePRList[9]}${lineBreak}` +
`${lineBreakDouble}${deployerVerificationsHeader}` +
`${lineBreak}${closedCheckbox}${timingDashboardVerification}` +
`${lineBreak}${closedCheckbox}${firebaseVerification}` +
`${lineBreak}${closedCheckbox}${ghVerification}` +
`${lineBreakDouble}${ccApplauseLeads}`,
state: 'open',
};
const currentDeployBlockers = [
{
html_url: 'https://github.com/Expensify/App/pull/6',
number: 6,
state: 'open',
labels: [LABELS.DEPLOY_BLOCKER_CASH],
},
{
html_url: 'https://github.com/Expensify/App/pull/9',
number: 9,
state: 'open',
labels: [LABELS.DEPLOY_BLOCKER_CASH],
},
{
html_url: 'https://github.com/Expensify/App/pull/10',
number: 10,
state: 'closed',
labels: [LABELS.DEPLOY_BLOCKER_CASH],
},
];
test('with NPM_VERSION input, pull requests, and deploy blockers', async () => {
vol.reset();
vol.fromJSON({
[PATH_TO_PACKAGE_JSON]: JSON.stringify({version: '1.0.2-2'}),
});
mockGetInput.mockImplementation((arg) => {
if (arg !== 'GITHUB_TOKEN') {
return;
}
return 'fake_token';
});
// New pull requests to add to open StagingDeployCash
const newPullRequests = [9, 10];
mockGetPullRequestsMergedBetween.mockImplementation((fromRef, toRef) => {
if (fromRef === '1.0.1-0' && toRef === '1.0.2-2') {
return [...baseNewPullRequests, ...newPullRequests];
}
return [];
});
mockListIssues.mockImplementation((args) => {
if (args.labels === CONST.LABELS.STAGING_DEPLOY) {
return {data: [openStagingDeployCashBefore, closedStagingDeployCash]};
}
if (args.labels === CONST.LABELS.DEPLOY_BLOCKER) {
return {
data: [
...currentDeployBlockers,
{
html_url: 'https://github.com/Expensify/App/issues/11', // New
number: 11,
state: 'open',
labels: [LABELS.DEPLOY_BLOCKER_CASH],
},
{
html_url: 'https://github.com/Expensify/App/issues/12', // New
number: 12,
state: 'open',
labels: [LABELS.DEPLOY_BLOCKER_CASH],
},
],
};
}
return {data: []};
});
const result = await run();
expect(result).toStrictEqual({
owner: CONST.GITHUB_OWNER,
repo: CONST.APP_REPO,
issue_number: openStagingDeployCashBefore.number,
// eslint-disable-next-line max-len
html_url: `https://github.com/Expensify/App/issues/${openStagingDeployCashBefore.number}`,
// eslint-disable-next-line max-len
body:
`${baseExpectedOutput('1.0.2-2')}` +
`${openCheckbox}${basePRList[5]}` +
`${lineBreak}${closedCheckbox}${basePRList[6]}` +
`${lineBreak}${openCheckbox}${basePRList[7]}` +
`${lineBreak}${openCheckbox}${basePRList[8]}` +
`${lineBreak}${openCheckbox}${basePRList[9]}${lineBreak}` +
`${lineBreakDouble}${deployBlockerHeader}` +
`${lineBreak}${openCheckbox}${basePRList[5]}` +
`${lineBreak}${openCheckbox}${basePRList[8]}` +
`${lineBreak}${closedCheckbox}${basePRList[9]}` +
`${lineBreak}${openCheckbox}${baseIssueList[0]}` +
`${lineBreak}${openCheckbox}${baseIssueList[1]}${lineBreak}` +
`${lineBreakDouble}${deployerVerificationsHeader}` +
// Note: these will be unchecked with a new app version, and that's intentional
`${lineBreak}${openCheckbox}${timingDashboardVerification}` +
`${lineBreak}${openCheckbox}${firebaseVerification}` +
`${lineBreak}${openCheckbox}${ghVerification}` +
`${lineBreakDouble}${ccApplauseLeads}`,
});
});
test('without NPM_VERSION input, just a new deploy blocker', async () => {
vol.reset();
vol.fromJSON({
[PATH_TO_PACKAGE_JSON]: JSON.stringify({version: '1.0.2-1'}),
});
mockGetInput.mockImplementation((arg) => {
if (arg !== 'GITHUB_TOKEN') {
return;
}
return 'fake_token';
});
mockGetPullRequestsMergedBetween.mockImplementation((fromRef, toRef) => {
if (fromRef === '1.0.1-0' && toRef === '1.0.2-1') {
return [...baseNewPullRequests];
}
return [];
});
mockListIssues.mockImplementation((args) => {
if (args.labels === CONST.LABELS.STAGING_DEPLOY) {
return {data: [openStagingDeployCashBefore, closedStagingDeployCash]};
}
if (args.labels === CONST.LABELS.DEPLOY_BLOCKER) {
return {
data: [
// Suppose the first deploy blocker is demoted, it should not be removed from the checklist and instead just be checked off
...currentDeployBlockers.slice(1),
{
html_url: 'https://github.com/Expensify/App/issues/11', // New
number: 11,
state: 'open',
labels: [LABELS.DEPLOY_BLOCKER_CASH],
},
{
html_url: 'https://github.com/Expensify/App/issues/12', // New
number: 12,
state: 'open',
labels: [LABELS.DEPLOY_BLOCKER_CASH],
},
],
};
}
return {data: []};
});
const result = await run();
expect(result).toStrictEqual({
owner: CONST.GITHUB_OWNER,
repo: CONST.APP_REPO,
issue_number: openStagingDeployCashBefore.number,
// eslint-disable-next-line max-len
html_url: `https://github.com/Expensify/App/issues/${openStagingDeployCashBefore.number}`,
// eslint-disable-next-line max-len
body:
`${baseExpectedOutput('1.0.2-1')}` +
`${openCheckbox}${basePRList[5]}` +
`${lineBreak}${closedCheckbox}${basePRList[6]}` +
`${lineBreak}${openCheckbox}${basePRList[7]}${lineBreak}` +
`${lineBreakDouble}${deployBlockerHeader}` +
`${lineBreak}${closedCheckbox}${basePRList[5]}` +
`${lineBreak}${openCheckbox}${basePRList[8]}` +
`${lineBreak}${closedCheckbox}${basePRList[9]}` +
`${lineBreak}${openCheckbox}${baseIssueList[0]}` +
`${lineBreak}${openCheckbox}${baseIssueList[1]}${lineBreak}` +
`${lineBreakDouble}${deployerVerificationsHeader}` +
`${lineBreak}${closedCheckbox}${timingDashboardVerification}` +
`${lineBreak}${closedCheckbox}${firebaseVerification}` +
`${lineBreak}${closedCheckbox}${ghVerification}` +
`${lineBreakDouble}${ccApplauseLeads}`,
});
});
});
});