-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathnode.test.ts
More file actions
506 lines (437 loc) · 12.9 KB
/
Copy pathnode.test.ts
File metadata and controls
506 lines (437 loc) · 12.9 KB
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
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
import { promises as fs } from "fs";
import { getOctokit } from "@actions/github";
import git from "isomorphic-git";
import { afterAll, beforeAll, describe, expect, it, vi } from "vitest";
import {
createRefMutation,
getRefTreeQuery,
getRepositoryMetadata,
} from "../../src/github/graphql/queries.ts";
import { commitFilesFromBuffers } from "../../src/node.ts";
import { ENV, REPO, ROOT_TEST_BRANCH_PREFIX, log } from "./env.ts";
import { deleteBranches, waitForGitHubToBeReady } from "./util.ts";
// TODO: re-enable strict tree tests when GitHub have addressed the createRef
// bug that's currently used in integration tests
// See: https://github.com/orgs/community/discussions/136777
const octokit = getOctokit(ENV.GITHUB_TOKEN);
const TEST_BRANCH_PREFIX = `${ROOT_TEST_BRANCH_PREFIX}-node`;
// const TEST_TARGET_COMMIT = "fce2760017eab6d85388ed5cfdfac171559d80b3";
/**
* For tests, important that this commit is not an ancestor of TEST_TARGET_COMMIT,
* to ensure that non-fast-forward pushes are tested
*/
// const TEST_TARGET_COMMIT_2 = "7ba8473f02849de3b5449b25fc83c5245d338d94";
// const TEST_TARGET_TREE_2 = "95c9ea756f3686614dcdc1c42f7f654b684cdac2";
const BASIC_FILE_CHANGES_PATH = "foo.txt";
const BASIC_FILE_CHANGES_OID = "0e23339619d605319ec4b49a0ac9dd94598eff8e";
const BASIC_FILE_CONTENTS = {
message: {
headline: "Test commit",
body: "This is a test commit",
},
fileChanges: {
additions: [
{
path: BASIC_FILE_CHANGES_PATH,
contents: Buffer.alloc(1024, "Hello, world!"),
},
],
},
log,
};
// const TEST_TARGET_TREE_WITH_BASIC_CHANGES =
// "a3431c9b42b71115c52bc6fbf9da3682cf0ed5e8";
const getTempBranchName = (branch: string) =>
`changesets-ghcommit-temp/${branch}`;
describe("node", () => {
const branches: string[] = [];
// Set timeout to 1 minute
vi.setConfig({ testTimeout: 60 * 1000 });
let repositoryId: string;
const expectBranchHasTree = async ({
branch,
treeOid,
file,
}: {
branch: string;
treeOid?: string;
file?: {
path: string;
oid: string;
};
}) => {
const ref = (
await getRefTreeQuery(octokit, {
...REPO,
ref: `refs/heads/${branch}`,
path: file?.path ?? "package.json",
})
).repository?.ref?.target;
if (!ref) {
throw new Error("Unexpected missing ref");
}
if ("tree" in ref) {
if (treeOid) {
expect(ref.tree.oid).toEqual(treeOid);
}
if (file) {
expect(ref.file?.oid).toEqual(file.oid);
}
} else {
throw new Error("Expected ref to have a tree");
}
};
const expectParentHasOid = async ({
branch,
oid,
}: {
branch: string;
oid: string;
}) => {
const ref = (
await getRefTreeQuery(octokit, {
...REPO,
ref: `refs/heads/${branch}`,
path: "package.json",
})
).repository?.ref?.target;
if (!ref || !("parents" in ref)) {
throw new Error("Unexpected result");
}
expect(ref.parents.nodes?.[0]?.oid).toEqual(oid);
};
const expectBranchDoesNotExist = async (branch: string) => {
await expect(
octokit.rest.git.getRef({
...REPO,
ref: `heads/${branch}`,
}),
).rejects.toMatchObject({
status: 404,
});
};
let testTargetCommit: string;
/**
* For tests, important that this commit is not an ancestor of TEST_TARGET_COMMIT,
* to ensure that non-fast-forward pushes are tested
*/
let testTargetCommit2: string;
let testTargetTree2: string;
beforeAll(async () => {
const response = await getRepositoryMetadata(octokit, {
...REPO,
baseRef: "HEAD",
targetRef: "HEAD",
});
if (!response?.id) {
throw new Error("Repository not found");
}
repositoryId = response.id;
// Get recent 2 commits to perform tests on
const log = await git.log({ fs, dir: process.cwd(), depth: 2 });
testTargetCommit = log[1]?.oid ?? "N/A";
testTargetCommit2 = log[0]?.oid ?? "N/A";
testTargetTree2 = log[0]?.commit.tree ?? "N/A";
});
describe("commitFilesFromBuffers", () => {
describe("can commit single file of various sizes", () => {
const SIZES_BYTES = {
"1KiB": {
sizeBytes: 1024,
treeOid: "547dfe4079b53c3b45a6717ac1ed6d98512f0a1c",
fileOid: "0e23339619d605319ec4b49a0ac9dd94598eff8e",
},
"1MiB": {
sizeBytes: 1024 * 1024,
treeOid: "a6dca57388cf08de146bcc01a2113b218d6c2858",
fileOid: "a1d7fed1b4a8de1b665dc4f604015b2d87ef978f",
},
"10MiB": {
sizeBytes: 1024 * 1024 * 10,
treeOid: "c4788256a2c1e3ea4267cff0502a656d992248ec",
fileOid: "e36e74edbb6d3fc181ef584a50f8ee55585d27cc",
},
};
for (const [sizeName, { sizeBytes, fileOid }] of Object.entries(
SIZES_BYTES,
)) {
it(`Can commit a ${sizeName}`, async () => {
const branch = `${TEST_BRANCH_PREFIX}-${sizeName}`;
branches.push(branch);
const contents = Buffer.alloc(sizeBytes, "Hello, world!");
await commitFilesFromBuffers({
octokit,
...REPO,
branch,
base: {
commit: testTargetCommit,
},
message: {
headline: "Test commit",
body: "This is a test commit",
},
fileChanges: {
additions: [
{
path: `${sizeName}.txt`,
contents,
},
],
},
log,
});
await waitForGitHubToBeReady();
await expectBranchHasTree({
branch,
// TODO: re-enable
// treeOid,
file: {
path: `${sizeName}.txt`,
oid: fileOid,
},
});
});
}
});
it("can commit using branch as a base", async () => {
const branch = `${TEST_BRANCH_PREFIX}-branch-base`;
branches.push(branch);
await commitFilesFromBuffers({
octokit,
...REPO,
branch,
base: {
branch: "main",
},
...BASIC_FILE_CONTENTS,
});
await waitForGitHubToBeReady();
// Don't test tree for this one as it will change over time / be unstable
await expectBranchHasTree({
branch,
file: {
path: BASIC_FILE_CHANGES_PATH,
oid: BASIC_FILE_CHANGES_OID,
},
});
});
it("can commit using tag as a base", async () => {
const branch = `${TEST_BRANCH_PREFIX}-tag-base`;
branches.push(branch);
await commitFilesFromBuffers({
octokit,
...REPO,
branch,
base: {
tag: "v1.4.0",
},
...BASIC_FILE_CONTENTS,
});
await waitForGitHubToBeReady();
// Don't test tree for this one as it will change over time / be unstable
await expectBranchHasTree({
branch,
file: {
path: BASIC_FILE_CHANGES_PATH,
oid: BASIC_FILE_CHANGES_OID,
},
});
});
it("can commit using commit as a base", async () => {
const branch = `${TEST_BRANCH_PREFIX}-commit-base`;
branches.push(branch);
await commitFilesFromBuffers({
octokit,
...REPO,
branch,
base: {
commit: testTargetCommit,
},
...BASIC_FILE_CONTENTS,
});
await waitForGitHubToBeReady();
await expectBranchHasTree({
branch,
// TODO: re-enable
// treeOid: TEST_TARGET_TREE_WITH_BASIC_CHANGES,
file: {
path: BASIC_FILE_CHANGES_PATH,
oid: BASIC_FILE_CHANGES_OID,
},
});
});
describe("existing branches", () => {
it("can commit to existing branch when force is true", async () => {
const branch = `${TEST_BRANCH_PREFIX}-existing-branch-force`;
branches.push(branch);
// Create an exiting branch
await createRefMutation(octokit, {
input: {
repositoryId,
name: `refs/heads/${branch}`,
oid: testTargetCommit2,
},
});
await commitFilesFromBuffers({
octokit,
...REPO,
branch,
base: {
commit: testTargetCommit,
},
...BASIC_FILE_CONTENTS,
force: true,
});
await waitForGitHubToBeReady();
await expectBranchHasTree({
branch,
// TODO: re-enable
// treeOid: TEST_TARGET_TREE_WITH_BASIC_CHANGES,
file: {
path: BASIC_FILE_CHANGES_PATH,
oid: BASIC_FILE_CHANGES_OID,
},
});
await expectParentHasOid({ branch, oid: testTargetCommit });
await expectBranchDoesNotExist(getTempBranchName(branch));
});
it("cleans up a pre-existing temporary branch when force is true", async () => {
const branch = `${TEST_BRANCH_PREFIX}-existing-branch-force-existing-temp`;
const tempBranch = getTempBranchName(branch);
branches.push(branch, tempBranch);
await createRefMutation(octokit, {
input: {
repositoryId,
name: `refs/heads/${branch}`,
oid: testTargetCommit2,
},
});
await createRefMutation(octokit, {
input: {
repositoryId,
name: `refs/heads/${tempBranch}`,
oid: testTargetCommit2,
},
});
await commitFilesFromBuffers({
octokit,
...REPO,
branch,
base: {
commit: testTargetCommit,
},
...BASIC_FILE_CONTENTS,
force: true,
});
await waitForGitHubToBeReady();
await expectBranchHasTree({
branch,
file: {
path: BASIC_FILE_CHANGES_PATH,
oid: BASIC_FILE_CHANGES_OID,
},
});
await expectParentHasOid({ branch, oid: testTargetCommit });
await expectBranchDoesNotExist(tempBranch);
});
it("cannot commit to existing branch when force is false", async () => {
const branch = `${TEST_BRANCH_PREFIX}-existing-branch-no-force`;
branches.push(branch);
// Create an exiting branch
await createRefMutation(octokit, {
input: {
repositoryId,
name: `refs/heads/${branch}`,
oid: testTargetCommit2,
},
});
await waitForGitHubToBeReady();
await expect(() =>
commitFilesFromBuffers({
octokit,
...REPO,
branch,
base: {
commit: testTargetCommit,
},
...BASIC_FILE_CONTENTS,
}),
).rejects.toThrow(
`Branch ${branch} exists already and does not match base`,
);
await expectBranchHasTree({
branch,
treeOid: testTargetTree2,
});
});
it("can commit to existing branch when force is false and target matches base", async () => {
const branch = `${TEST_BRANCH_PREFIX}-existing-branch-matching-base`;
branches.push(branch);
// Create an exiting branch
await createRefMutation(octokit, {
input: {
repositoryId,
name: `refs/heads/${branch}`,
oid: testTargetCommit,
},
});
await waitForGitHubToBeReady();
await commitFilesFromBuffers({
octokit,
...REPO,
branch,
base: {
commit: testTargetCommit,
},
...BASIC_FILE_CONTENTS,
});
await waitForGitHubToBeReady();
await expectBranchHasTree({
branch,
// TODO: re-enable
// treeOid: TEST_TARGET_TREE_WITH_BASIC_CHANGES,
file: {
path: BASIC_FILE_CHANGES_PATH,
oid: BASIC_FILE_CHANGES_OID,
},
});
});
it("can commit to same branch as base", async () => {
const branch = `${TEST_BRANCH_PREFIX}-same-branch-as-base`;
branches.push(branch);
// Create an exiting branch
await createRefMutation(octokit, {
input: {
repositoryId,
name: `refs/heads/${branch}`,
oid: testTargetCommit,
},
});
await waitForGitHubToBeReady();
await commitFilesFromBuffers({
octokit,
...REPO,
branch,
base: {
branch,
},
...BASIC_FILE_CONTENTS,
});
await waitForGitHubToBeReady();
await expectBranchHasTree({
branch,
// TODO: re-enable
// treeOid: TEST_TARGET_TREE_WITH_BASIC_CHANGES,
file: {
path: BASIC_FILE_CHANGES_PATH,
oid: BASIC_FILE_CHANGES_OID,
},
});
});
});
});
afterAll(async () => {
console.info("Cleaning up test branches");
await deleteBranches(octokit, branches);
});
});