forked from fern-api/fern
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcli.ts
733 lines (691 loc) · 31.3 KB
/
cli.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
import { AbsoluteFilePath, join, RelativeFilePath } from "@fern-api/fs-utils";
import { CONSOLE_LOGGER, LogLevel, LOG_LEVELS } from "@fern-api/logger";
import { askToLogin } from "@fern-api/login";
import { FernRegistryClient as FdrClient } from "@fern-fern/generators-sdk";
import { writeFile } from "fs/promises";
import yargs, { Argv } from "yargs";
import { hideBin } from "yargs/helpers";
import { getLatestCli } from "./commands/latest/getLatestCli";
import { getLatestGenerator } from "./commands/latest/getLatestGenerator";
import { publishCli } from "./commands/publish/publishCli";
import { publishGenerator } from "./commands/publish/publishGenerator";
import { registerCliRelease } from "./commands/register/registerCliRelease";
import { registerGenerator } from "./commands/register/registerGenerator";
import { runWithCustomFixture } from "./commands/run/runWithCustomFixture";
import { ScriptRunner } from "./commands/test/ScriptRunner";
import { TaskContextFactory } from "./commands/test/TaskContextFactory";
import { DockerTestRunner, LocalTestRunner } from "./commands/test/test-runner";
import { FIXTURES, testGenerator } from "./commands/test/testWorkspaceFixtures";
import { validateCliRelease } from "./commands/validate/validateCliChangelog";
import { validateGenerator } from "./commands/validate/validateGeneratorChangelog";
import { GeneratorWorkspace, loadGeneratorWorkspaces } from "./loadGeneratorWorkspaces";
import { Semaphore } from "./Semaphore";
import { generateCliChangelog } from "./commands/generate/generateCliChangelog";
import { generateGeneratorChangelog } from "./commands/generate/generateGeneratorChangelog";
void tryRunCli();
export async function tryRunCli(): Promise<void> {
const cli: Argv = yargs(hideBin(process.argv))
.strict()
.fail((message, error: unknown, argv) => {
// if error is null, it's a yargs validation error
if (error == null) {
argv.showHelp();
// eslint-disable-next-line
console.error(message);
}
});
addTestCommand(cli);
addRunCommand(cli);
addRegisterCommands(cli);
addPublishCommands(cli);
addValidateCommands(cli);
addLatestCommands(cli);
addGenerateCommands(cli);
await cli.parse();
}
function addTestCommand(cli: Argv) {
cli.command(
"test",
"Run all snapshot tests for the generators",
(yargs) =>
yargs
.option("generator", {
type: "array",
string: true,
demandOption: false,
alias: "g",
description: "The generators to run tests for"
})
.option("parallel", {
type: "number",
default: 4,
alias: "p"
})
.option("fixture", {
type: "array",
string: true,
default: FIXTURES,
choices: FIXTURES,
demandOption: false,
description: "Runs on all fixtures if not provided"
})
.option("outputFolder", {
string: true,
demandOption: false,
description: "Runs on a specific output folder. Only relevant if there are >1 folders configured."
})
.option("keepDocker", {
type: "boolean",
demandOption: false,
default: false,
description: "Keeps the docker container after the tests are finished"
})
.option("skip-scripts", {
type: "boolean",
demandOption: false,
default: false
})
.option("local", {
type: "boolean",
demandOption: false,
default: false
})
.option("log-level", {
default: LogLevel.Info,
choices: LOG_LEVELS
}),
async (argv) => {
const generators = await loadGeneratorWorkspaces();
if (argv.generator != null) {
throwIfGeneratorDoesNotExist({ seedWorkspaces: generators, generators: argv.generator });
}
const taskContextFactory = new TaskContextFactory(argv["log-level"]);
const lock = new Semaphore(argv.parallel);
const tests: Promise<boolean>[] = [];
const scriptRunners: ScriptRunner[] = [];
for (const generator of generators) {
if (argv.generator != null && !argv.generator.includes(generator.workspaceName)) {
continue;
}
let testRunner;
const scriptRunner = new ScriptRunner(
generator,
argv.skipScripts,
taskContextFactory.create("script-runner")
);
if (argv.local && generator.workspaceConfig.test.local != null) {
testRunner = new LocalTestRunner({
generator,
lock,
taskContextFactory,
skipScripts: argv.skipScripts,
scriptRunner,
keepDocker: false // dummy
});
} else {
testRunner = new DockerTestRunner({
generator,
lock,
taskContextFactory,
skipScripts: argv.skipScripts,
keepDocker: argv.keepDocker,
scriptRunner
});
}
tests.push(
testGenerator({
generator,
runner: testRunner,
fixtures: argv.fixture,
outputFolder: argv.outputFolder
})
);
}
const results = await Promise.all(tests);
for (const scriptRunner of scriptRunners) {
await scriptRunner.stop();
}
// If any of the tests failed, exit with a non-zero status code
if (results.includes(false)) {
process.exit(1);
}
}
);
}
function addRunCommand(cli: Argv) {
cli.command(
"run",
"Runs the generator on the given input",
(yargs) =>
yargs
.option("generator", {
string: true,
demandOption: true,
description: "Generator to run"
})
.option("path", {
type: "string",
string: true,
demandOption: true,
description: "Path to the fern definition"
})
.option("log-level", {
default: LogLevel.Info,
choices: LOG_LEVELS
})
.option("audience", {
string: true,
demandOption: false
}),
async (argv) => {
const generators = await loadGeneratorWorkspaces();
throwIfGeneratorDoesNotExist({ seedWorkspaces: generators, generators: [argv.generator] });
const generator = generators.find((g) => g.workspaceName === argv.generator);
if (generator == null) {
throw new Error(
`Generator ${argv.generator} not found. Please make sure that there is a folder with the name ${argv.generator} in the seed directory.`
);
}
await runWithCustomFixture({
pathToFixture: argv.path.startsWith("/")
? AbsoluteFilePath.of(argv.path)
: join(AbsoluteFilePath.of(process.cwd()), RelativeFilePath.of(argv.path)),
workspace: generator,
logLevel: argv["log-level"],
audience: argv.audience
});
}
);
}
function addPublishCommands(cli: Argv) {
cli.command("publish", "Publish releases", (yargs) => {
yargs
.command(
"cli",
"Publishes all latest versions the CLI to NPM.",
(yargs) =>
yargs
// Version is a reserved option in yargs...
.option("ver", {
type: "string",
demandOption: false
})
.option("changelog", {
type: "string",
demandOption: false,
description:
"Path to the latest changelog file, used along side `previous-changelog` to the most recent new version to publish."
})
.option("previous-changelog", {
type: "string",
demandOption: false,
description:
"Path to the previous changelog file, used along side `changelog` to the most recent new version to publish."
})
.option("log-level", {
default: LogLevel.Info,
choices: LOG_LEVELS
})
.option("dev", {
type: "boolean",
default: false,
demandOption: false
})
.check((argv) => {
return (
// Check: Either version or changelog and previousChangelog must be provided
argv.ver || (argv.changelog && argv.previousChangelog)
);
}),
async (argv) => {
const taskContextFactory = new TaskContextFactory(argv["log-level"]);
const context = taskContextFactory.create("Publish");
await publishCli({
version: argv.ver
? argv.ver
: {
// These assertions should be safe given the check with `yargs` above
//
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
latestChangelogPath: argv.changelog!,
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
previousChangelogPath: argv.previousChangelog!
},
context,
isDevRelease: argv.dev
});
}
)
.command(
"generator <generator>",
"Publishes all latest versions of the generators to DockerHub unless otherwise specified. To filter to certain generators pass in the generator IDs as a positional, space delimited list.",
(yargs) =>
yargs
.positional("generator", {
type: "string",
demandOption: true,
description: "Generator(s) to register"
})
// Version is a reserved option in yargs...
.option("ver", {
type: "string",
demandOption: false
})
.option("changelog", {
type: "string",
demandOption: false,
description:
"Path to the latest changelog file, used along side `previous-changelog` to the most recent new version to publish."
})
.option("previous-changelog", {
type: "string",
demandOption: false,
description:
"Path to the previous changelog file, used along side `changelog` to the most recent new version to publish."
})
.option("log-level", {
default: LogLevel.Info,
choices: LOG_LEVELS
})
.check((argv) => {
return (
// Check: Either version or changelog and previousChangelog must be provided
argv.ver || (argv.changelog && argv.previousChangelog)
);
}),
async (argv) => {
const generators = await loadGeneratorWorkspaces();
if (argv.generators != null) {
throwIfGeneratorDoesNotExist({ seedWorkspaces: generators, generators: [argv.generator] });
}
const taskContextFactory = new TaskContextFactory(argv["log-level"]);
const context = taskContextFactory.create("Publish");
const maybeGeneratorWorkspace = generators.find((g) => g.workspaceName === argv.generator);
if (maybeGeneratorWorkspace == null) {
context.failAndThrow(`Specified generator ${argv.generator} not found.`);
return;
}
await publishGenerator({
generator: maybeGeneratorWorkspace,
version: argv.ver
? argv.ver
: {
// These assertions should be safe given the check with `yargs` above
//
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
latestChangelogPath: argv.changelog!,
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
previousChangelogPath: argv.previousChangelog!
},
context
});
}
);
});
}
function addRegisterCommands(cli: Argv) {
cli.command("register", "Register releases within FDR's database", (yargs) => {
yargs
.command(
"cli",
"Registers CLI releases",
(addtlYargs) =>
addtlYargs.option("log-level", {
default: LogLevel.Info,
choices: LOG_LEVELS
}),
async (argv) => {
const taskContextFactory = new TaskContextFactory(argv["log-level"]);
const context = taskContextFactory.create("Register");
const token = await askToLogin(context);
const fdrClient = createFdrService({ token: token.value });
await registerCliRelease({
fdrClient,
context
});
}
)
.command(
"generator",
"Registers all of the generators to FDR unless otherwise specified. To filter to certain generators pass in the generator ids to `--generators`, space delimited list.",
(yargs) =>
yargs
// This would ideally be positional, but you can't have positional arguments that are arrays with yargs
.option("generators", {
array: true,
type: "string",
demandOption: false,
description: "Generator(s) to register"
})
.option("log-level", {
default: LogLevel.Info,
choices: LOG_LEVELS
}),
async (argv) => {
const generators = await loadGeneratorWorkspaces();
if (argv.generators != null) {
throwIfGeneratorDoesNotExist({ seedWorkspaces: generators, generators: argv.generators });
}
const taskContextFactory = new TaskContextFactory(argv["log-level"]);
const context = taskContextFactory.create("Register");
const token = await askToLogin(context);
const fdrClient = createFdrService({ token: token.value });
for (const generator of generators) {
// If you've specified a list of generators, and the current generator is not in that list, skip it
if (argv.generators != null && !argv.generators.includes(generator.workspaceName)) {
continue;
}
// Register the generator and it's versions
await registerGenerator({
generator,
fdrClient,
context
});
}
}
);
});
}
function addLatestCommands(cli: Argv) {
cli.command("latest", "Get latest release", (yargs) => {
yargs
.command(
"cli",
"Get latest CLI release.",
(yargs) =>
yargs
.option("log-level", {
default: LogLevel.Info,
choices: LOG_LEVELS
})
.option("output", {
alias: "o",
type: "string",
demandOption: false
})
.option("changelog", {
type: "string",
demandOption: false,
description:
"Path to the latest changelog file, used along side `previous-changelog` to get the most recent new version."
})
.option("previous-changelog", {
type: "string",
demandOption: false,
description:
"Path to the previous changelog file, used along side `changelog` to get the most recent new version."
})
.check((argv) => {
return (
(!argv.changelog && !argv.previousChangelog) ||
(argv.changelog && argv.previousChangelog)
);
}),
async (argv) => {
const taskContextFactory = new TaskContextFactory(argv["log-level"]);
const context = taskContextFactory.create("Publish");
const ver = await getLatestCli({
context,
maybeChangelogs:
argv.changelog && argv.previousChangelog
? {
latestChangelogPath: argv.changelog!,
previousChangelogPath: argv.previousChangelog!
}
: undefined
});
if (ver == null) {
context.logger.error("No latest version found for CLI");
return;
}
if (argv.output) {
await writeFile(argv.output, ver);
} else {
process.stdout.write(ver);
}
}
)
.command(
"generator <generator>",
"Get latest release of the specified generator.",
(yargs) =>
yargs
.positional("generator", {
type: "string",
demandOption: true,
description: "Generator(s) to register"
})
.option("log-level", {
default: LogLevel.Info,
choices: LOG_LEVELS
})
.option("output", {
alias: "o",
type: "string",
demandOption: false
}),
async (argv) => {
const generators = await loadGeneratorWorkspaces();
if (argv.generators != null) {
throwIfGeneratorDoesNotExist({ seedWorkspaces: generators, generators: [argv.generator] });
}
const taskContextFactory = new TaskContextFactory(argv["log-level"]);
const context = taskContextFactory.create("Publish");
const maybeGeneratorWorkspace = generators.find((g) => g.workspaceName === argv.generator);
if (maybeGeneratorWorkspace == null) {
context.failAndThrow(`Specified generator ${argv.generator} not found.`);
return;
}
const ver = await getLatestGenerator({
generator: maybeGeneratorWorkspace,
context
});
if (ver == null) {
context.logger.error(`No latest version found for generator ${argv.generator}`);
return;
}
if (argv.output) {
await writeFile(argv.output, ver);
} else {
process.stdout.write(ver);
}
}
);
});
}
function addValidateCommands(cli: Argv) {
cli.command("validate", "Validate your changelog file", (yargs) => {
yargs
.command(
"cli",
"validate CLI releases",
(addtlYargs) =>
addtlYargs.option("log-level", {
default: LogLevel.Info,
choices: LOG_LEVELS
}),
async (argv) => {
const taskContextFactory = new TaskContextFactory(argv["log-level"]);
const context = taskContextFactory.create("CLI");
await validateCliRelease({
context
});
}
)
.command(
"generator <generator>",
"validate generator releases.",
(yargs) =>
yargs
.positional("generator", {
type: "string",
demandOption: true,
description: "Generator who's changelog you want to validate"
})
.option("log-level", {
default: LogLevel.Info,
choices: LOG_LEVELS
}),
async (argv) => {
const generators = await loadGeneratorWorkspaces();
if (argv.generator != null) {
throwIfGeneratorDoesNotExist({ seedWorkspaces: generators, generators: [argv.generator] });
}
const taskContextFactory = new TaskContextFactory(argv["log-level"]);
for (const generator of generators) {
// If you've specified a list of generators, and the current generator is not in that list, skip it
if (argv.generator !== generator.workspaceName) {
continue;
}
// Register the generator and it's versions
await validateGenerator({
generator,
context: taskContextFactory.create(argv.generator)
});
}
}
);
});
}
function addGenerateCommands(cli: Argv) {
cli.command("generate", "generate artifacts based on your seed declarations", (yargs) => {
yargs.command("changelog", "generate a changelog in the Fern Docs format", (tlYargs) => {
tlYargs
.command(
"cli",
"Generate a changelog for CLI releases",
(addtlYargs) =>
addtlYargs
.option("log-level", {
default: LogLevel.Info,
choices: LOG_LEVELS
})
.option("output", {
alias: "o",
description:
"Path to write the changelog to, if not provided, will write to cwd. Note this should be a directory, not a filename.",
string: true,
demandOption: false
})
.option("clean-directory", {
type: "boolean",
demandOption: false,
description:
"If true, we will delete the contents of the output directory before generating the changelog."
}),
async (argv) => {
const taskContextFactory = new TaskContextFactory(argv["log-level"]);
const context = taskContextFactory.create("Changelog");
const token = await askToLogin(context);
const fdrClient = createFdrService({ token: token.value });
await generateCliChangelog({
context,
outputPath: argv.output,
fdrClient,
cleanOutputDirectory: argv.cleanDirectory ?? false
});
}
)
.command(
"generator",
"Generate a changelog for generator releases.",
(yargs) =>
yargs
// This would ideally be positional, but you can't have positional arguments that are arrays with yargs
.option("generators", {
array: true,
type: "string",
demandOption: false,
description: "Generator(s) to register"
})
.option("output", {
alias: "o",
description:
"Path to write the changelog to, if not provided, will write to cwd. Note this should be a directory, not a filename.",
string: true,
demandOption: false
})
.option("log-level", {
default: LogLevel.Info,
choices: LOG_LEVELS
})
.option("clean-directory", {
type: "boolean",
demandOption: false,
description:
"If true, we will delete the contents of the output directory before generating the changelog."
}),
async (argv) => {
const generators = await loadGeneratorWorkspaces();
if (argv.generators != null) {
throwIfGeneratorDoesNotExist({ seedWorkspaces: generators, generators: argv.generators });
}
const taskContextFactory = new TaskContextFactory(argv["log-level"]);
const context = taskContextFactory.create("Changelog");
const token = await askToLogin(context);
const fdrClient = createFdrService({ token: token.value });
for (const generator of generators) {
// If you've specified a list of generators, and the current generator is not in that list, skip it
if (argv.generators != null && !argv.generators.includes(generator.workspaceName)) {
continue;
}
let outputPath = argv.output;
if (argv.generators == null || argv.generators?.length > 1) {
outputPath = join(
RelativeFilePath.of(argv.output ?? "./"),
RelativeFilePath.of(generator.workspaceName)
);
}
await generateGeneratorChangelog({
context,
generator,
outputPath,
fdrClient,
cleanOutputDirectory: argv.cleanDirectory ?? false
});
}
}
);
});
});
}
function throwIfGeneratorDoesNotExist({
seedWorkspaces,
generators
}: {
seedWorkspaces: GeneratorWorkspace[];
generators: string[];
}) {
const generatorNames = new Set(
seedWorkspaces.map((gen) => {
return gen.workspaceName;
})
);
const missingGenerators = [];
for (const generator of generators) {
if (!generatorNames.has(generator)) {
missingGenerators.push(generator);
}
}
if (missingGenerators.length > 0) {
throw new Error(
`Generators ${missingGenerators.join(
", "
)} not found. Please make sure that there is a folder with those names in the seed directory.`
);
}
}
// Dummy clone of the function from @fern-api/core
// because we're using different SDKs for these packages
function createFdrService({
environment = process.env.DEFAULT_FDR_ORIGIN ?? "https://registry.buildwithfern.com",
token
}: {
environment?: string;
token: (() => string) | string;
}): FdrClient {
return new FdrClient({
environment,
token
});
}