-
-
Notifications
You must be signed in to change notification settings - Fork 201
Expand file tree
/
Copy pathyok.ts
More file actions
1205 lines (1019 loc) · 33.1 KB
/
yok.ts
File metadata and controls
1205 lines (1019 loc) · 33.1 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
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 { assert } from "chai";
import { injector, setGlobalInjector, Yok } from "../../yok";
import * as path from "path";
import * as fs from "fs";
import { mkdtempSync } from "fs";
import { tmpdir } from "os";
import * as _ from "lodash";
import * as fc from "fast-check";
import { ICliGlobal } from "../../definitions/cli-global";
import { ICommandParameter } from "../../definitions/commands";
import { IInjector } from "../../definitions/yok";
class MyClass {
constructor(
private x: string,
public y: any,
) {}
public checkX(): void {
assert.strictEqual(this.x, "foo");
}
}
describe("yok", () => {
describe("functions", () => {
it("resolves pre-constructed singleton", () => {
setGlobalInjector(new Yok());
const obj = {};
injector.register("foo", obj);
const resolved = injector.resolve("foo");
assert.strictEqual(obj, resolved);
});
it("resolves given constructor", () => {
setGlobalInjector(new Yok());
let obj: any;
injector.register("foo", () => {
obj = { foo: "foo" };
return obj;
});
const resolved = injector.resolve("foo");
assert.strictEqual(resolved, obj);
});
it("resolves constructed singleton", () => {
setGlobalInjector(new Yok());
injector.register("foo", { foo: "foo" });
const r1 = injector.resolve("foo");
const r2 = injector.resolve("foo");
assert.strictEqual(r1, r2);
});
it("injects directly into passed constructor", () => {
setGlobalInjector(new Yok());
const obj = {};
injector.register("foo", obj);
function Test(foo: any) {
this.foo = foo;
}
const result = injector.resolve(Test);
assert.strictEqual(obj, result.foo);
});
it("injects directly into passed constructor, ES6 lambda", () => {
setGlobalInjector(new Yok());
const obj = {};
let resultFoo: any = null;
injector.register("foo", obj);
const Test = (foo: any) => {
resultFoo = foo;
};
injector.resolve(Test);
assert.strictEqual(obj, resultFoo);
});
it("injects directly into passed constructor, ES6 lambda, constructor args", () => {
setGlobalInjector(new Yok());
const obj = {};
const expectedBar = {};
let resultFoo: any = null;
let resultBar: any = null;
injector.register("foo", obj);
const Test = (foo: any, bar: any) => {
resultFoo = foo;
resultBar = bar;
};
injector.resolve(Test, { bar: expectedBar });
assert.strictEqual(obj, resultFoo);
assert.strictEqual(expectedBar, resultBar);
});
it("inject dependency into registered constructor", () => {
setGlobalInjector(new Yok());
const obj = {};
injector.register("foo", obj);
function Test(foo: any) {
this.foo = foo;
}
injector.register("test", Test);
const result = injector.resolve("test");
assert.strictEqual(obj, result.foo);
});
it("inject dependency into registered constructor, ES6 lambda", () => {
setGlobalInjector(new Yok());
const obj = {};
let resultFoo: any = null;
injector.register("foo", obj);
const Test = (foo: any) => {
resultFoo = foo;
};
injector.register("test", Test);
injector.resolve("test");
assert.strictEqual(obj, resultFoo);
});
it("inject dependency into registered constructor, ES6 lambda, constructor args", () => {
setGlobalInjector(new Yok());
const obj = {};
const expectedBar = {};
let resultFoo: any = null;
let resultBar: any = null;
injector.register("foo", obj);
const Test = (foo: any, bar: any) => {
resultFoo = foo;
resultBar = bar;
};
injector.register("test", Test);
injector.resolve("test", { bar: expectedBar });
assert.strictEqual(obj, resultFoo);
assert.strictEqual(expectedBar, resultBar);
});
it("inject dependency with $ prefix", () => {
setGlobalInjector(new Yok());
const obj = {};
injector.register("foo", obj);
function Test($foo: any) {
this.foo = $foo;
}
const result = injector.resolve(Test);
assert.strictEqual(obj, result.foo);
});
it("inject into TS constructor", () => {
setGlobalInjector(new Yok());
injector.register("x", "foo");
injector.register("y", 123);
const result = <MyClass>injector.resolve(MyClass);
assert.strictEqual(result.y, 123);
result.checkX();
});
it("resolves a parameterless constructor", () => {
setGlobalInjector(new Yok());
function Test() {
this.foo = "foo";
}
const result = injector.resolve(Test);
assert.equal(result.foo, "foo");
});
it("returns null when it can't resolve a command", () => {
setGlobalInjector(new Yok());
const command = injector.resolveCommand("command");
assert.isNull(command);
});
it("throws when it can't resolve a registered command", () => {
setGlobalInjector(new Yok());
function Command(whatever: any) {
/* intentionally left blank */
}
injector.registerCommand("command", Command);
assert.throws(() => injector.resolveCommand("command"));
});
it("disposes", () => {
setGlobalInjector(new Yok());
function Thing() {
/* intentionally left blank */
}
Thing.prototype.dispose = function () {
this.disposed = true;
};
injector.register("thing", Thing);
const thing = injector.resolve("thing");
injector.dispose();
assert.isTrue(thing.disposed);
});
it("disposes all instances", () => {
setGlobalInjector(new Yok());
function Thing(arg: string) {
this.arg = arg; /* intentionally left blank */
}
Thing.prototype.dispose = function () {
this.disposed = true;
};
injector.register("thing", Thing, false);
const thing1 = injector.resolve("thing", { arg: "thing1" });
const thing2 = injector.resolve("thing", { arg: "thing2" });
const thing3 = injector.resolve("thing", { arg: "thing3" });
assert.equal(thing1.arg, "thing1");
assert.equal(thing2.arg, "thing2");
assert.equal(thing3.arg, "thing3");
injector.dispose();
assert.isTrue(thing1.disposed);
assert.isTrue(thing2.disposed);
assert.isTrue(thing3.disposed);
});
});
describe("classes", () => {
it("resolves pre-constructed singleton", () => {
setGlobalInjector(new Yok());
const obj = {};
injector.register("foo", obj);
const resolved = injector.resolve("foo");
assert.strictEqual(obj, resolved);
});
it("resolves given constructor", () => {
setGlobalInjector(new Yok());
let obj: any;
injector.register("foo", () => {
obj = { foo: "foo" };
return obj;
});
const resolved = injector.resolve("foo");
assert.strictEqual(resolved, obj);
});
it("resolves constructed singleton", () => {
setGlobalInjector(new Yok());
injector.register("foo", { foo: "foo" });
const r1 = injector.resolve("foo");
const r2 = injector.resolve("foo");
assert.strictEqual(r1, r2);
});
it("injects directly into passed constructor", () => {
setGlobalInjector(new Yok());
const obj = {};
injector.register("foo", obj);
class Test {
public foo: any;
constructor(foo: any) {
this.foo = foo;
}
}
const result = injector.resolve(Test);
assert.strictEqual(obj, result.foo);
});
it("injects directly into passed constructor, constructor args", () => {
setGlobalInjector(new Yok());
const obj = {};
const expectedBar = {};
injector.register("foo", obj);
class Test {
public foo: any;
public bar: any;
constructor(foo: any, bar: any) {
this.foo = foo;
this.bar = bar;
}
}
const result = injector.resolve(Test, { bar: expectedBar });
assert.strictEqual(obj, result.foo);
assert.strictEqual(expectedBar, result.bar);
});
it("inject dependency into registered constructor", () => {
setGlobalInjector(new Yok());
const obj = {};
injector.register("foo", obj);
class Test {
public foo: any;
constructor(foo: any) {
this.foo = foo;
}
}
injector.register("test", Test);
const result = injector.resolve("test");
assert.strictEqual(obj, result.foo);
});
it("inject dependency into registered constructor, constructor args", () => {
setGlobalInjector(new Yok());
const obj = {};
const expectedBar = {};
injector.register("foo", obj);
class Test {
public foo: any;
public bar: any;
constructor(foo: any, bar: any) {
this.foo = foo;
this.bar = bar;
}
}
injector.register("test", Test);
const result = injector.resolve("test", { bar: expectedBar });
assert.strictEqual(obj, result.foo);
assert.strictEqual(expectedBar, result.bar);
});
it("inject dependency with $ prefix", () => {
setGlobalInjector(new Yok());
const obj = {};
injector.register("foo", obj);
class Test {
public foo: any;
constructor($foo: any) {
this.foo = $foo;
}
}
const result = injector.resolve(Test);
assert.strictEqual(obj, result.foo);
});
it("inject into TS constructor", () => {
setGlobalInjector(new Yok());
injector.register("x", "foo");
injector.register("y", 123);
const result = <MyClass>injector.resolve(MyClass);
assert.strictEqual(result.y, 123);
result.checkX();
});
it("resolves a parameterless constructor", () => {
setGlobalInjector(new Yok());
class Test {
public foo: any;
constructor() {
this.foo = "foo";
}
}
const result = injector.resolve(Test);
assert.equal(result.foo, "foo");
});
it("returns null when it can't resolve a command", () => {
setGlobalInjector(new Yok());
const command = injector.resolveCommand("command");
assert.isNull(command);
});
it("throws when it can't resolve a registered command", () => {
setGlobalInjector(new Yok());
class Command {
constructor(whatever: any) {
/* intentionally left blank */
}
}
injector.registerCommand("command", Command);
assert.throws(() => injector.resolveCommand("command"));
});
it("disposes", () => {
setGlobalInjector(new Yok());
class Thing {
public disposed = false;
public dispose() {
this.disposed = true;
}
}
injector.register("thing", Thing);
const thing = injector.resolve("thing");
injector.dispose();
assert.isTrue(thing.disposed);
});
});
it("throws error when module is required more than once and overrideAlreadyRequiredModule is false", () => {
setGlobalInjector(new Yok());
injector.require("foo", "test");
injector.overrideAlreadyRequiredModule = false;
assert.throws(() => injector.require("foo", "test2"));
});
it("overrides module when it is required more than once and overrideAlreadyRequiredModule is true", () => {
setGlobalInjector(new Yok());
const cliGlobal = <ICliGlobal>(<unknown>global);
const injectorCache = cliGlobal.$injector;
cliGlobal.$injector = injector;
const tmpDirA = mkdtempSync(
path.join(tmpdir(), "overrideAlreadyRequiredModule_fileA-"),
);
const tmpPathA = path.join(tmpDirA, "fileA.js");
fs.writeFileSync(
tmpPathA,
`
"use strict";
class A {
constructor() {
this.test = 1;
}
}
$injector.register("a", A);
`,
);
injector.require("a", tmpPathA);
const tmpDirB = mkdtempSync(
path.join(tmpdir(), "overrideAlreadyRequiredModule_fileB-"),
);
const tmpPathB = path.join(tmpDirB, "fileB.js");
fs.writeFileSync(
tmpPathB,
`
"use strict";
class A {
constructor() {
this.test = 2;
}
}
$injector.register("a", A);
`,
);
injector.overrideAlreadyRequiredModule = true;
assert.doesNotThrow(() => injector.require("a", tmpPathB));
const result: any = injector.resolve("a");
assert.deepStrictEqual(result.test, 2);
cliGlobal.$injector = injectorCache;
});
describe("requirePublic", () => {
it("adds module to public api when requirePublic is used", () => {
setGlobalInjector(new Yok());
injector.requirePublic("foo", "test");
assert.isTrue(
_.includes(Object.getOwnPropertyNames(injector.publicApi), "foo"),
);
});
it("resolves correct module, when publicApi is accessed", async () => {
// The test have to verify that when $injector.requirePublic is used, the $injector will require the file when you try to access the module from publicApi
// However there are several problems with testing this functionality (it is used when you require this package, so there should be some integration tests).
// We cannot use `$injector.requirePublic("testPublicApi", pathToMock)` directly as the file is already required by mocha,
// so when $injector tries to resolve it, it will fail, as cannot require the module twice.
// So we have to create a new file, as all files inside test dir are required by mocha before starting the tests.
// The file is created in temp dir, but this requires modification of the import statements in it.
// Also we have to modify the global $injector, so when the file is required, the $injector.register... will be the same injector that we are testing.
const injectorCache = injector;
setGlobalInjector(new Yok());
const tempDir = mkdtempSync(
path.join(tmpdir(), "overrideAlreadyRequiredModule_fileA-"),
);
const testPublicApiFilePath = path.join(tempDir, "public-api-mocks.js");
const pathToMock = path.join(__dirname, "mocks", "public-api-mocks.js");
const originalContent = fs.readFileSync(pathToMock).toString();
// On Windows we are unable to require paths with single backslash, so replace them with double backslashes.
const correctPathToRequireDecorators =
"'" +
path.join(__dirname, "..", "..", "decorators").replace(/\\/g, "\\\\") +
"'";
const correctPathToRequireYok =
"'" +
path.join(__dirname, "..", "..", "yok").replace(/\\/g, "\\\\") +
"'";
const fixedContent = originalContent
.replace(/".+?decorators"/, correctPathToRequireDecorators)
.replace(/".+?yok"/, correctPathToRequireYok);
fs.writeFileSync(testPublicApiFilePath, fixedContent);
injector.requirePublic("testPublicApi", testPublicApiFilePath);
const result = 1;
assert.ok(
injector.publicApi.testPublicApi,
"The module testPublicApi must be resolved in its getter and the returned value should not be falsey.",
);
assert.deepStrictEqual(
await injector.publicApi.testPublicApi.myMethod(result),
result,
);
setGlobalInjector(injectorCache);
});
});
describe("isValidHierarchicalCommand", () => {
let localInjector: IInjector;
beforeEach(() => {
localInjector = new Yok();
});
describe("returns true", () => {
describe("when command consists of two parts", () => {
it("and is valid", () => {
localInjector.requireCommand("sample|command", "sampleFileName");
return assert.eventually.isTrue(
localInjector.isValidHierarchicalCommand("sample", ["command"]),
);
});
it("and has default value and no arguments passed", () => {
localInjector.requireCommand("sample|*default", "sampleFileName");
return assert.eventually.isTrue(
localInjector.isValidHierarchicalCommand("sample", []),
);
});
it("and has default value and canExecute returns true", () => {
const command = {
canExecute: async () => true,
};
localInjector.registerCommand("sample|*default", command);
localInjector.requireCommand("sample|*default", "sampleFileName");
return assert.eventually.isTrue(
localInjector.isValidHierarchicalCommand("sample", ["arg"]),
);
});
it("and has default value and allowedParameters' length is greater than 0", () => {
const allowedParameters: ICommandParameter[] = [
{ mandatory: false, validate: async () => true },
];
const command = {
allowedParameters,
};
localInjector.registerCommand("sample|*default", command);
localInjector.requireCommand("sample|*default", "sampleFileName");
return assert.eventually.isTrue(
localInjector.isValidHierarchicalCommand("sample", ["arg"]),
);
});
it("and has default value and argument default passed", () => {
localInjector.requireCommand("sample|*default", "sampleFileName");
return assert.eventually.isTrue(
localInjector.isValidHierarchicalCommand("sample", ["default"]),
);
});
it("and has default value and some arguments passed", () => {
localInjector.requireCommand("sample|*default", "sampleFileName");
return assert.eventually.isTrue(
localInjector.isValidHierarchicalCommand("sample", [
"arg1",
"arg2",
]),
);
});
});
describe("when command consists of multiple parts", () => {
it("and is valid", () => {
localInjector.requireCommand(
"sample|command|subcommand",
"sampleFileName",
);
return assert.eventually.isTrue(
localInjector.isValidHierarchicalCommand("sample", [
"command",
"subcommand",
]),
);
});
it("and has default value and no arguments passed", () => {
localInjector.requireCommand(
"sample|command|*default",
"sampleFileName",
);
return assert.eventually.isTrue(
localInjector.isValidHierarchicalCommand("sample", ["command"]),
);
});
it("has default value and default argument passed", () => {
localInjector.requireCommand(
"sample|command|*default",
"sampleFileName",
);
return assert.eventually.isTrue(
localInjector.isValidHierarchicalCommand("sample", [
"command",
"default",
]),
);
});
it("has default value and some arguments passed", () => {
localInjector.requireCommand(
"sample|command|*default",
"sampleFileName",
);
return assert.eventually.isTrue(
localInjector.isValidHierarchicalCommand("sample", [
"command",
"arg1",
"arg2",
]),
);
});
});
});
describe("returns false", () => {
it("when command is invalid", () => {
localInjector.requireCommand("sample|command", "sampleFileName");
return assert.eventually.isFalse(
localInjector.isValidHierarchicalCommand("wrong", ["command"]),
);
});
describe("throws", () => {
it("when arguments are invalid", () => {
localInjector.requireCommand("sample|command", "sampleFileName");
return assert.isRejected(
localInjector.isValidHierarchicalCommand("sample", ["commandarg"]),
);
});
});
});
});
describe("buildHierarchicalCommand", () => {
beforeEach(() => {
setGlobalInjector(new Yok());
});
describe("returns undefined", () => {
it("when there's no valid hierarchical command", () => {
injector.requireCommand("sample|command", "sampleFileName");
assert.isUndefined(
injector.buildHierarchicalCommand("command", ["subCommand"]),
"When there's no matching subcommand, buildHierarchicalCommand should return undefined.",
);
});
it("when there's no hierarchical commands required", () => {
assert.isUndefined(
injector.buildHierarchicalCommand("command", ["subCommand"]),
"When there's no hierarchical commands required, buildHierarchicalCommand should return undefined.",
);
});
it("when only one argument is passed", () => {
assert.isUndefined(
injector.buildHierarchicalCommand("command", []),
"When when only one argument is passed, buildHierarchicalCommand should return undefined.",
);
});
it("when there's matching command, but it is not hierarchical command", () => {
injector.requireCommand("command", "sampleFileName");
assert.isUndefined(
injector.buildHierarchicalCommand("command", []),
"When there's matching command, but it is not hierarchical command, buildHierarchicalCommand should return undefined.",
);
});
});
describe("returns correct command and arguments when command name has one pipe (|)", () => {
it("when only command is passed, no arguments are returned", () => {
const commandName = "sample|command";
injector.requireCommand(commandName, "sampleFileName");
const buildHierarchicalCommandResult =
injector.buildHierarchicalCommand("sample", ["command"]);
assert.deepStrictEqual(
buildHierarchicalCommandResult.commandName,
commandName,
`The expected command name is ${commandName}`,
);
assert.deepStrictEqual(
buildHierarchicalCommandResult.remainingArguments,
[],
"There shouldn't be any arguments left.",
);
});
it("when command is passed, correct arguments are returned", () => {
const commandName = "sample|command";
injector.requireCommand(commandName, "sampleFileName");
const sampleArguments = [
"sample",
"arguments",
"passed",
"to",
"command",
];
const buildHierarchicalCommandResult =
injector.buildHierarchicalCommand(
"sample",
["command"].concat(sampleArguments),
);
assert.deepStrictEqual(
buildHierarchicalCommandResult.commandName,
commandName,
`The expected command name is ${commandName}`,
);
assert.deepStrictEqual(
buildHierarchicalCommandResult.remainingArguments,
sampleArguments,
"All arguments except first one should be returned.",
);
});
it("when command is passed, correct arguments are returned when command argument has uppercase letters", () => {
const commandName = "sample|command";
injector.requireCommand(commandName, "sampleFileName");
const sampleArguments = [
"sample",
"arguments",
"passed",
"to",
"command",
];
const buildHierarchicalCommandResult =
injector.buildHierarchicalCommand(
"sample",
["CoMmanD"].concat(sampleArguments),
);
assert.deepStrictEqual(
buildHierarchicalCommandResult.commandName,
commandName,
`The expected command name is ${commandName}`,
);
assert.deepStrictEqual(
buildHierarchicalCommandResult.remainingArguments,
sampleArguments,
"All arguments except first one should be returned.",
);
});
it("when only default command is passed, no arguments are returned", () => {
const commandName = "sample|*command";
injector.requireCommand(commandName, "sampleFileName");
const buildHierarchicalCommandResult =
injector.buildHierarchicalCommand("sample", ["command"]);
assert.deepStrictEqual(
buildHierarchicalCommandResult.commandName,
commandName,
`The expected command name is ${commandName}`,
);
assert.deepStrictEqual(
buildHierarchicalCommandResult.remainingArguments,
[],
"There shouldn't be any arguments left.",
);
});
it("when default command is passed, correct arguments are returned", () => {
const commandName = "sample|*command";
injector.requireCommand(commandName, "sampleFileName");
const sampleArguments = [
"sample",
"arguments",
"passed",
"to",
"command",
];
const buildHierarchicalCommandResult =
injector.buildHierarchicalCommand(
"sample",
["command"].concat(sampleArguments),
);
assert.deepStrictEqual(
buildHierarchicalCommandResult.commandName,
commandName,
`The expected command name is ${commandName}`,
);
assert.deepStrictEqual(
buildHierarchicalCommandResult.remainingArguments,
sampleArguments,
"All arguments except first one should be returned.",
);
});
});
describe("returns correct command and arguments when command name has more than one pipe (|)", () => {
it("when only command is passed, no arguments are returned", () => {
const commandName = "sample|command|with|more|pipes";
injector.requireCommand(commandName, "sampleFileName");
const buildHierarchicalCommandResult =
injector.buildHierarchicalCommand("sample", [
"command",
"with",
"more",
"pipes",
]);
assert.deepStrictEqual(
buildHierarchicalCommandResult.commandName,
commandName,
`The expected command name is ${commandName}`,
);
assert.deepStrictEqual(
buildHierarchicalCommandResult.remainingArguments,
[],
"There shouldn't be any arguments left.",
);
});
it("when command is passed, correct arguments are returned", () => {
const commandName = "sample|command|pipes";
injector.requireCommand(commandName, "sampleFileName");
const sampleArguments = [
"sample",
"arguments",
"passed",
"to",
"command",
];
const buildHierarchicalCommandResult =
injector.buildHierarchicalCommand(
"sample",
["command", "pipes"].concat(sampleArguments),
);
assert.deepStrictEqual(
buildHierarchicalCommandResult.commandName,
commandName,
`The expected command name is ${commandName}`,
);
assert.deepStrictEqual(
buildHierarchicalCommandResult.remainingArguments,
sampleArguments,
"All arguments except the ones used for commandName should be returned.",
);
});
it("when only default command is passed, no arguments are returned", () => {
const commandName = "sample|*command|pipes";
injector.requireCommand(commandName, "sampleFileName");
const buildHierarchicalCommandResult =
injector.buildHierarchicalCommand("sample", ["command", "pipes"]);
assert.deepStrictEqual(
buildHierarchicalCommandResult.commandName,
commandName,
`The expected command name is ${commandName}`,
);
assert.deepStrictEqual(
buildHierarchicalCommandResult.remainingArguments,
[],
"There shouldn't be any arguments left.",
);
});
it("when default command is passed, correct arguments are returned", () => {
const commandName = "sample|*command|pipes";
injector.requireCommand(commandName, "sampleFileName");
const sampleArguments = [
"sample",
"arguments",
"passed",
"to",
"command",
];
const buildHierarchicalCommandResult =
injector.buildHierarchicalCommand(
"sample",
["command", "pipes"].concat(sampleArguments),
);
assert.deepStrictEqual(
buildHierarchicalCommandResult.commandName,
commandName,
`The expected command name is ${commandName}`,
);
assert.deepStrictEqual(
buildHierarchicalCommandResult.remainingArguments,
sampleArguments,
"All arguments except the ones used for commandName should be returned.",
);
});
describe("returns most applicable hierarchical command", () => {
const sampleArguments = [
"sample",
"arguments",
"passed",
"to",
"command",
];
beforeEach(() => {
injector.requireCommand("sample|command", "sampleFileName");
injector.requireCommand("sample|command|with", "sampleFileName");
injector.requireCommand("sample|command|with|more", "sampleFileName");
injector.requireCommand(
"sample|command|with|more|pipes",
"sampleFileName",
);
});
it("when subcommand of subcommand is called", () => {
const commandName = "sample|command|with|more|pipes";
const buildHierarchicalCommandResult =
injector.buildHierarchicalCommand("sample", [
"command",
"with",
"more",
"pipes",
]);
assert.deepStrictEqual(
buildHierarchicalCommandResult.commandName,
commandName,