-
-
Notifications
You must be signed in to change notification settings - Fork 513
/
Copy pathcmdTest.js
58 lines (53 loc) · 1.55 KB
/
cmdTest.js
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
import test from "ava";
import { exec } from "child_process";
test("Test command line exit code success", async (t) => {
await new Promise((resolve) => {
exec("node ./cmd.cjs --input=test/stubs/exitCode_success --dryrun", (error, stdout, stderr) => {
t.falsy(error);
resolve();
});
});
});
test("Test command line exit code for template error", async (t) => {
await new Promise((resolve) => {
exec("node ./cmd.cjs --input=test/stubs/exitCode --dryrun", (error, stdout, stderr) => {
t.is(error.code, 1);
resolve();
});
});
});
test("Test command line exit code for global data error", async (t) => {
await new Promise((resolve) => {
exec(
"node ./cmd.cjs --input=test/stubs/exitCode_globalData --dryrun",
(error, stdout, stderr) => {
t.is(error.code, 1);
resolve();
}
);
});
});
test("Test data should not process in a --help", async (t) => {
await new Promise((resolve) => {
exec(
"node ./cmd.cjs --input=test/stubs/cmd-help-processing --help",
(error, stdout, stderr) => {
t.falsy(error);
t.is(stdout.indexOf("THIS SHOULD NOT LOG TO CONSOLE"), -1);
resolve();
}
);
});
});
test("Test data should not process in a --version", async (t) => {
await new Promise((resolve) => {
exec(
"node ./cmd.cjs --input=test/stubs/cmd-help-processing --version",
(error, stdout, stderr) => {
t.falsy(error);
t.is(stdout.indexOf("THIS SHOULD NOT LOG TO CONSOLE"), -1);
resolve();
}
);
});
});