-
-
Notifications
You must be signed in to change notification settings - Fork 197
/
Copy pathpreview-command-helper.ts
151 lines (133 loc) · 3.43 KB
/
preview-command-helper.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
import { Yok } from "../../lib/common/yok";
import { PreviewCommandHelper } from "../../lib/helpers/preview-command-helper";
import * as chai from "chai";
interface ITestCase {
name: string;
stdinData: string;
qrCodeProperty?: string;
}
let qrCodesData: IDictionary<boolean> = {
isGeneratedForAndroid: false,
isGeneratedForiOS: false,
isGeneratedForCurrentApp: false
};
function createTestInjector() {
const injector = new Yok();
injector.register("logger", {
info: () => ({})
});
injector.register("options", {});
injector.register("playgroundQrCodeGenerator", {
generateQrCodeForAndroid: async () => {
qrCodesData.isGeneratedForAndroid = true;
},
generateQrCodeForiOS: async () => {
qrCodesData.isGeneratedForiOS = true;
},
generateQrCodeForCurrentApp: async (options: IHasUseHotModuleReloadOption) => {
qrCodesData.isGeneratedForCurrentApp = true;
}
});
injector.register("processService", {
attachToProcessExitSignals: () => ({})
});
injector.register("previewCommandHelper", PreviewCommandHelper);
(<any>process.stdin).setRawMode = () => ({});
return injector;
}
function arrange() {
const injector = createTestInjector();
const previewCommandHelper = injector.resolve("previewCommandHelper");
return {
previewCommandHelper
};
}
function act(previewCommandHelper: IPreviewCommandHelper, sdtinStrToEmit: string): void {
previewCommandHelper.run();
process.stdin.emit("data", sdtinStrToEmit);
}
function assert(qrCodeProperty: string) {
_.keys(qrCodesData).forEach(prop => {
if (prop === qrCodeProperty) {
chai.assert.isTrue(qrCodesData[prop]);
} else {
chai.assert.isFalse(qrCodesData[prop]);
}
});
}
function makeInteractive() {
process.stdout.isTTY = true;
process.stdin.isTTY = true;
}
function makeNonInteractive() {
(<any>process.stdout).isTTY = false;
(<any>process.stdin).isTTY = false;
}
function reset() {
qrCodesData = {
isGeneratedForAndroid: false,
isGeneratedForiOS: false,
isGeneratedForCurrentApp: false
};
process.stdin.removeAllListeners("data");
}
function execute(testCases: ITestCase[]) {
testCases.forEach(testCase => {
it(`${testCase.name}`, async () => {
const { previewCommandHelper } = arrange();
act(previewCommandHelper, testCase.stdinData);
assert(testCase.qrCodeProperty);
});
});
}
describe("previewCommandHelper", () => {
describe("when console is interactive", () => {
beforeEach(() => {
makeInteractive();
});
afterEach(() => {
reset();
});
const testCases = [
{
name: "should generate qr code for android when a key is pressed",
stdinData: "a",
qrCodeProperty: "isGeneratedForAndroid",
},
{
name: "should generate qr code for iOS when i key is pressed",
stdinData: "i",
qrCodeProperty: "isGeneratedForiOS",
},
{
name: "should generate qr code for current app when c key is pressed",
stdinData: "c",
qrCodeProperty: "isGeneratedForCurrentApp",
}
];
execute(testCases);
});
describe("when console is non interactive", () => {
beforeEach(() => {
makeNonInteractive();
});
afterEach(() => {
reset();
});
const testCases = [
{
name: "should not generate qr code for android when a key is pressed",
stdinData: "a"
},
{
name: "should not generate qr code for iOS when i key is pressed",
stdinData: "i"
},
{
name: "should not generate qr code for current app when c key is pressed",
stdinData: "c"
}
];
execute(testCases);
});
});