-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtest.ts
65 lines (61 loc) · 2.81 KB
/
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
/*
* Copyright (c) 2019, salesforce.com, inc.
* All rights reserved.
* Licensed under the BSD 3-Clause license.
* For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
*/
import { Flags, loglevel, SfCommand, orgApiVersionFlagWithDeprecations, Ux } from '@salesforce/sf-plugins-core';
import { CreateOutput, LightningTestOptions, TemplateType } from '@salesforce/templates';
import { CreateUtil } from '@salesforce/templates/lib/utils/index.js';
import { Messages } from '@salesforce/core';
import { getCustomTemplates, runGenerator } from '../../../utils/templateCommand.js';
import { internalFlag, outputDirFlagLightning } from '../../../utils/flags.js';
const lightningTestFileSuffix = /.resource$/;
Messages.importMessagesDirectoryFromMetaUrl(import.meta.url);
const messages = Messages.loadMessages('@salesforce/plugin-templates', 'lightningTest');
const lightningMessages = Messages.loadMessages('@salesforce/plugin-templates', 'lightning');
export default class LightningTest extends SfCommand<CreateOutput> {
public static readonly summary = messages.getMessage('summary');
public static readonly description = messages.getMessage('description');
public static readonly examples = messages.getMessages('examples');
public static readonly aliases = ['force:lightning:test:create'];
public static readonly deprecateAliases = true;
public static readonly flags = {
name: Flags.string({
char: 'n',
summary: lightningMessages.getMessage('flags.name.summary', ['Test']),
description: messages.getMessage('flags.name.description'),
required: true,
aliases: ['testname'],
deprecateAliases: true,
}),
template: Flags.string({
char: 't',
summary: lightningMessages.getMessage('flags.template.summary'),
description: lightningMessages.getMessage('flags.template.description'),
default: 'DefaultLightningTest',
options: CreateUtil.getCommandTemplatesForFiletype(lightningTestFileSuffix, 'lightningtest'),
}),
'output-dir': outputDirFlagLightning,
internal: internalFlag,
'api-version': orgApiVersionFlagWithDeprecations,
loglevel,
};
public async run(): Promise<CreateOutput> {
const { flags } = await this.parse(LightningTest);
// translate the new flags to the old ones the generator expects
const flagsAsOptions: LightningTestOptions = {
testname: flags.name,
template: 'DefaultLightningTest' as LightningTestOptions['template'],
outputdir: flags['output-dir'],
internal: flags.internal,
apiversion: flags['api-version'],
};
return runGenerator({
templateType: TemplateType.LightningTest,
opts: flagsAsOptions,
ux: new Ux({ jsonEnabled: this.jsonEnabled() }),
templates: getCustomTemplates(this.configAggregator),
});
}
}