-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathstart.test.ts
302 lines (247 loc) · 7.38 KB
/
start.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
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
jest.mock('../../src/config/utils/package-json');
import {
getBaseDirectory,
getConfigFromCli,
getInspectInfo,
getPort,
getUrl,
StartCliConfig,
StartCliFlags,
} from '../../src/config/start';
import os from 'os';
import path from 'path';
jest.mock('ngrok', () => {
return {
connect: jest
.fn()
.mockImplementation(
({ addr, subdomain }: { addr: number | string; subdomain: string }) =>
Promise.resolve(`https://${subdomain || 'random'}.ngrok.io`)
),
};
});
describe('getUrl', () => {
test('returns localhost if ngrok is not passed', async () => {
const config = {
ngrok: undefined,
} as unknown as StartCliFlags;
const url = await getUrl(config, 3000);
expect(url).toBe('http://localhost:3000');
});
test('calls ngrok if ngrok is defined', async () => {
const config = {
ngrok: '',
} as unknown as StartCliFlags;
const url = await getUrl(config, 3000);
expect(url).toBe('https://random.ngrok.io');
});
test('calls ngrok with custom subdomain if passed', async () => {
const config = {
ngrok: 'dom',
} as unknown as StartCliFlags;
const url = await getUrl(config, 3000);
expect(url).toBe('https://dom.ngrok.io');
});
});
describe('getPort', () => {
let backupPort: string | undefined;
beforeEach(() => {
backupPort = process.env.PORT;
});
afterEach(() => {
if (backupPort) {
process.env.PORT = backupPort;
} else {
delete process.env.PORT;
}
});
test('returns default 3000 if nothing is passed', () => {
const config = {
port: undefined,
} as unknown as StartCliFlags;
delete process.env.PORT;
const port = getPort(config);
expect(port).toBe(3000);
});
test('checks for process.env.PORT and returns number', () => {
const config = {
port: undefined,
} as unknown as StartCliFlags;
process.env.PORT = '9999';
const port = getPort(config);
expect(typeof port).toBe('number');
expect(port).toBe(9999);
});
test('port passed via flag takes preference', () => {
const config = {
port: 1234,
} as unknown as StartCliFlags;
process.env.PORT = '9999';
const port = getPort(config);
expect(typeof port).toBe('number');
expect(port).toBe(1234);
});
test('handles strings and returns number', () => {
const config = {
port: '8080',
} as unknown as StartCliFlags;
process.env.PORT = '9999';
const port = getPort(config);
expect(typeof port).toBe('number');
expect(port).toBe(8080);
});
});
describe('getEnvironment', () => {
test('TODO', () => {
expect(true).toBe(true);
});
});
describe('getBaseDirectory', () => {
const initialWorkingDirectory = process.cwd();
beforeAll(() => {
process.chdir(os.homedir());
});
afterAll(() => {
process.chdir(initialWorkingDirectory);
});
test('handles current working directory if none is passed', () => {
const config = {
dir: undefined,
cwd: undefined,
} as unknown as StartCliFlags;
const result = getBaseDirectory(config);
expect(result).toBe(os.homedir());
});
test('supports dir argument', () => {
const config = {
dir: '/usr/local',
cwd: undefined,
} as unknown as StartCliFlags;
const result = getBaseDirectory(config);
expect(result).toBe(path.resolve('/usr/local'));
});
test('prefers cwd over dir argument', () => {
const config = {
dir: '/usr/local',
cwd: '/usr/bin',
} as unknown as StartCliFlags;
const result = getBaseDirectory(config);
expect(result).toBe(path.resolve('/usr/bin'));
});
test('handles relative path for dir', () => {
let config = {
dir: 'demo',
cwd: undefined,
} as unknown as StartCliFlags;
let result = getBaseDirectory(config);
expect(result).toBe(path.resolve('demo'));
config = {
dir: '../demo',
cwd: undefined,
} as unknown as StartCliFlags;
result = getBaseDirectory(config);
expect(result).toBe(path.resolve('../demo'));
});
test('handles relative path for cwd', () => {
let config = {
dir: undefined,
cwd: 'demo',
} as unknown as StartCliFlags;
let result = getBaseDirectory(config);
expect(result).toBe(path.resolve('demo'));
config = {
dir: undefined,
cwd: '../demo',
} as unknown as StartCliFlags;
result = getBaseDirectory(config);
expect(result).toBe(path.resolve('../demo'));
});
});
describe('getInspectInfo', () => {
test('returns undefined if nothing is passed', () => {
const config = {
inspect: undefined,
inspectBrk: undefined,
} as unknown as StartCliFlags;
const result = getInspectInfo(config);
expect(result).toBeUndefined();
});
test('handles present but empty inspect flag', () => {
const config = {
inspect: '',
inspectBrk: undefined,
} as unknown as StartCliFlags;
const result = getInspectInfo(config);
expect(result).toEqual({ hostPort: '', break: false });
});
test('handles present but empty inspectBrk flag', () => {
const config = {
inspect: undefined,
inspectBrk: '',
} as unknown as StartCliFlags;
const result = getInspectInfo(config);
expect(result).toEqual({ hostPort: '', break: true });
});
test('handles passed port in inspect flag', () => {
const config = {
inspect: '9999',
inspectBrk: undefined,
} as unknown as StartCliFlags;
const result = getInspectInfo(config);
expect(result).toEqual({ hostPort: '9999', break: false });
});
test('handles passed port in inspect flag', () => {
const config = {
inspect: undefined,
inspectBrk: '1234',
} as unknown as StartCliFlags;
const result = getInspectInfo(config);
expect(result).toEqual({ hostPort: '1234', break: true });
});
});
describe('getConfigFromCli', () => {
const initialWorkingDirectory = process.cwd();
beforeAll(() => {
process.chdir(os.homedir());
});
afterAll(() => {
process.chdir(initialWorkingDirectory);
});
beforeEach(() => {
require('../../src/config/utils/package-json').__setPackageJson({});
});
test('uses passed in directory as base directory', async () => {
require('../../src/config/utils/package-json').__setPackageJson({});
const config = {
dir: './other_dir',
} as unknown as StartCliFlags;
if (config.dir) {
const startConfig = await getConfigFromCli(config);
expect(startConfig.baseDir).toEqual(path.resolve(config.dir));
}
});
test('uses passed in cwd as base directory', async () => {
require('../../src/config/utils/package-json').__setPackageJson({});
const config = {
dir: './other_dir',
cwd: './new_cwd',
} as unknown as StartCliFlags;
if (config.cwd) {
const startConfig = await getConfigFromCli(config);
expect(startConfig.baseDir).toEqual(path.resolve(config.cwd));
}
});
test('turns off fork process if inspect is enabled', async () => {
require('../../src/config/utils/package-json').__setPackageJson({});
const config = {
dir: './other_dir',
inspect: '',
} as unknown as StartCliFlags;
if (config.dir) {
const startConfig = await getConfigFromCli(config);
expect(startConfig.baseDir).toEqual(path.resolve(config.dir));
expect(startConfig.forkProcess).toEqual(false);
expect(startConfig.inspect).not.toEqual(undefined);
}
});
});