-
-
Notifications
You must be signed in to change notification settings - Fork 197
/
Copy pathoptions.ts
325 lines (288 loc) · 11.6 KB
/
options.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
import { Errors } from "../lib/common/errors";
import { Yok } from "../lib/common/yok";
import { assert } from "chai";
import { Options } from "../lib/options";
let isExecutionStopped = false;
function createTestInjector(): IInjector {
const testInjector = new Yok();
testInjector.register("staticConfig", {
CLIENT_NAME: ""
});
testInjector.register("hostInfo", {});
testInjector.register("settingsService", {
setSettings: (settings: IConfigurationSettings): any => undefined,
getProfileDir: () => "profileDir"
});
return testInjector;
}
function createOptions(testInjector: IInjector): IOptions {
const options = testInjector.resolve(Options); // Validation is triggered in options's constructor
return options;
}
describe("options", () => {
let testInjector: IInjector;
beforeEach(() => {
testInjector = createTestInjector();
const errors = new Errors(testInjector);
errors.failWithoutHelp = <any>((message: string, ...args: any[]): void => {
isExecutionStopped = true;
});
errors.fail = <any>((message: string, ...args: any[]): void => {
isExecutionStopped = true;
});
testInjector.register("errors", errors);
isExecutionStopped = false;
});
describe("validateOptions", () => {
it("breaks execution when option is not valid", () => {
process.argv.push('--pathr');
process.argv.push("incorrect argument");
const options = createOptions(testInjector);
options.validateOptions();
process.argv.pop();
process.argv.pop();
assert.isTrue(isExecutionStopped);
});
it("breaks execution when valid option does not have value", () => {
process.argv.push('--path');
// If you do not pass value to an option, it's automatically set as true.
const options = createOptions(testInjector);
process.argv.pop();
options.validateOptions();
assert.isTrue(isExecutionStopped);
});
it("breaks execution when valid dashed option passed without dashes does not have value", () => {
process.argv.push('--keyStorePath');
// If you do not pass value to a string option, it's automatically set to "".
const options = createOptions(testInjector);
process.argv.pop();
options.validateOptions();
assert.isTrue(isExecutionStopped);
});
it("breaks execution when valid dashed option does not have value", () => {
process.argv.push('--key-store-path');
// If you do not pass value to an option, it's automatically set as true.
const options = createOptions(testInjector);
process.argv.pop();
options.validateOptions();
assert.isTrue(isExecutionStopped);
});
it("does not break execution when valid option has correct value", () => {
process.argv.push('--path');
process.argv.push("SomeDir");
const options = createOptions(testInjector);
options.validateOptions();
process.argv.pop();
process.argv.pop();
assert.isFalse(isExecutionStopped);
});
it("breaks execution when valid option has empty string value", () => {
process.argv.push('--path');
const options = createOptions(testInjector);
options.validateOptions();
process.argv.pop();
assert.isTrue(isExecutionStopped);
});
it("breaks execution when valid option has value with spaces only", () => {
process.argv.push('--path');
process.argv.push(' ');
const options = createOptions(testInjector);
options.validateOptions();
process.argv.pop();
process.argv.pop();
assert.isTrue(isExecutionStopped);
});
it("breaks execution when shorthand option is not valid", () => {
process.argv.push('-j');
process.argv.push('incorrect shorthand');
const options = createOptions(testInjector);
options.validateOptions();
process.argv.pop();
process.argv.pop();
assert.isTrue(isExecutionStopped);
});
it("does not break execution when valid shorthand option has correct value", () => {
process.argv.push('-v');
const options = createOptions(testInjector);
options.validateOptions();
process.argv.pop();
assert.isFalse(isExecutionStopped);
assert.isTrue(options.verbose);
});
// all numbers are changed to strings before calling validateOptions
it("does not break execution when valid option has number value", () => {
process.argv.push('--path');
process.argv.push('1');
const options = createOptions(testInjector);
options.validateOptions();
process.argv.pop();
process.argv.pop();
assert.isFalse(isExecutionStopped);
});
it("throws error when valid option has array value", () => {
process.argv.push('--path');
process.argv.push("value 1");
process.argv.push('--path');
process.argv.push("value 2");
const options = createOptions(testInjector);
options.validateOptions();
process.argv.pop();
process.argv.pop();
process.argv.pop();
process.argv.pop();
assert.isTrue(isExecutionStopped);
});
it("converts string value to array when option type is array", () => {
const options: any = createOptions(testInjector);
process.argv.push("--config");
process.argv.push("value");
options.validateOptions({ test1: { type: OptionType.Array } });
process.argv.pop();
process.argv.pop();
assert.isFalse(isExecutionStopped);
assert.deepEqual(["value"], <any>options["config"]);
});
it("does not break execution when valid commandSpecificOptions are passed", () => {
process.argv.push("--test1");
process.argv.push("value");
const options = createOptions(testInjector);
options.validateOptions({ test1: { type: OptionType.String, hasSensitiveValue: false } });
process.argv.pop();
process.argv.pop();
assert.isFalse(isExecutionStopped);
});
it("does not break execution when valid commandSpecificOptions are passed and user specifies globally valid option", () => {
const options = createOptions(testInjector);
process.argv.push("--version");
options.validateOptions({ test1: { type: OptionType.String, hasSensitiveValue: false } });
process.argv.pop();
assert.isFalse(isExecutionStopped);
});
it("breaks execution when valid array option has value with length 0", () => {
process.argv.push('--config');
const options = createOptions(testInjector);
options.validateOptions();
process.argv.pop();
assert.isTrue(isExecutionStopped);
});
describe("when commandSpecificOptions are passed", () => {
it("breaks execution when commandSpecificOptions are passed and user tries to use invalid option", () => {
process.argv.push("--invalidOption");
const options = testInjector.resolve(Options);
options.validateOptions({ test1: { type: OptionType.String } });
process.argv.pop();
assert.isTrue(isExecutionStopped);
});
it("does not break execution when commandSpecificOptions are passed and user tries to use option valid for CLI, but not for this command", () => {
process.argv.push("--watch");
const options = testInjector.resolve(Options);
options.validateOptions({ test1: { type: OptionType.String } });
process.argv.pop();
assert.isFalse(isExecutionStopped);
});
it("uses profile-dir from yargs when it exists and commandSpecificOptions are passed", () => {
const expectedProfileDir = "TestDir";
process.argv.push("--profile-dir");
process.argv.push(expectedProfileDir);
const settingsService = testInjector.resolve<ISettingsService>("settingsService");
let valuePassedToSetSettings: string;
settingsService.setSettings = (settings: IConfigurationSettings): any => {
valuePassedToSetSettings = settings.profileDir;
};
settingsService.getProfileDir = () => valuePassedToSetSettings;
const options = testInjector.resolve(Options);
options.validateOptions({ test1: { type: OptionType.String } });
assert.equal(options.profileDir, expectedProfileDir);
process.argv.pop();
process.argv.pop();
assert.isFalse(isExecutionStopped);
});
});
// when you pass --option with dash, yargs adds it to yargs.argv in two ways:
// for ex. '$ appbuilder login --profile-dir "some dir"' will add profile dir to yargs.argv as: profileDir and profile-dir
describe("validates dashed options correctly", () => {
it("does not break execution when dashed option with single dash is passed", () => {
process.argv.push("profile-dir");
process.argv.push("some dir");
const options = createOptions(testInjector);
options.validateOptions();
process.argv.pop();
process.argv.pop();
assert.isFalse(isExecutionStopped, "Dashed options should be validated in specific way. Make sure validation allows yargs specific behavior:" +
"Dashed options (profile-dir) are added to yargs.argv in two ways: profile-dir and profileDir");
});
it("does not break execution when dashed option with two dashes is passed", () => {
process.argv.push("key-store-path");
process.argv.push("some dir");
const options = createOptions(testInjector);
options.validateOptions();
process.argv.pop();
process.argv.pop();
assert.isFalse(isExecutionStopped, "Dashed options should be validated in specific way. Make sure validation allows yargs specific behavior:" +
"Dashed options (some-dashed-value) are added to yargs.argv in two ways: some-dashed-value and someDashedValue");
});
it("does not break execution when dashed option with two dashes is passed", () => {
process.argv.push("--special-dashed-v");
const options = createOptions(testInjector);
options.validateOptions({ specialDashedV: { type: OptionType.Boolean, hasSensitiveValue: false } });
process.argv.pop();
assert.isFalse(isExecutionStopped, "Dashed options should be validated in specific way. Make sure validation allows yargs specific behavior:" +
"Dashed options (special-dashed-v) are added to yargs.argv in two ways: special-dashed-v and specialDashedV");
});
});
});
});
function createOptionsWithProfileDir(defaultProfileDir?: string): IOptions {
const testInjector = new Yok();
testInjector.register("errors", {});
testInjector.register("staticConfig", {});
let valuePassedToSetSettings: string;
testInjector.register("settingsService", {
setSettings: (settings: IConfigurationSettings): any => {
valuePassedToSetSettings = settings.profileDir;
},
getProfileDir: () => valuePassedToSetSettings || defaultProfileDir
});
const options = testInjector.resolve(Options);
return options;
}
describe("common options profile-dir tests", () => {
describe("setProfileDir", () => {
it("uses profile-dir from yargs when it exists", () => {
const expectedProfileDir = "TestDir";
process.argv.push("--profile-dir");
process.argv.push(expectedProfileDir);
const options = createOptionsWithProfileDir();
options.validateOptions();
process.argv.pop();
process.argv.pop();
assert.equal(options.profileDir, expectedProfileDir);
});
it("sets default profile-dir when it is not passed on command line", () => {
const profileDir = "TestDir";
const options = createOptionsWithProfileDir(profileDir);
options.validateOptions();
assert.equal(options.profileDir, profileDir);
});
it("uses profile-dir from yargs when it exists even if default one has non-empty value", () => {
const expectedProfileDir = "TestDir";
process.argv.push("--profile-dir");
process.argv.push(expectedProfileDir);
const options = createOptionsWithProfileDir();
options.validateOptions();
process.argv.pop();
process.argv.pop();
assert.equal(options.profileDir, expectedProfileDir);
});
it("uses profileDir from yargs when it exists", () => {
const expectedProfileDir = "TestDir";
process.argv.push("--profileDir");
process.argv.push(expectedProfileDir);
const options = createOptionsWithProfileDir();
options.validateOptions();
process.argv.pop();
process.argv.pop();
assert.equal(options.profileDir, expectedProfileDir);
});
});
});