-
Notifications
You must be signed in to change notification settings - Fork 4k
/
Copy pathlint.test.ts
1210 lines (1100 loc) · 36.6 KB
/
lint.test.ts
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
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import * as path from 'path';
import * as linter from '../lint';
let mockRemoveLabel = jest.fn();
let mockAddLabel = jest.fn();
let mockListReviews = jest.fn().mockImplementation((_props: { _owner: string, _repo: string, _pull_number: number }) => {
return { data: [{ id: 1111122222, user: { login: 'aws-cdk-automation' }, state: 'CHANGES_REQUESTED' }] };
});
beforeAll(() => {
jest.spyOn(console, 'log').mockImplementation();
jest.spyOn(linter.PullRequestLinter.prototype as any, 'getTrustedCommunityMembers').mockImplementation(() => ['trusted1', 'trusted2', 'trusted3'])
process.env.REPO_ROOT = path.join(__dirname, '..', '..', '..', '..');
});
afterEach(() => {
jest.clearAllMocks();
});
afterAll(() => {
process.env.REPO_ROOT = undefined;
jest.resetAllMocks();
});
let mockCreateReview: (errorMessage: string) => Promise<any>;
const SHA = 'ABC';
type Subset<K> = {
[attr in keyof K]?: K[attr] extends object
? Subset<K[attr]>
: K[attr] extends object | null
? Subset<K[attr]> | null
: K[attr] extends object | null | undefined
? Subset<K[attr]> | null | undefined
: K[attr];
};
describe('breaking changes format', () => {
test('disallow variations to "BREAKING CHANGE:"', async () => {
const issue: Subset<linter.GitHubPr> = {
number: 1,
title: 'chore: some title',
body: 'BREAKING CHANGES:',
labels: [{ name: 'pr-linter/exempt-test' }, { name: 'pr-linter/exempt-readme' }],
user: {
login: 'author',
},
};
const prLinter = configureMock(issue, undefined);
await expect(prLinter.validatePullRequestTarget(SHA)).rejects.toThrow(/'BREAKING CHANGE: ', variations are not allowed/);
});
test('the first breaking change should immediately follow "BREAKING CHANGE:"', async () => {
const issue = {
number: 1,
title: 'chore(cdk-build-tools): some title',
body: `BREAKING CHANGE:\x20
* **module:** another change`,
labels: [{ name: 'pr-linter/exempt-test' }, { name: 'pr-linter/exempt-readme' }],
user: {
login: 'author',
},
};
const prLinter = configureMock(issue, undefined);
await expect(prLinter.validatePullRequestTarget(SHA)).rejects.toThrow(/description of the first breaking change should immediately follow/);
});
test('invalid title', async () => {
const issue = {
number: 1,
title: 'chore(): some title',
body: 'BREAKING CHANGE: this breaking change',
labels: [{ name: 'pr-linter/exempt-test' }, { name: 'pr-linter/exempt-readme' }],
user: {
login: 'author',
},
};
const prLinter = configureMock(issue, undefined);
await expect(prLinter.validatePullRequestTarget(SHA)).rejects.toThrow(/The title of this pull request must specify the module name that the first breaking change should be associated to./);
});
test('valid title', async () => {
const issue = {
number: 1,
title: 'chore(cdk-build-tools): some title',
body: 'BREAKING CHANGE: this breaking change',
labels: [{ name: 'pr-linter/exempt-test' }, { name: 'pr-linter/exempt-readme' }],
user: {
login: 'author',
},
};
const prLinter = configureMock(issue, undefined);
expect(await prLinter.validatePullRequestTarget(SHA)).resolves; // not throw
});
});
test('disallow PRs from main branch of fork', async () => {
const issue: Subset<linter.GitHubPr> = {
number: 1,
title: 'chore: some title',
body: 'making a pr from main of my fork',
labels: [{ name: 'pr-linter/exempt-test' }, { name: 'pr-linter/exempt-readme' }],
user: {
login: 'author',
},
head: {
label: 'author:main',
ref: 'main'
}
};
const prLinter = configureMock(issue, undefined);
await expect(prLinter.validatePullRequestTarget(SHA)).rejects.toThrow(/Pull requests from `main` branch of a fork cannot be accepted. Please reopen this contribution from another branch on your fork./);
});
describe('commit message format', () => {
test('valid scope', async () => {
const issue = {
number: 1,
title: 'chore(s3): some title',
body: '',
labels: [],
user: {
login: 'author',
},
};
const prLinter = configureMock(issue, undefined);
expect(await prLinter.validatePullRequestTarget(SHA)).resolves;
});
test('invalid scope with aws- prefix', async () => {
const issue = {
number: 1,
title: 'fix(aws-s3): some title',
body: '',
labels: [{ name: 'pr-linter/exempt-test' }, { name: 'pr-linter/exempt-integ-test' }],
user: {
login: 'author',
},
};
const prLinter = configureMock(issue, undefined);
await expect(prLinter.validatePullRequestTarget(SHA)).rejects.toThrow(/The title of the pull request should omit 'aws-' from the name of modified packages. Use 's3' instead of 'aws-s3'./);
});
test('valid scope with aws- in summary and body', async () => {
const issue = {
number: 1,
title: 'docs(s3): something aws-s3',
body: 'something aws-s3',
labels: [],
user: {
login: 'author',
},
};
const prLinter = configureMock(issue, undefined);
expect(await prLinter.validatePullRequestTarget(SHA)).resolves;
});
test('valid with missing scope', async () => {
const issue = {
number: 1,
title: 'docs: something aws-s3',
body: '',
labels: [],
user: {
login: 'author',
},
};
const prLinter = configureMock(issue, undefined);
expect(await prLinter.validatePullRequestTarget(SHA)).resolves;
});
test('valid with aws-cdk-lib as a scope', async () => {
const issue = {
number: 1,
title: 'fix(aws-cdk-lib): some title',
body: '',
labels: [{ name: 'pr-linter/exempt-test' }, { name: 'pr-linter/exempt-integ-test' }],
user: {
login: 'author',
},
};
const prLinter = configureMock(issue, undefined);
expect(await prLinter.validatePullRequestTarget(SHA)).resolves;
});
test.each(['core', 'prlint', 'awslint'])('valid scope for packages that dont use aws- prefix', async (scope) => {
const issue = {
number: 1,
title: `chore(${scope}): some title`,
body: '',
labels: [],
user: {
login: 'author',
},
};
const prLinter = configureMock(issue, undefined);
expect(await prLinter.validatePullRequestTarget(SHA)).resolves;
});
test('invalid capitalized title', async () => {
const issue = {
number: 1,
title: 'fix(aws-cdk-lib): Some title',
body: '',
labels: [{ name: 'pr-linter/exempt-test' }, { name: 'pr-linter/exempt-integ-test' }],
user: {
login: 'author',
},
};
const prLinter = configureMock(issue, undefined);
await expect(prLinter.validatePullRequestTarget(SHA)).rejects.toThrow(/The first word of the pull request title should not be capitalized. If the title starts with a CDK construct, it should be in backticks "``"/);
});
test('valid capitalized title with backticks', async () => {
const issue = {
number: 1,
title: 'fix(aws-cdk-lib): `CfnConstruct`',
body: '',
labels: [{ name: 'pr-linter/exempt-test' }, { name: 'pr-linter/exempt-integ-test' }],
user: {
login: 'author',
},
};
const prLinter = configureMock(issue, undefined);
expect(await prLinter.validatePullRequestTarget(SHA)).resolves;
});
});
describe('ban breaking changes in stable modules', () => {
test('breaking change in stable module', async () => {
const issue = {
number: 1,
title: 'chore(s3): some title',
body: 'BREAKING CHANGE: this breaking change',
labels: [{ name: 'pr-linter/exempt-test' }, { name: 'pr-linter/exempt-readme' }],
user: {
login: 'author',
},
};
const prLinter = configureMock(issue, undefined);
await expect(prLinter.validatePullRequestTarget(SHA)).rejects.toThrow('Breaking changes in stable modules [s3] is disallowed.');
});
test('breaking changes multiple in stable modules', async () => {
const issue = {
number: 1,
title: 'chore(lambda): some title',
body: `
BREAKING CHANGE: this breaking change
continued message
* **ecs**: further breaking in ecs
`,
labels: [{ name: 'pr-linter/exempt-test' }, { name: 'pr-linter/exempt-readme' }],
user: {
login: 'author',
},
};
const prLinter = configureMock(issue, undefined);
await expect(prLinter.validatePullRequestTarget(SHA)).rejects.toThrow('Breaking changes in stable modules [lambda, ecs] is disallowed.');
});
test('unless exempt-breaking-change label added', async () => {
const issue = {
number: 1,
title: 'chore(lambda): some title',
body: `
BREAKING CHANGE: this breaking change
continued message
`,
labels: [{ name: 'pr-linter/exempt-breaking-change' }],
user: {
login: 'author',
},
};
const prLinter = configureMock(issue, undefined);
expect(await prLinter.validatePullRequestTarget(SHA)).resolves; // not throw
});
test('with additional "closes" footer', async () => {
const issue = {
number: 1,
title: 'chore(s3): some title',
body: `
description of the commit
closes #123456789
BREAKING CHANGE: this breaking change
`,
labels: [{ name: 'pr-linter/exempt-test' }, { name: 'pr-linter/exempt-readme' }],
user: {
login: 'author',
},
};
const prLinter = configureMock(issue, undefined);
await expect(prLinter.validatePullRequestTarget(SHA)).rejects.toThrow('Breaking changes in stable modules [s3] is disallowed.');
});
});
describe('integration tests required on features', () => {
test('integ files changed', async () => {
const issue = {
number: 1,
title: 'feat(s3): some title',
body: `
description of the commit
closes #123456789
`,
labels: [],
user: {
login: 'author',
},
};
const files = [
{
filename: 'integ.some-integ-test.ts',
},
{
filename: 'test/some-integ-test.integ.snapshot/integ.some-test.expected.json',
},
{
filename: 'README.md',
},
];
const prLinter = configureMock(issue, files);
expect(await prLinter.validatePullRequestTarget(SHA)).resolves;
});
test('integ files not changed in feat', async () => {
const issue = {
number: 1,
title: 'feat(s3): some title',
body: `
description of the commit
closes #123456789
`,
labels: [],
user: {
login: 'author',
},
};
const files = [
{
filename: 'some-test.test.ts',
},
{
filename: 'test/some-integ-test.integ.snapshot/integ.some-test.expected.json',
},
{
filename: 'README.md',
},
];
const prLinter = configureMock(issue, files);
await expect(prLinter.validatePullRequestTarget(SHA)).rejects.toThrow(
'The pull request linter fails with the following errors:' +
'\n\n\t❌ Features must contain a change to an integration test file and the resulting snapshot.' +
'\n\n<b>PRs must pass status checks before we can provide a meaningful review.</b>\n\n' +
'If you would like to request an exemption from the status checks or clarification on feedback,' +
' please leave a comment on this PR containing `Exemption Request` and/or `Clarification Request`.',
);
});
test('integ snapshots not changed in feat', async () => {
const issue = {
number: 1,
title: 'feat(s3): some title',
body: `
description of the commit
closes #123456789
`,
labels: [],
user: {
login: 'author',
},
};
const files = [
{
filename: 'some-test.test.ts',
},
{
filename: 'integ.some-test.ts',
},
{
filename: 'README.md',
},
];
const prLinter = configureMock(issue, files);
await expect(prLinter.validatePullRequestTarget(SHA)).rejects.toThrow(
'The pull request linter fails with the following errors:' +
'\n\n\t❌ Features must contain a change to an integration test file and the resulting snapshot.' +
'\n\n<b>PRs must pass status checks before we can provide a meaningful review.</b>\n\n' +
'If you would like to request an exemption from the status checks or clarification on feedback,' +
' please leave a comment on this PR containing `Exemption Request` and/or `Clarification Request`.',
);
});
test('integ files not changed in fix', async () => {
const issue = {
number: 1,
title: 'fix(s3): some title',
body: `
description of the commit
closes #123456789
`,
labels: [],
user: {
login: 'author',
},
};
const files = [
{
filename: 'some-test.test.ts',
},
{
filename: 'test/some-integ-test.integ.snapshot/integ.some-test.expected.json',
},
{
filename: 'README.md',
},
];
const prLinter = configureMock(issue, files);
await expect(prLinter.validatePullRequestTarget(SHA)).rejects.toThrow(
'The pull request linter fails with the following errors:' +
'\n\n\t❌ Fixes must contain a change to an integration test file and the resulting snapshot.' +
'\n\n<b>PRs must pass status checks before we can provide a meaningful review.</b>\n\n' +
'If you would like to request an exemption from the status checks or clarification on feedback,' +
' please leave a comment on this PR containing `Exemption Request` and/or `Clarification Request`.',
);
});
test('integ snapshots not changed in fix', async () => {
const issue = {
number: 1,
title: 'fix(s3): some title',
body: `
description of the commit
closes #123456789
`,
labels: [],
user: {
login: 'author',
},
};
const files = [
{
filename: 'some-test.test.ts',
},
{
filename: 'integ.some-test.ts',
},
{
filename: 'README.md',
},
];
const prLinter = configureMock(issue, files);
await expect(prLinter.validatePullRequestTarget(SHA)).rejects.toThrow(
'The pull request linter fails with the following errors:' +
'\n\n\t❌ Fixes must contain a change to an integration test file and the resulting snapshot.' +
'\n\n<b>PRs must pass status checks before we can provide a meaningful review.</b>\n\n' +
'If you would like to request an exemption from the status checks or clarification on feedback,' +
' please leave a comment on this PR containing `Exemption Request` and/or `Clarification Request`.',
);
});
test('integ files not changed, pr exempt', async () => {
const issue = {
number: 1,
title: 'feat(s3): some title',
body: `
description of the commit
closes #123456789
`,
labels: [{ name: 'pr-linter/exempt-integ-test' }],
user: {
login: 'author',
},
};
const files = [
{
filename: 'some-test.test.ts',
},
{
filename: 'README.md',
},
];
const prLinter = configureMock(issue, files);
expect(await prLinter.validatePullRequestTarget(SHA)).resolves;
});
test('integ files not changed, not a feature', async () => {
const issue = {
number: 1,
title: 'chore(s3): some title',
body: `
description of the commit
closes #123456789
`,
labels: [],
user: {
login: 'author',
},
};
const files = [
{
filename: 'some-test.test.ts',
},
{
filename: 'readme.md',
},
];
const prlinter = configureMock(issue, files);
expect(await prlinter.validatePullRequestTarget(SHA)).resolves;
});
describe('CLI file changed', () => {
const labels: linter.GitHubLabel[] = [];
const issue = {
number: 23,
title: 'chore(cli): change the help or something',
body: `
description of the commit
closes #123456789
`,
labels,
user: {
login: 'author',
},
};
const files = [{ filename: 'packages/aws-cdk/lib/cdk-toolkit.ts' }];
test('no label throws error', async () => {
const prLinter = configureMock(issue, files);
await expect(prLinter.validatePullRequestTarget(SHA)).rejects.toThrow(/CLI code has changed. A maintainer must/);
});
test('with label no error', async () => {
labels.push({ name: 'pr-linter/cli-integ-tested' });
const prLinter = configureMock(issue, files);
// THEN: no exception
expect(async () => await prLinter.validatePullRequestTarget(SHA)).resolves;
});
test('with aws-cdk-automation author', async () => {
// GIVEN: Remove exemption
labels.pop();
// Verify no labels added
expect(labels).toEqual([]);
issue.user.login = 'aws-cdk-automation';
// WHEN
const prLinter = configureMock(issue, files);
await prLinter.validatePullRequestTarget(SHA);
// THEN: no exception
});
});
describe('assess needs review from status event', () => {
const pr = {
draft: false,
mergeable_state: 'behind',
number: 1234,
labels: [{ name: 'p2' }],
};
beforeEach(() => {
mockListReviews.mockImplementation(() => {
return {
data: [{ id: 1111122222, user: { login: 'aws-cdk-automation' }, state: 'DISMISSED' }],
};
});
});
test('needs a review', async () => {
// WHEN
const prLinter = configureMock(pr);
await prLinter.validateStatusEvent(pr as any, {
sha: SHA,
context: linter.CODE_BUILD_CONTEXT,
state: 'success',
} as any);
// THEN
expect(mockAddLabel.mock.calls[0][0]).toEqual({
issue_number: 1234,
labels: ['pr/needs-community-review'],
owner: 'aws',
repo: 'aws-cdk',
});
expect(mockRemoveLabel.mock.calls).toEqual([]);
});
test('needs a review and is p1', async () => {
// WHEN
pr.labels = [{ name: 'p1' }];
const prLinter = configureMock(pr);
await prLinter.validateStatusEvent(pr as any, {
sha: SHA,
context: linter.CODE_BUILD_CONTEXT,
state: 'success',
} as any);
// THEN
expect(mockAddLabel.mock.calls[0][0]).toEqual({
issue_number: 1234,
labels: ['pr/needs-maintainer-review'],
owner: 'aws',
repo: 'aws-cdk',
});
expect(mockRemoveLabel.mock.calls).toEqual([]);
});
test('does not need a review because of request changes', async () => {
// GIVEN
mockListReviews.mockImplementation(() => {
return {
data: [{ id: 1111122222, user: { login: 'aws-cdk-automation' }, state: 'CHANGES_REQUESTED' }],
};
});
(pr as any).labels = [
{
name: 'pr/needs-community-review',
},
];
// WHEN
const prLinter = configureMock(pr);
await prLinter.validateStatusEvent(pr as any, {
sha: SHA,
context: linter.CODE_BUILD_CONTEXT,
state: 'success',
} as any);
// THEN
expect(mockRemoveLabel.mock.calls[0][0]).toEqual({
issue_number: 1234,
name: 'pr/needs-community-review',
owner: 'aws',
repo: 'aws-cdk',
});
expect(mockAddLabel.mock.calls).toEqual([]);
});
test('needs a review because of exemption request', async () => {
// GIVEN
mockListReviews.mockImplementation(() => {
return {
data: [{ id: 1111122222, user: { login: 'aws-cdk-automation' }, state: 'CHANGES_REQUESTED' }],
};
});
(pr as any).labels = [
{
name: 'pr-linter/exemption-requested',
},
];
// WHEN
const prLinter = configureMock(pr);
await prLinter.validateStatusEvent(pr as any, {
sha: SHA,
context: linter.CODE_BUILD_CONTEXT,
state: 'success',
} as any);
// THEN
expect(mockAddLabel.mock.calls[0][0]).toEqual({
issue_number: 1234,
labels: ['pr/needs-community-review'],
owner: 'aws',
repo: 'aws-cdk',
});
expect(mockRemoveLabel.mock.calls).toEqual([]);
});
test('does not need a review if member has requested changes', async () => {
// GIVEN
mockListReviews.mockImplementation(() => {
return {
data: [
{ id: 1111122222, user: { login: 'aws-cdk-automation' }, state: 'CHANGES_REQUESTED', submitted_at: '2019-11-17T17:43:43Z'},
{ id: 1111122223, user: { login: 'someuser' }, author_association: 'MEMBER', state: 'CHANGES_REQUESTED', submitted_at: '2019-11-18T17:43:43Z' },
],
};
});
(pr as any).labels = [
{
name: 'pr-linter/exemption-requested',
},
{
name: 'pr/needs-community-review',
},
];
// WHEN
const prLinter = configureMock(pr);
await prLinter.validateStatusEvent(pr as any, {
sha: SHA,
context: linter.CODE_BUILD_CONTEXT,
state: 'success',
} as any);
// THEN
expect(mockRemoveLabel.mock.calls[0][0]).toEqual({
issue_number: 1234,
name: 'pr/needs-community-review',
owner: 'aws',
repo: 'aws-cdk',
});
expect(mockAddLabel.mock.calls).toEqual([]);
});
test('does not need a review if member has approved', async () => {
// GIVEN
mockListReviews.mockImplementation(() => {
return {
data: [
{ id: 1111122223, user: { login: 'someuser' }, author_association: 'MEMBER', state: 'APPROVED' },
],
};
});
(pr as any).labels = [
{
name: 'pr/needs-community-review',
},
];
// WHEN
const prLinter = configureMock(pr);
await prLinter.validateStatusEvent(pr as any, {
sha: SHA,
context: linter.CODE_BUILD_CONTEXT,
state: 'success',
} as any);
// THEN
expect(mockRemoveLabel.mock.calls[0][0]).toEqual({
issue_number: 1234,
name: 'pr/needs-community-review',
owner: 'aws',
repo: 'aws-cdk',
});
expect(mockAddLabel.mock.calls).toEqual([]);
});
test('needs a maintainer review if a community member has approved p2', async () => {
// GIVEN
mockListReviews.mockImplementation(() => {
return {
data: [
{ id: 1111122223, user: { login: 'trusted1' }, state: 'APPROVED' },
],
};
});
(pr as any).labels = [
{
name: 'pr/needs-community-review',
},
];
// WHEN
const prLinter = configureMock(pr);
await prLinter.validateStatusEvent(pr as any, {
sha: SHA,
context: linter.CODE_BUILD_CONTEXT,
state: 'success',
} as any);
// THEN
expect(mockRemoveLabel.mock.calls[0][0]).toEqual({
issue_number: 1234,
name: 'pr/needs-community-review',
owner: 'aws',
repo: 'aws-cdk',
});
expect(mockAddLabel.mock.calls[0][0]).toEqual({
issue_number: 1234,
labels: ['pr/needs-maintainer-review'],
owner: 'aws',
repo: 'aws-cdk',
});
});
test('needs a maintainer review if a community member has approved p2, regardless of other community reviews', async () => {
// GIVEN
mockListReviews.mockImplementation(() => {
return {
data: [
{ id: 1111122223, user: { login: 'trusted1' }, state: 'APPROVED', submitted_at: '2019-11-18T17:43:43Z' },
{ id: 1111122224, user: { login: 'trusted2' }, state: 'CHANGES_REQUESTED', submitted_at: '2019-11-17T18:43:43Z' },
{ id: 1111122225, user: { login: 'trusted3' }, state: 'COMMENTED', submitted_at: '2019-11-17T19:43:43Z' },
],
};
});
(pr as any).labels = [
{
name: 'pr/needs-community-review',
},
];
// WHEN
const prLinter = configureMock(pr);
await prLinter.validateStatusEvent(pr as any, {
sha: SHA,
context: linter.CODE_BUILD_CONTEXT,
state: 'success',
} as any);
// THEN
expect(mockRemoveLabel.mock.calls[0][0]).toEqual({
issue_number: 1234,
name: 'pr/needs-community-review',
owner: 'aws',
repo: 'aws-cdk',
});
expect(mockAddLabel.mock.calls[0][0]).toEqual({
issue_number: 1234,
labels: ['pr/needs-maintainer-review'],
owner: 'aws',
repo: 'aws-cdk',
});
});
test('trusted community member can "request changes" on p2 PR by requesting changes', async () => {
// GIVEN
mockListReviews.mockImplementation(() => {
return {
data: [
{ id: 1111122223, user: { login: 'trusted1' }, state: 'CHANGES_REQUESTED', submitted_at: '2019-11-17T17:43:43Z' },
],
};
});
(pr as any).labels = [
{
name: 'pr/needs-community-review',
},
];
// WHEN
const prLinter = configureMock(pr);
await prLinter.validateStatusEvent(pr as any, {
sha: SHA,
context: linter.CODE_BUILD_CONTEXT,
state: 'success',
} as any);
// THEN
expect(mockRemoveLabel.mock.calls[0][0]).toEqual({
issue_number: 1234,
name: 'pr/needs-community-review',
owner: 'aws',
repo: 'aws-cdk',
});
expect(mockAddLabel.mock.calls).toEqual([]);
});
test('trusted community member can comment after requesting changes without dismissing', async () => {
// GIVEN
mockListReviews.mockImplementation(() => {
return {
data: [
{ id: 1111122223, user: { login: 'trusted1' }, state: 'CHANGES_REQUESTED', submitted_at: '2019-11-17T17:43:43Z' },
{ id: 1111122224, user: { login: 'trusted1' }, state: 'COMMENTED', submitted_at: '2019-11-18T17:43:43Z' },
],
};
});
(pr as any).labels = [];
// WHEN
const prLinter = configureMock(pr);
await prLinter.validateStatusEvent(pr as any, {
sha: SHA,
context: linter.CODE_BUILD_CONTEXT,
state: 'success',
} as any);
// THEN
expect(mockRemoveLabel.mock.calls).toEqual([]);
expect(mockAddLabel.mock.calls).toEqual([]);
});
test('trusted community member comments dont mark as "changes requested"', async () => {
// GIVEN
mockListReviews.mockImplementation(() => {
return {
data: [
{ id: 1111122223, user: { login: 'trusted1' }, state: 'COMMENTED', submitted_at: '2019-11-17T17:43:43Z' },
],
};
});
(pr as any).labels = [
{
name: 'pr/needs-community-review',
},
];
// WHEN
const prLinter = configureMock(pr);
await prLinter.validateStatusEvent(pr as any, {
sha: SHA,
context: linter.CODE_BUILD_CONTEXT,
state: 'success',
} as any);
// THEN
expect(mockRemoveLabel.mock.calls).toEqual([]);
expect(mockAddLabel.mock.calls).toEqual([]);
});
test('trusted community members can change own review from approval to requesting changes', async () => {
// GIVEN
mockListReviews.mockImplementation(() => {
return {
data: [
{ id: 1111122223, user: { login: 'trusted1' }, state: 'APPROVED', submitted_at: '2019-11-17T17:43:43Z' },
{ id: 1111122224, user: { login: 'trusted1' }, state: 'CHANGES_REQUESTED', submitted_at: '2019-11-18T17:43:43Z' },
]
}
});
(pr as any).labels = [
{
name: 'pr/needs-maintainer-review',
}
];
// WHEN
const prLinter = configureMock(pr);
await prLinter.validateStatusEvent(pr as any, {
sha: SHA,
context: linter.CODE_BUILD_CONTEXT,
state: 'success',
} as any);
// THEN
expect(mockRemoveLabel.mock.calls[0][0]).toEqual({
issue_number: 1234,
name: 'pr/needs-maintainer-review',
owner: 'aws',
repo: 'aws-cdk',
});
expect(mockAddLabel.mock.calls).toEqual([]);
});
test('trusted community members can change own review from requesting changes to approval', async () => {
// GIVEN
mockListReviews.mockImplementation(() => {
return {
data: [
{ id: 1111122223, user: { login: 'trusted1' }, state: 'CHANGES_REQUESTED', submitted_at: '2019-11-17T17:43:43Z' },
{ id: 1111122224, user: { login: 'trusted1' }, state: 'APPROVED', submitted_at: '2019-11-18T17:43:43Z' },
]
}
});
(pr as any).labels = [];
// WHEN
const prLinter = configureMock(pr);
await prLinter.validateStatusEvent(pr as any, {
sha: SHA,
context: linter.CODE_BUILD_CONTEXT,
state: 'success',
} as any);
// THEN
expect(mockRemoveLabel.mock.calls).toEqual([]);
expect(mockAddLabel.mock.calls[0][0]).toEqual({
issue_number: 1234,
labels: ['pr/needs-maintainer-review'],
owner: 'aws',
repo: 'aws-cdk',
});
});
test('untrusted community member approval has no affect', async () => {
// GIVEN
mockListReviews.mockImplementation(() => {
return {
data: [
{ id: 1111122223, user: { login: 'untrusted' }, state: 'APPROVED' },
],
};
});
(pr as any).labels = [
{
name: 'pr/needs-community-review',
},
];
// WHEN
const prLinter = configureMock(pr);
await prLinter.validateStatusEvent(pr as any, {
sha: SHA,
context: linter.CODE_BUILD_CONTEXT,
state: 'success',
} as any);