-
Notifications
You must be signed in to change notification settings - Fork 721
Expand file tree
/
Copy pathscale-down.test.ts
More file actions
913 lines (782 loc) · 28.3 KB
/
scale-down.test.ts
File metadata and controls
913 lines (782 loc) · 28.3 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
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
import { Octokit } from '@octokit/rest';
import { RequestError } from '@octokit/request-error';
import moment from 'moment';
import nock from 'nock';
import { RunnerInfo, RunnerList } from '../aws/runners.d';
import * as ghAuth from '../github/auth';
import { listEC2Runners, terminateRunner, tag, untag } from './../aws/runners';
import { githubCache } from './cache';
import { newestFirstStrategy, oldestFirstStrategy, scaleDown } from './scale-down';
import { describe, it, expect, beforeEach, vi } from 'vitest';
const mockOctokit = {
apps: {
getOrgInstallation: vi.fn(),
getRepoInstallation: vi.fn(),
},
actions: {
listSelfHostedRunnersForRepo: vi.fn(),
listSelfHostedRunnersForOrg: vi.fn(),
deleteSelfHostedRunnerFromOrg: vi.fn(),
deleteSelfHostedRunnerFromRepo: vi.fn(),
getSelfHostedRunnerForOrg: vi.fn(),
getSelfHostedRunnerForRepo: vi.fn(),
},
paginate: vi.fn(),
};
vi.mock('@octokit/rest', () => ({
Octokit: vi.fn().mockImplementation(function () {
return mockOctokit;
}),
}));
vi.mock('./../aws/runners', async (importOriginal) => {
const actual = await importOriginal();
return {
...actual,
tag: vi.fn(),
untag: vi.fn(),
terminateRunner: vi.fn(),
listEC2Runners: vi.fn(),
};
});
vi.mock('./../github/auth', async () => ({
createGithubAppAuth: vi.fn(),
createGithubInstallationAuth: vi.fn(),
createOctokitClient: vi.fn(),
}));
vi.mock('./cache', async () => ({
githubCache: {
getRunner: vi.fn(),
addRunner: vi.fn(),
clients: new Map(),
runners: new Map(),
reset: vi.fn().mockImplementation(() => {
githubCache.clients.clear();
githubCache.runners.clear();
}),
},
}));
const mocktokit = Octokit as vi.MockedClass<typeof Octokit>;
const mockedAppAuth = vi.mocked(ghAuth.createGithubAppAuth);
const mockedInstallationAuth = vi.mocked(ghAuth.createGithubInstallationAuth);
const mockCreateClient = vi.mocked(ghAuth.createOctokitClient);
const mockListRunners = vi.mocked(listEC2Runners);
const mockTagRunners = vi.mocked(tag);
const mockUntagRunners = vi.mocked(untag);
const mockTerminateRunners = vi.mocked(terminateRunner);
export interface TestData {
repositoryName: string;
repositoryOwner: string;
}
const cleanEnv = process.env;
const ENVIRONMENT = 'unit-test-environment';
const MINIMUM_TIME_RUNNING_IN_MINUTES = 30;
const MINIMUM_BOOT_TIME = 5;
const TEST_DATA: TestData = {
repositoryName: 'hello-world',
repositoryOwner: 'Codertocat',
};
interface RunnerTestItem extends RunnerList {
registered: boolean;
orphan: boolean;
shouldBeTerminated: boolean;
}
describe('Scale down runners', () => {
beforeEach(() => {
process.env = { ...cleanEnv };
process.env.GITHUB_APP_KEY_BASE64 = 'TEST_CERTIFICATE_DATA';
process.env.GITHUB_APP_ID = '1337';
process.env.GITHUB_APP_CLIENT_ID = 'TEST_CLIENT_ID';
process.env.GITHUB_APP_CLIENT_SECRET = 'TEST_CLIENT_SECRET';
process.env.RUNNERS_MAXIMUM_COUNT = '3';
process.env.SCALE_DOWN_CONFIG = '[]';
process.env.ENVIRONMENT = ENVIRONMENT;
process.env.MINIMUM_RUNNING_TIME_IN_MINUTES = MINIMUM_TIME_RUNNING_IN_MINUTES.toString();
process.env.RUNNER_BOOT_TIME_IN_MINUTES = MINIMUM_BOOT_TIME.toString();
nock.disableNetConnect();
vi.clearAllMocks();
vi.resetModules();
githubCache.clients.clear();
githubCache.runners.clear();
mockOctokit.apps.getOrgInstallation.mockImplementation(() => ({
data: {
id: 'ORG',
},
}));
mockOctokit.apps.getRepoInstallation.mockImplementation(() => ({
data: {
id: 'REPO',
},
}));
mockOctokit.paginate.mockResolvedValue([]);
mockOctokit.actions.deleteSelfHostedRunnerFromRepo.mockImplementation((repo) => {
// check if repo.runner_id contains the word "busy". If yes, throw an error else return 204
if (repo.runner_id.includes('busy')) {
throw Error();
} else {
return { status: 204 };
}
});
mockOctokit.actions.deleteSelfHostedRunnerFromOrg.mockImplementation((repo) => {
// check if repo.runner_id contains the word "busy". If yes, throw an error else return 204
if (repo.runner_id.includes('busy')) {
throw Error();
} else {
return { status: 204 };
}
});
mockOctokit.actions.getSelfHostedRunnerForRepo.mockImplementation((repo) => {
if (repo.runner_id.includes('busy')) {
return {
data: { busy: true },
};
} else {
return {
data: { busy: false },
};
}
});
mockOctokit.actions.getSelfHostedRunnerForOrg.mockImplementation((repo) => {
if (repo.runner_id.includes('busy')) {
return {
data: { busy: true },
};
} else {
return {
data: { busy: false },
};
}
});
mockTerminateRunners.mockImplementation(async () => {
return;
});
mockedAppAuth.mockResolvedValue({
type: 'app',
token: 'token',
appId: 1,
expiresAt: 'some-date',
});
mockedInstallationAuth.mockResolvedValue({
type: 'token',
tokenType: 'installation',
token: 'token',
createdAt: 'some-date',
expiresAt: 'some-date',
permissions: {},
repositorySelection: 'all',
installationId: 0,
});
mockCreateClient.mockResolvedValue(new mocktokit());
});
const endpoints = ['https://api.github.com', 'https://github.enterprise.something', 'https://companyname.ghe.com'];
describe.each(endpoints)('for %s', (endpoint) => {
beforeEach(() => {
if (endpoint.includes('enterprise') || endpoint.endsWith('.ghe.com')) {
process.env.GHES_URL = endpoint;
}
});
type RunnerType = 'Repo' | 'Org';
const runnerTypes: RunnerType[] = ['Org', 'Repo'];
describe.each(runnerTypes)('For %s runners.', (type) => {
it('Should not call terminate when no runners online.', async () => {
// setup
mockAwsRunners([]);
// act
await scaleDown();
// assert
expect(listEC2Runners).toHaveBeenCalledWith({
environment: ENVIRONMENT,
});
expect(terminateRunner).not.toHaveBeenCalled();
expect(mockOctokit.apps.getRepoInstallation).not.toHaveBeenCalled();
expect(mockOctokit.apps.getRepoInstallation).not.toHaveBeenCalled();
});
it(`Should terminate runner without idle config ${type} runners.`, async () => {
// setup
const runners = [
createRunnerTestData('idle-1', type, MINIMUM_TIME_RUNNING_IN_MINUTES - 1, true, false, false),
createRunnerTestData('idle-2', type, MINIMUM_TIME_RUNNING_IN_MINUTES + 4, true, false, true),
createRunnerTestData('busy-1', type, MINIMUM_TIME_RUNNING_IN_MINUTES + 3, true, false, false),
createRunnerTestData('booting-1', type, MINIMUM_BOOT_TIME - 1, false, false, false),
];
mockGitHubRunners(runners);
mockListRunners.mockResolvedValue(runners);
mockAwsRunners(runners);
await scaleDown();
// assert
expect(listEC2Runners).toHaveBeenCalledWith({
environment: ENVIRONMENT,
});
if (type === 'Repo') {
expect(mockOctokit.apps.getRepoInstallation).toHaveBeenCalled();
} else {
expect(mockOctokit.apps.getOrgInstallation).toHaveBeenCalled();
}
checkTerminated(runners);
checkNonTerminated(runners);
});
it(`Should respect idle runner with minimum running time not exceeded.`, async () => {
// setup
const runners = [createRunnerTestData('idle-1', type, MINIMUM_TIME_RUNNING_IN_MINUTES - 1, true, false, false)];
mockGitHubRunners(runners);
mockAwsRunners(runners);
// act
await scaleDown();
// assert
checkTerminated(runners);
checkNonTerminated(runners);
});
it(`Should respect booting runner.`, async () => {
// setup
const runners = [createRunnerTestData('booting-1', type, MINIMUM_BOOT_TIME - 1, false, false, false)];
mockGitHubRunners(runners);
mockAwsRunners(runners);
// act
await scaleDown();
// assert
checkTerminated(runners);
checkNonTerminated(runners);
});
it(`Should respect busy runner.`, async () => {
// setup
const runners = [createRunnerTestData('busy-1', type, MINIMUM_TIME_RUNNING_IN_MINUTES + 1, true, false, false)];
mockGitHubRunners(runners);
mockAwsRunners(runners);
// act
await scaleDown();
// assert
checkTerminated(runners);
checkNonTerminated(runners);
});
it(`Should not terminate runner with bypass-removal tag set.`, async () => {
// setup
const runners = [
createRunnerTestData('idle-with-bypass', type, MINIMUM_TIME_RUNNING_IN_MINUTES + 10, true, false, false),
];
// Set bypass-removal tag
runners[0].bypassRemoval = true;
mockGitHubRunners(runners);
mockAwsRunners(runners);
// act
await scaleDown();
// assert
expect(terminateRunner).not.toHaveBeenCalled();
checkNonTerminated(runners);
});
it(`Should not terminate a runner that became busy just before deregister runner.`, async () => {
// setup
const runners = [
createRunnerTestData(
'job-just-start-at-deregister-1',
type,
MINIMUM_TIME_RUNNING_IN_MINUTES + 1,
true,
false,
false,
),
];
mockGitHubRunners(runners);
mockAwsRunners(runners);
mockOctokit.actions.deleteSelfHostedRunnerFromRepo.mockImplementation(() => {
return { status: 500 };
});
mockOctokit.actions.deleteSelfHostedRunnerFromOrg.mockImplementation(() => {
return { status: 500 };
});
// act and ensure no exception is thrown
await expect(scaleDown()).resolves.not.toThrow();
// assert
checkTerminated(runners);
checkNonTerminated(runners);
});
it(`Should not terminate a runner that became busy between deregister and post-deregister check.`, async () => {
// setup: runner appears idle on first check, deregister succeeds,
// but post-deregister re-check finds it busy (race condition)
const runners = [
createRunnerTestData(
'race-condition-1',
type,
MINIMUM_TIME_RUNNING_IN_MINUTES + 1,
true,
false,
false,
),
];
mockGitHubRunners(runners);
mockAwsRunners(runners);
// First call returns not-busy (pre-deregister), second returns busy (post-deregister)
let callCount = 0;
const busyCheckMock = () => {
callCount++;
if (callCount <= 1) {
return { data: { busy: false } };
}
return { data: { busy: true } };
};
mockOctokit.actions.getSelfHostedRunnerForRepo.mockImplementation(busyCheckMock);
mockOctokit.actions.getSelfHostedRunnerForOrg.mockImplementation(busyCheckMock);
// act
await expect(scaleDown()).resolves.not.toThrow();
// assert: runner should NOT be terminated
checkTerminated(runners);
checkNonTerminated(runners);
});
it(`Should terminate a runner when post-deregister busy check returns 404.`, async () => {
// setup: after deregistration, GitHub API returns 404 (runner fully removed)
const runners = [
createRunnerTestData(
'deregistered-404',
type,
MINIMUM_TIME_RUNNING_IN_MINUTES + 1,
true,
false,
true,
),
];
mockGitHubRunners(runners);
mockAwsRunners(runners);
// First call returns not-busy, second throws 404
let callCount = 0;
const busyCheckMock = () => {
callCount++;
if (callCount <= 1) {
return { data: { busy: false } };
}
const error = new Error('Not Found');
(error as any).status = 404;
Object.setPrototypeOf(error, RequestError.prototype);
throw error;
};
mockOctokit.actions.getSelfHostedRunnerForRepo.mockImplementation(busyCheckMock);
mockOctokit.actions.getSelfHostedRunnerForOrg.mockImplementation(busyCheckMock);
// act
await expect(scaleDown()).resolves.not.toThrow();
// assert: runner should be terminated (404 = not busy)
checkTerminated(runners);
checkNonTerminated(runners);
});
it(`Should terminate orphan (Non JIT)`, async () => {
// setup
const orphanRunner = createRunnerTestData('orphan-1', type, MINIMUM_BOOT_TIME + 1, false, false, false);
const idleRunner = createRunnerTestData('idle-1', type, MINIMUM_BOOT_TIME + 1, true, false, false);
const runners = [orphanRunner, idleRunner];
mockGitHubRunners([idleRunner]);
mockAwsRunners(runners);
// act
await scaleDown();
// assert
checkTerminated(runners);
checkNonTerminated(runners);
expect(mockTagRunners).toHaveBeenCalledWith(orphanRunner.instanceId, [
{
Key: 'ghr:orphan',
Value: 'true',
},
]);
expect(mockTagRunners).not.toHaveBeenCalledWith(idleRunner.instanceId, expect.anything());
// next cycle, update test data set orphan to true and terminate should be true
orphanRunner.orphan = true;
orphanRunner.shouldBeTerminated = true;
// act
await scaleDown();
// assert
checkTerminated(runners);
checkNonTerminated(runners);
});
it('Should test if orphaned runner, untag if online and busy, else terminate (JIT)', async () => {
// arrange
const orphanRunner = createRunnerTestData(
'orphan-jit',
type,
MINIMUM_BOOT_TIME + 1,
false,
true,
false,
undefined,
1234567890,
);
const runners = [orphanRunner];
mockGitHubRunners([]);
mockAwsRunners(runners);
if (type === 'Repo') {
mockOctokit.actions.getSelfHostedRunnerForRepo.mockResolvedValueOnce({
data: { id: 1234567890, name: orphanRunner.instanceId, busy: true, status: 'online' },
});
} else {
mockOctokit.actions.getSelfHostedRunnerForOrg.mockResolvedValueOnce({
data: { id: 1234567890, name: orphanRunner.instanceId, busy: true, status: 'online' },
});
}
// act
await scaleDown();
// assert
expect(mockUntagRunners).toHaveBeenCalledWith(orphanRunner.instanceId, [{ Key: 'ghr:orphan', Value: 'true' }]);
expect(mockTerminateRunners).not.toHaveBeenCalledWith(orphanRunner.instanceId);
// arrange
if (type === 'Repo') {
mockOctokit.actions.getSelfHostedRunnerForRepo.mockResolvedValueOnce({
data: { runnerId: 1234567890, name: orphanRunner.instanceId, busy: true, status: 'offline' },
});
} else {
mockOctokit.actions.getSelfHostedRunnerForOrg.mockResolvedValueOnce({
data: { runnerId: 1234567890, name: orphanRunner.instanceId, busy: true, status: 'offline' },
});
}
// act
await scaleDown();
// assert
expect(mockTerminateRunners).toHaveBeenCalledWith(orphanRunner.instanceId);
});
it('Should handle 404 error when checking orphaned runner (JIT) - treat as orphaned', async () => {
// arrange
const orphanRunner = createRunnerTestData(
'orphan-jit-404',
type,
MINIMUM_BOOT_TIME + 1,
false,
true,
true, // should be terminated when 404
undefined,
1234567890,
);
const runners = [orphanRunner];
mockGitHubRunners([]);
mockAwsRunners(runners);
// Mock 404 error response
const error404 = new RequestError('Runner not found', 404, {
request: {
method: 'GET',
url: 'https://api.github.com/test',
headers: {},
},
});
if (type === 'Repo') {
mockOctokit.actions.getSelfHostedRunnerForRepo.mockRejectedValueOnce(error404);
} else {
mockOctokit.actions.getSelfHostedRunnerForOrg.mockRejectedValueOnce(error404);
}
// act
await scaleDown();
// assert - should terminate since 404 means runner doesn't exist on GitHub
expect(mockTerminateRunners).toHaveBeenCalledWith(orphanRunner.instanceId);
});
it('Should handle 404 error when checking runner busy state - treat as not busy', async () => {
// arrange
const runner = createRunnerTestData(
'runner-404',
type,
MINIMUM_TIME_RUNNING_IN_MINUTES + 1,
true,
false,
true, // should be terminated since not busy due to 404
);
const runners = [runner];
mockGitHubRunners(runners);
mockAwsRunners(runners);
// Mock 404 error response for busy state check
const error404 = new RequestError('Runner not found', 404, {
request: {
method: 'GET',
url: 'https://api.github.com/test',
headers: {},
},
});
if (type === 'Repo') {
mockOctokit.actions.getSelfHostedRunnerForRepo.mockRejectedValueOnce(error404);
} else {
mockOctokit.actions.getSelfHostedRunnerForOrg.mockRejectedValueOnce(error404);
}
// act
await scaleDown();
// assert - should terminate since 404 means runner is not busy
checkTerminated(runners);
});
it('Should re-throw non-404 errors when checking runner state', async () => {
// arrange
const orphanRunner = createRunnerTestData(
'orphan-error',
type,
MINIMUM_BOOT_TIME + 1,
false,
true,
false,
undefined,
1234567890,
);
const runners = [orphanRunner];
mockGitHubRunners([]);
mockAwsRunners(runners);
// Mock non-404 error response
const error500 = new RequestError('Internal server error', 500, {
request: {
method: 'GET',
url: 'https://api.github.com/test',
headers: {},
},
});
if (type === 'Repo') {
mockOctokit.actions.getSelfHostedRunnerForRepo.mockRejectedValueOnce(error500);
} else {
mockOctokit.actions.getSelfHostedRunnerForOrg.mockRejectedValueOnce(error500);
}
// act & assert - should not throw because error handling is in terminateOrphan
await expect(scaleDown()).resolves.not.toThrow();
// Should not terminate since the error was not a 404
expect(terminateRunner).not.toHaveBeenCalledWith(orphanRunner.instanceId);
});
it(`Should ignore errors when termination orphan fails.`, async () => {
// setup
const orphanRunner = createRunnerTestData('orphan-1', type, MINIMUM_BOOT_TIME + 1, false, true, true);
const runners = [orphanRunner];
mockGitHubRunners([]);
mockAwsRunners(runners);
mockTerminateRunners.mockImplementation(() => {
throw new Error('Failed to terminate');
});
// act
await scaleDown();
// assert
checkTerminated(runners);
checkNonTerminated(runners);
});
describe('When orphan termination fails', () => {
it(`Should not throw in case of list runner exception.`, async () => {
// setup
const runners = [createRunnerTestData('orphan-1', type, MINIMUM_BOOT_TIME + 1, false, true, true)];
mockGitHubRunners([]);
mockListRunners.mockRejectedValueOnce(new Error('Failed to list runners'));
mockAwsRunners(runners);
// ac
await scaleDown();
// assert
checkNonTerminated(runners);
});
it(`Should not throw in case of terminate runner exception.`, async () => {
// setup
const runners = [createRunnerTestData('orphan-1', type, MINIMUM_BOOT_TIME + 1, false, true, true)];
mockGitHubRunners([]);
mockAwsRunners(runners);
mockTerminateRunners.mockRejectedValue(new Error('Failed to terminate'));
// act and ensure no exception is thrown
await scaleDown();
// assert
checkNonTerminated(runners);
});
});
it(`Should not terminate instance in case de-register fails.`, async () => {
// setup
const runners = [createRunnerTestData('idle-1', type, MINIMUM_TIME_RUNNING_IN_MINUTES + 1, true, false, false)];
mockOctokit.actions.deleteSelfHostedRunnerFromOrg.mockImplementation(() => {
return { status: 500 };
});
mockOctokit.actions.deleteSelfHostedRunnerFromRepo.mockImplementation(() => {
return { status: 500 };
});
mockGitHubRunners(runners);
mockAwsRunners(runners);
// act and should resolve
await expect(scaleDown()).resolves.not.toThrow();
// assert
checkTerminated(runners);
checkNonTerminated(runners);
});
it(`Should not throw an exception in case of failure during removing a runner.`, async () => {
// setup
const runners = [createRunnerTestData('idle-1', type, MINIMUM_TIME_RUNNING_IN_MINUTES + 1, true, true, false)];
mockOctokit.actions.deleteSelfHostedRunnerFromOrg.mockImplementation(() => {
throw new Error('Failed to delete runner');
});
mockOctokit.actions.deleteSelfHostedRunnerFromRepo.mockImplementation(() => {
throw new Error('Failed to delete runner');
});
mockGitHubRunners(runners);
mockAwsRunners(runners);
// act
await expect(scaleDown()).resolves.not.toThrow();
});
const evictionStrategies = ['oldest_first', 'newest_first'];
describe.each(evictionStrategies)('When idle config defined', (evictionStrategy) => {
const defaultConfig = {
idleCount: 1,
cron: '* * * * * *',
timeZone: 'Europe/Amsterdam',
evictionStrategy,
};
beforeEach(() => {
process.env.SCALE_DOWN_CONFIG = JSON.stringify([defaultConfig]);
});
it(`Should terminate based on the the idle config with ${evictionStrategy} eviction strategy`, async () => {
// setup
const runnerToTerminateTime =
evictionStrategy === 'oldest_first'
? MINIMUM_TIME_RUNNING_IN_MINUTES + 5
: MINIMUM_TIME_RUNNING_IN_MINUTES + 1;
const runners = [
createRunnerTestData('idle-1', type, MINIMUM_TIME_RUNNING_IN_MINUTES + 4, true, false, false),
createRunnerTestData('idle-to-terminate', type, runnerToTerminateTime, true, false, true),
];
mockGitHubRunners(runners);
mockAwsRunners(runners);
// act
await scaleDown();
// assert
const runnersToTerminate = runners.filter((r) => r.shouldBeTerminated);
for (const toTerminate of runnersToTerminate) {
expect(terminateRunner).toHaveBeenCalledWith(toTerminate.instanceId);
}
const runnersNotToTerminate = runners.filter((r) => !r.shouldBeTerminated);
for (const notTerminated of runnersNotToTerminate) {
expect(terminateRunner).not.toHaveBeenCalledWith(notTerminated.instanceId);
}
});
});
});
});
describe('When runners are sorted', () => {
const runners: RunnerInfo[] = [
{
instanceId: '1',
launchTime: moment(new Date()).subtract(1, 'minute').toDate(),
owner: 'owner',
type: 'type',
},
{
instanceId: '3',
launchTime: moment(new Date()).subtract(3, 'minute').toDate(),
owner: 'owner',
type: 'type',
},
{
instanceId: '2',
launchTime: moment(new Date()).subtract(2, 'minute').toDate(),
owner: 'owner',
type: 'type',
},
{
instanceId: '0',
launchTime: moment(new Date()).subtract(0, 'minute').toDate(),
owner: 'owner',
type: 'type',
},
];
it('Should sort runners descending for eviction strategy oldest first te keep the youngest.', () => {
runners.sort(oldestFirstStrategy);
expect(runners[0].instanceId).toEqual('0');
expect(runners[1].instanceId).toEqual('1');
expect(runners[2].instanceId).toEqual('2');
expect(runners[3].instanceId).toEqual('3');
});
it('Should sort runners ascending for eviction strategy newest first te keep oldest.', () => {
runners.sort(newestFirstStrategy);
expect(runners[0].instanceId).toEqual('3');
expect(runners[1].instanceId).toEqual('2');
expect(runners[2].instanceId).toEqual('1');
expect(runners[3].instanceId).toEqual('0');
});
it('Should sort runners with equal launch time.', () => {
const runnersTest = [...runners];
const same = moment(new Date()).subtract(4, 'minute').toDate();
runnersTest.push({
instanceId: '4',
launchTime: same,
owner: 'owner',
type: 'type',
});
runnersTest.push({
instanceId: '5',
launchTime: same,
owner: 'owner',
type: 'type',
});
runnersTest.sort(oldestFirstStrategy);
expect(runnersTest[3].launchTime).not.toEqual(same);
expect(runnersTest[4].launchTime).toEqual(same);
expect(runnersTest[5].launchTime).toEqual(same);
runnersTest.sort(newestFirstStrategy);
expect(runnersTest[3].launchTime).not.toEqual(same);
expect(runnersTest[1].launchTime).toEqual(same);
expect(runnersTest[0].launchTime).toEqual(same);
});
it('Should sort runners even when launch time is undefined.', () => {
const runnersTest = [
{
instanceId: '0',
launchTime: undefined,
owner: 'owner',
type: 'type',
},
{
instanceId: '1',
launchTime: moment(new Date()).subtract(3, 'minute').toDate(),
owner: 'owner',
type: 'type',
},
{
instanceId: '0',
launchTime: undefined,
owner: 'owner',
type: 'type',
},
];
runnersTest.sort(oldestFirstStrategy);
expect(runnersTest[0].launchTime).toBeUndefined();
expect(runnersTest[1].launchTime).toBeDefined();
expect(runnersTest[2].launchTime).not.toBeDefined();
});
});
});
function mockAwsRunners(runners: RunnerTestItem[]) {
mockListRunners.mockImplementation(async (filter) => {
return runners.filter((r) => !filter?.orphan || filter?.orphan === r.orphan);
});
}
function checkNonTerminated(runners: RunnerTestItem[]) {
const notTerminated = runners.filter((r) => !r.shouldBeTerminated);
for (const toTerminate of notTerminated) {
expect(terminateRunner).not.toHaveBeenCalledWith(toTerminate.instanceId);
}
}
function checkTerminated(runners: RunnerTestItem[]) {
const runnersToTerminate = runners.filter((r) => r.shouldBeTerminated);
expect(terminateRunner).toHaveBeenCalledTimes(runnersToTerminate.length);
for (const toTerminate of runnersToTerminate) {
expect(terminateRunner).toHaveBeenCalledWith(toTerminate.instanceId);
}
}
function mockGitHubRunners(runners: RunnerTestItem[]) {
mockOctokit.paginate.mockResolvedValue(
runners
.filter((r) => r.registered)
.map((r) => {
return {
id: r.instanceId,
name: r.instanceId,
};
}),
);
}
function createRunnerTestData(
name: string,
type: 'Org' | 'Repo',
minutesLaunchedAgo: number,
registered: boolean,
orphan: boolean,
shouldBeTerminated: boolean,
owner?: string,
runnerId?: number,
): RunnerTestItem {
return {
instanceId: `i-${name}-${type.toLowerCase()}`,
launchTime: moment(new Date()).subtract(minutesLaunchedAgo, 'minutes').toDate(),
type,
owner: owner
? owner
: type === 'Repo'
? `${TEST_DATA.repositoryOwner}/${TEST_DATA.repositoryName}`
: `${TEST_DATA.repositoryOwner}`,
registered,
orphan,
shouldBeTerminated,
runnerId: runnerId !== undefined ? String(runnerId) : undefined,
bypassRemoval: false,
};
}