-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathcreate-files.test.js
418 lines (381 loc) · 14.3 KB
/
create-files.test.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
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
const fs = require('fs');
const path = require('path');
const { promisify } = require('util');
const rimraf = require('rimraf');
const os = require('os');
const readFile = promisify(fs.readFile);
const stat = promisify(fs.stat);
const readdir = promisify(fs.readdir);
const versions = require('../src/create-twilio-function/versions');
const {
createPackageJSON,
createDirectory,
createExampleFromTemplates,
createEnvFile,
createNvmrcFile,
createTsconfigFile,
createEmptyFileStructure,
createServerlessConfigFile,
} = require('../src/create-twilio-function/create-files');
function setupDir() {
const dirPath = fs.mkdtempSync(
path.join(os.tmpdir(), 'test-twilio-run-files-')
);
return {
tmpDir: dirPath,
cleanUp() {
rimraf.sync(dirPath);
},
};
}
describe('create-files', () => {
describe('createDirectory', () => {
test('it creates a new directory with the project name', async () => {
const { tmpDir: scratchDir, cleanUp } = setupDir();
const name = 'test-dir';
try {
await createDirectory(scratchDir, name);
} catch (err) {
console.error(err);
}
const dir = await stat(path.join(scratchDir, name));
expect(dir.isDirectory());
cleanUp();
});
test('it throws an error if the directory exists', async () => {
const { tmpDir: scratchDir, cleanUp } = setupDir();
const name = 'test-dir-2';
fs.mkdirSync(path.join(scratchDir, name), { recursive: true });
expect.assertions(1);
try {
await createDirectory(scratchDir, name);
} catch (e) {
expect(e.toString()).toMatch('EEXIST');
}
cleanUp();
});
});
describe('createPackageJSON', () => {
test('it creates a new package.json file with the name of the project', async () => {
const { tmpDir: scratchDir, cleanUp } = setupDir();
const name = 'test-pkg-1';
const basePath = path.join(scratchDir, name);
fs.mkdirSync(basePath, { recursive: true });
await createPackageJSON(basePath, 'project-name');
const file = await stat(path.join(basePath, 'package.json'));
expect(file.isFile());
const packageJSON = JSON.parse(
fs.readFileSync(path.join(basePath, 'package.json'), 'utf-8')
);
expect(packageJSON.name).toEqual('project-name');
expect(packageJSON.engines.node).toEqual(versions.node);
expect(packageJSON.devDependencies['twilio-run']).toEqual(
versions.twilioRun
);
expect(packageJSON.dependencies['@twilio/runtime-handler']).toEqual(
versions.twilioRuntimeHandler
);
expect(packageJSON.dependencies['twilio']).toEqual(versions.twilio);
cleanUp();
});
test('it creates a package.json file with typescript dependencies', async () => {
const { tmpDir: scratchDir, cleanUp } = setupDir();
const name = 'test-pkg-2';
const basePath = path.join(scratchDir, name);
fs.mkdirSync(basePath, { recursive: true });
await createPackageJSON(basePath, 'project-name', 'typescript');
const file = await stat(path.join(basePath, 'package.json'));
expect(file.isFile());
const packageJSON = JSON.parse(
fs.readFileSync(path.join(basePath, 'package.json'), 'utf-8')
);
expect(packageJSON.name).toEqual('project-name');
expect(packageJSON.engines.node).toEqual(versions.node);
expect(packageJSON.devDependencies['twilio-run']).toEqual(
versions.twilioRun
);
expect(packageJSON.devDependencies.typescript).toEqual(
versions.typescript
);
expect(packageJSON.dependencies['@twilio/runtime-handler']).toEqual(
versions.twilioRuntimeHandler
);
expect(
packageJSON.dependencies['@twilio-labs/serverless-runtime-types']
).toEqual(versions.serverlessRuntimeTypes);
expect(packageJSON.dependencies['twilio']).toEqual(versions.twilio);
cleanUp();
});
test('it rejects if there is already a package.json', async () => {
const { tmpDir: scratchDir, cleanUp } = setupDir();
fs.closeSync(fs.openSync(path.join(scratchDir, 'package.json'), 'w'));
expect.assertions(1);
try {
await createPackageJSON(scratchDir, 'project-name');
} catch (e) {
expect(e.toString()).toMatch('file already exists');
}
cleanUp();
});
});
describe('createExampleFromTemplates', () => {
describe('javascript', () => {
const templatesDir = path.join(
__dirname,
'..',
'templates',
'javascript'
);
test('it creates functions and assets directories', async () => {
const { tmpDir: scratchDir, cleanUp } = setupDir();
const name = 'test-js-template';
fs.mkdirSync(path.join(scratchDir, name), { recursive: true });
await createExampleFromTemplates(path.join(scratchDir, name));
const dirs = await readdir(path.join(scratchDir, name));
const templateDirContents = await readdir(templatesDir);
expect(dirs).toEqual(templateDirContents);
cleanUp();
});
test('it copies the functions from the templates/javascript/functions directory', async () => {
const { tmpDir: scratchDir, cleanUp } = setupDir();
const name = 'test-js-template-1';
fs.mkdirSync(path.join(scratchDir, name), { recursive: true });
await createExampleFromTemplates(path.join(scratchDir, name));
const functions = await readdir(
path.join(scratchDir, name, 'functions')
);
const templateFunctions = await readdir(
path.join(templatesDir, 'functions')
);
expect(functions).toEqual(templateFunctions);
cleanUp();
});
test('it rejects if there is already a functions directory', async () => {
const { tmpDir: scratchDir, cleanUp } = setupDir();
const name = 'test-js-template-2';
fs.mkdirSync(path.join(scratchDir, name, 'functions'), {
recursive: true,
});
expect.assertions(1);
try {
await createExampleFromTemplates(path.join(scratchDir, name));
} catch (e) {
expect(e.toString()).toMatch('file already exists');
}
cleanUp();
});
});
describe('typescript', () => {
const templatesDir = path.join(
__dirname,
'..',
'templates',
'typescript'
);
test('it creates functions and assets directories', async () => {
const { tmpDir: scratchDir, cleanUp } = setupDir();
const name = 'test-ts-template';
fs.mkdirSync(path.join(scratchDir, name), { recursive: true });
await createExampleFromTemplates(
path.join(scratchDir, name),
'typescript'
);
const dirs = await readdir(path.join(scratchDir, name));
const templateDirContents = await readdir(templatesDir);
expect(dirs).toEqual(templateDirContents);
cleanUp();
});
test('it copies the typescript files from the templates/typescript/src directory', async () => {
const { tmpDir: scratchDir, cleanUp } = setupDir();
const name = 'test-ts-template-1';
fs.mkdirSync(path.join(scratchDir, name), { recursive: true });
await createExampleFromTemplates(
path.join(scratchDir, name),
'typescript'
);
const src = await readdir(path.join(scratchDir, name, 'src'));
const templateSrc = await readdir(path.join(templatesDir, 'src'));
expect(src).toEqual(templateSrc);
cleanUp();
});
test('it rejects if there is already a src directory', async () => {
const { tmpDir: scratchDir, cleanUp } = setupDir();
const name = 'test-ts-template-2';
fs.mkdirSync(path.join(scratchDir, name, 'src'), { recursive: true });
expect.assertions(1);
try {
await createExampleFromTemplates(
path.join(scratchDir, name),
'typescript'
);
} catch (e) {
expect(e.toString()).toMatch('file already exists');
}
cleanUp();
});
});
});
describe('createEnvFile', () => {
test('it creates a new .env file', async () => {
const { tmpDir: scratchDir, cleanUp } = setupDir();
const name = 'test-env-1';
const basePath = path.join(scratchDir, name);
fs.mkdirSync(basePath, { recursive: true });
await createEnvFile(basePath, {
accountSid: 'AC123',
authToken: 'qwerty123456',
});
const file = await stat(path.join(basePath, '.env'));
expect(file.isFile());
const contents = fs.readFileSync(path.join(basePath, '.env'), {
encoding: 'utf-8',
});
expect(contents).toMatch('ACCOUNT_SID=AC123');
expect(contents).toMatch('AUTH_TOKEN=qwerty123456');
cleanUp();
});
test('it rejects if there is already an .env file', async () => {
const { tmpDir: scratchDir, cleanUp } = setupDir();
const name = 'test-env-2';
const basePath = path.join(scratchDir, name);
fs.mkdirSync(basePath, { recursive: true });
fs.closeSync(fs.openSync(path.join(basePath, '.env'), 'w'));
expect.assertions(1);
try {
await createEnvFile(basePath, {
accountSid: 'AC123',
authToken: 'qwerty123456',
});
} catch (e) {
expect(e.toString()).toMatch('file already exists');
}
cleanUp();
});
});
describe('createNvmrcFile', () => {
test('it creates a new .nvmrc file', async () => {
const { tmpDir: scratchDir, cleanUp } = setupDir();
const name = 'test-nvmrc-1';
const basePath = path.join(scratchDir, name);
fs.mkdirSync(basePath, { recursive: true });
await createNvmrcFile(basePath);
const file = await stat(path.join(basePath, '.nvmrc'));
expect(file.isFile());
const contents = fs.readFileSync(path.join(basePath, '.nvmrc'), {
encoding: 'utf-8',
});
expect(contents).toMatch(versions.node);
cleanUp();
});
test('it rejects if there is already an .nvmrc file', async () => {
const { tmpDir: scratchDir, cleanUp } = setupDir();
const name = 'test-nvmrc-2';
const basePath = path.join(scratchDir, name);
fs.mkdirSync(basePath, { recursive: true });
fs.closeSync(fs.openSync(path.join(basePath, '.nvmrc'), 'w'));
expect.assertions(1);
try {
await createNvmrcFile(basePath);
} catch (e) {
expect(e.toString()).toMatch('file already exists');
}
cleanUp();
});
});
describe('createServerlessConfigFile', () => {
test('it creates a new .twilioserverlessrc file', async () => {
const { tmpDir: scratchDir, cleanUp } = setupDir();
const name = 'test-serverlessrc-1';
const basePath = path.join(scratchDir, name);
fs.mkdirSync(basePath, { recursive: true });
await createServerlessConfigFile(basePath);
const file = await stat(path.join(basePath, '.twilioserverlessrc'));
expect(file.isFile());
const contents = fs.readFileSync(
path.join(basePath, '.twilioserverlessrc'),
{
encoding: 'utf-8',
}
);
expect(contents.startsWith('{')).toBe(true);
cleanUp();
});
test('it does not override if there is already a file', async () => {
const { tmpDir: scratchDir, cleanUp } = setupDir();
const name = 'test-serverlessrc-2';
const basePath = path.join(scratchDir, name);
fs.mkdirSync(basePath, { recursive: true });
fs.closeSync(
fs.openSync(path.join(basePath, '.twilioserverlessrc'), 'w')
);
const result = await createServerlessConfigFile(basePath);
expect(result).toBe(false);
const contents = fs.readFileSync(
path.join(basePath, '.twilioserverlessrc'),
{
encoding: 'utf-8',
}
);
expect(contents.startsWith('{')).toBe(false);
cleanUp();
});
});
describe('createTsconfig', () => {
test('it creates a new tsconfig.json file', async () => {
const { tmpDir: scratchDir, cleanUp } = setupDir();
const name = 'test-tsconfig-1';
const basePath = path.join(scratchDir, name);
fs.mkdirSync(basePath, { recursive: true });
await createTsconfigFile(basePath);
const file = await stat(path.join(basePath, 'tsconfig.json'));
expect(file.isFile());
const contents = fs.readFileSync(path.join(basePath, 'tsconfig.json'), {
encoding: 'utf-8',
});
expect(contents).toMatch('"compilerOptions"');
cleanUp();
});
test('it rejects if there is already an tsconfig.json file', async () => {
const { tmpDir: scratchDir, cleanUp } = setupDir();
const name = 'test-tsconfig-2';
const basePath = path.join(scratchDir, name);
fs.mkdirSync(basePath, { recursive: true });
fs.closeSync(fs.openSync(path.join(basePath, 'tsconfig.json'), 'w'));
expect.assertions(1);
try {
await createTsconfigFile(basePath);
} catch (e) {
expect(e.toString()).toMatch('file already exists');
}
cleanUp();
});
});
describe('createEmptyFileStructure', () => {
test('creates functions and assets directory for javascript', async () => {
const { tmpDir: scratchDir, cleanUp } = setupDir();
const name = 'test-empty-1';
const basePath = path.join(scratchDir, name);
fs.mkdirSync(basePath, { recursive: true });
await createEmptyFileStructure(basePath, 'javascript');
const functions = await stat(path.join(basePath, 'functions'));
expect(functions.isDirectory());
const assets = await stat(path.join(basePath, 'assets'));
expect(assets.isDirectory());
cleanUp();
});
test('creates src, functions and assets directory for typescript', async () => {
const { tmpDir: scratchDir, cleanUp } = setupDir();
const name = 'test-empty-2';
const basePath = path.join(scratchDir, name);
fs.mkdirSync(basePath, { recursive: true });
await createEmptyFileStructure(basePath, 'typescript');
const src = await stat(path.join(basePath, 'src'));
expect(src.isDirectory());
const functions = await stat(path.join(basePath, 'src', 'functions'));
expect(functions.isDirectory());
const assets = await stat(path.join(basePath, 'src', 'assets'));
expect(assets.isDirectory());
cleanUp();
});
});
});