-
-
Notifications
You must be signed in to change notification settings - Fork 172
/
Copy pathstart.test.js
1024 lines (804 loc) · 26.3 KB
/
start.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
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
/* global GLOBAL_MODULE_1, GLOBAL_MODULE_2 */
'use strict'
const util = require('util')
const { once } = require('events')
const fs = require('fs')
const path = require('path')
const crypto = require('crypto')
const semver = require('semver')
const baseFilename = path.join(__dirname, 'fixtures', `test_${crypto.randomBytes(16).toString('hex')}`)
const { fork } = require('child_process')
const moduleSupport = semver.satisfies(process.version, '>= 14 || >= 12.17.0 < 13.0.0')
const t = require('tap')
const test = t.test
const sgetOriginal = require('simple-get').concat
const sget = (opts, cb) => {
return new Promise((resolve, reject) => {
sgetOriginal(opts, (err, response, body) => {
if (err) return reject(err)
return resolve({ response, body })
})
})
}
const sinon = require('sinon')
const proxyquire = require('proxyquire').noPreserveCache()
const start = require('../start')
const writeFile = util.promisify(fs.writeFile)
const readFile = util.promisify(fs.readFile)
function requireUncached (module) {
delete require.cache[require.resolve(module)]
return require(module)
}
let _port = 3001
function getPort () {
return '' + _port++
}
// FIXME
// paths are relative to the root of the project
// this can be run only from there
test('should start the server', async t => {
t.plan(4)
const argv = ['-p', getPort(), './examples/plugin.js']
const fastify = await start.start(argv)
const { response, body } = await sget({
method: 'GET',
url: `http://localhost:${fastify.server.address().port}`
})
t.equal(response.statusCode, 200)
t.equal(response.headers['content-length'], '' + body.length)
t.same(JSON.parse(body), { hello: 'world' })
await fastify.close()
t.pass('server closed')
})
test('should start the server with a typescript compiled module', async t => {
t.plan(4)
const argv = ['-p', getPort(), './examples/ts-plugin.js']
const fastify = await start.start(argv)
const { response, body } = await sget({
method: 'GET',
url: `http://localhost:${fastify.server.address().port}`
})
t.equal(response.statusCode, 200)
t.equal(response.headers['content-length'], '' + body.length)
t.same(JSON.parse(body), { hello: 'world' })
await fastify.close()
t.pass('server closed')
})
test('should start the server with pretty output', async t => {
t.plan(4)
const argv = ['-p', getPort(), '-P', './examples/plugin.js']
const fastify = await start.start(argv)
const { response, body } = await sget({
method: 'GET',
url: `http://localhost:${fastify.server.address().port}`
})
t.equal(response.statusCode, 200)
t.equal(response.headers['content-length'], '' + body.length)
t.same(JSON.parse(body), { hello: 'world' })
await fastify.close()
t.pass('server closed')
})
test('should start fastify with custom options', async t => {
t.plan(1)
// here the test should fail because of the wrong certificate
// or because the server is booted without the custom options
try {
const argv = ['-p', getPort(), '-o', 'true', './examples/plugin-with-options.js']
const fastify = await start.start(argv)
await fastify.close()
t.pass('server closed')
} catch (e) {
t.pass('Custom options')
}
})
test('should start fastify with custom plugin options', async t => {
t.plan(4)
const argv = [
'-p',
getPort(),
'./examples/plugin-with-custom-options.js',
'--',
'-abc',
'--hello',
'world'
]
const fastify = await start.start(argv)
const { response, body } = await sget({
method: 'GET',
url: `http://localhost:${fastify.server.address().port}`
})
t.equal(response.statusCode, 200)
t.equal(response.headers['content-length'], '' + body.length)
t.same(JSON.parse(body), {
a: true,
b: true,
c: true,
hello: 'world'
})
await fastify.close()
t.pass('server closed')
})
test('should start fastify with custom options with a typescript compiled plugin', async t => {
t.plan(1)
// here the test should fail because of the wrong certificate
// or because the server is booted without the custom options
try {
const argv = ['-p', getPort(), '-o', 'true', './examples/ts-plugin-with-options.js']
await start.start(argv)
t.fail('Custom options')
} catch (e) {
t.pass('Custom options')
}
})
test('should start fastify with custom plugin options with a typescript compiled plugin', async t => {
t.plan(4)
const argv = [
'-p',
getPort(),
'./examples/ts-plugin-with-custom-options.js',
'--',
'-abc',
'--hello',
'world'
]
const fastify = await start.start(argv)
const { response, body } = await sget({
method: 'GET',
url: `http://localhost:${fastify.server.address().port}`
})
t.equal(response.statusCode, 200)
t.equal(response.headers['content-length'], '' + body.length)
t.same(JSON.parse(body), {
a: true,
b: true,
c: true,
hello: 'world'
})
await fastify.close()
t.pass('server closed')
})
test('should start the server at the given prefix', async t => {
t.plan(4)
const argv = ['-p', getPort(), '-x', '/api/hello', './examples/plugin.js']
const fastify = await start.start(argv)
const { response, body } = await sget({
method: 'GET',
url: `http://localhost:${fastify.server.address().port}/api/hello`
})
t.equal(response.statusCode, 200)
t.equal(response.headers['content-length'], '' + body.length)
t.same(JSON.parse(body), { hello: 'world' })
await fastify.close()
t.pass('server closed')
})
test('should start fastify at given socket path', { skip: process.platform === 'win32' }, async t => {
t.plan(1)
const sockFile = path.resolve('test.sock')
t.teardown(() => {
try {
fs.unlinkSync(sockFile)
} catch (e) { }
})
const argv = ['-s', sockFile, '-o', 'true', './examples/plugin.js']
try {
fs.unlinkSync(sockFile)
} catch (e) { }
const fastify = await start.start(argv)
await new Promise((resolve, reject) => {
const request = require('http').request({
method: 'GET',
path: '/',
socketPath: sockFile
}, function (response) {
t.same(response.statusCode, 200)
return resolve()
})
request.end()
})
t.teardown(fastify.close.bind(fastify))
})
test('should error with a good timeout value', async t => {
t.plan(1)
const start = proxyquire('../start', {
assert: {
ifError (err) {
t.equal(err.code, 'AVV_ERR_READY_TIMEOUT')
}
}
})
const port = getPort()
try {
const argv = ['-p', port, '-T', '100', './test/data/timeout-plugin.js']
await start.start(argv)
} catch (err) {
t.equal(err.code, 'AVV_ERR_READY_TIMEOUT')
}
})
test('should warn on file not found', t => {
t.plan(1)
const oldStop = start.stop
t.teardown(() => { start.stop = oldStop })
start.stop = function (message) {
t.ok(/not-found.js doesn't exist within/.test(message), message)
}
const argv = ['-p', getPort(), './data/not-found.js']
start.start(argv)
})
test('should throw on package not found', t => {
t.plan(1)
const oldStop = start.stop
t.teardown(() => { start.stop = oldStop })
start.stop = function (err) {
t.ok(/Cannot find module 'unknown-package'/.test(err.message), err.message)
}
const argv = ['-p', getPort(), './test/data/package-not-found.js']
start.start(argv)
})
test('should throw on parsing error', t => {
t.plan(1)
const oldStop = start.stop
t.teardown(() => { start.stop = oldStop })
start.stop = function (err) {
t.equal(err.constructor, SyntaxError)
}
const argv = ['-p', getPort(), './test/data/parsing-error.js']
start.start(argv)
})
test('should start the server with an async/await plugin', async t => {
if (Number(process.versions.node[0]) < 7) {
t.pass('Skip because Node version < 7')
return t.end()
}
t.plan(4)
const argv = ['-p', getPort(), './examples/async-await-plugin.js']
const fastify = await start.start(argv)
const { response, body } = await sget({
method: 'GET',
url: `http://localhost:${fastify.server.address().port}`
})
t.equal(response.statusCode, 200)
t.equal(response.headers['content-length'], '' + body.length)
t.same(JSON.parse(body), { hello: 'world' })
await fastify.close()
t.pass('server closed')
})
test('should exit without error on help', t => {
const exit = process.exit
process.exit = sinon.spy()
t.teardown(() => {
process.exit = exit
})
const argv = ['-p', getPort(), '-h', 'true']
start.start(argv)
t.ok(process.exit.called)
t.equal(process.exit.lastCall.args[0], undefined)
t.end()
})
test('should throw the right error on require file', t => {
t.plan(1)
const oldStop = start.stop
t.teardown(() => { start.stop = oldStop })
start.stop = function (err) {
t.ok(/undefinedVariable is not defined/.test(err.message), err.message)
}
const argv = ['-p', getPort(), './test/data/undefinedVariable.js']
start.start(argv)
})
test('should respond 413 - Payload too large', async t => {
t.plan(3)
const bodyTooLarge = '{1: 11}'
const bodySmaller = '{1: 1}'
const bodyLimitValue = '' + (bodyTooLarge.length + 2 - 1)
const argv = ['-p', getPort(), '--body-limit', bodyLimitValue, './examples/plugin.js']
const fastify = await start.start(argv)
const { response: responseFail } = await sget({
method: 'POST',
url: `http://localhost:${fastify.server.address().port}`,
body: bodyTooLarge,
json: true
})
t.equal(responseFail.statusCode, 413)
const { response: responseOk } = await sget({
method: 'POST',
url: `http://localhost:${fastify.server.address().port}`,
body: bodySmaller,
json: true
})
t.equal(responseOk.statusCode, 200)
await fastify.close()
t.pass('server closed')
})
test('should start the server (using env var)', async t => {
t.plan(4)
process.env.FASTIFY_PORT = getPort()
const argv = ['./examples/plugin.js']
const fastify = await start.start(argv)
const { response, body } = await sget({
method: 'GET',
url: `http://localhost:${process.env.FASTIFY_PORT}`
})
t.equal(response.statusCode, 200)
t.equal(response.headers['content-length'], '' + body.length)
t.same(JSON.parse(body), { hello: 'world' })
delete process.env.FASTIFY_PORT
await fastify.close()
t.pass('server closed')
})
test('should start the server (using PORT-env var)', async t => {
t.plan(4)
process.env.PORT = getPort()
const argv = ['./examples/plugin.js']
const fastify = await start.start(argv)
const { response, body } = await sget({
method: 'GET',
url: `http://localhost:${process.env.PORT}`
})
t.equal(response.statusCode, 200)
t.equal(response.headers['content-length'], '' + body.length)
t.same(JSON.parse(body), { hello: 'world' })
delete process.env.PORT
await fastify.close()
t.pass('server closed')
})
test('should start the server (using FASTIFY_PORT-env preceding PORT-env var)', async t => {
t.plan(4)
process.env.FASTIFY_PORT = getPort()
process.env.PORT = getPort()
const argv = ['./examples/plugin.js']
const fastify = await start.start(argv)
const { response, body } = await sget({
method: 'GET',
url: `http://localhost:${process.env.FASTIFY_PORT}`
})
t.equal(response.statusCode, 200)
t.equal(response.headers['content-length'], '' + body.length)
t.same(JSON.parse(body), { hello: 'world' })
delete process.env.FASTIFY_PORT
delete process.env.PORT
await fastify.close()
t.pass('server closed')
})
test('should start the server (using -p preceding FASTIFY_PORT-env var)', async t => {
t.plan(4)
const port = getPort()
process.env.FASTIFY_PORT = getPort()
const argv = ['-p', port, './examples/plugin.js']
const fastify = await start.start(argv)
const { response, body } = await sget({
method: 'GET',
url: `http://localhost:${port}`
})
t.equal(response.statusCode, 200)
t.equal(response.headers['content-length'], '' + body.length)
t.same(JSON.parse(body), { hello: 'world' })
delete process.env.FASTIFY_PORT
await fastify.close()
t.pass('server closed')
})
test('should start the server at the given prefix (using env var)', async t => {
t.plan(4)
process.env.FASTIFY_PORT = getPort()
process.env.FASTIFY_PREFIX = '/api/hello'
const argv = ['./examples/plugin.js']
const fastify = await start.start(argv)
const { response, body } = await sget({
method: 'GET',
url: `http://localhost:${process.env.FASTIFY_PORT}/api/hello`
})
t.equal(response.statusCode, 200)
t.equal(response.headers['content-length'], '' + body.length)
t.same(JSON.parse(body), { hello: 'world' })
delete process.env.FASTIFY_PORT
delete process.env.FASTIFY_PREFIX
await fastify.close()
t.pass('server closed')
})
test('should start the server at the given prefix (using env var read from dotenv)', async t => {
t.plan(3)
const start = proxyquire('../start', {
dotenv: {
config () {
t.pass('config called')
process.env.FASTIFY_PORT = 8080
}
}
})
const argv = ['./examples/plugin.js']
const fastify = await start.start(argv)
t.equal(fastify.server.address().port, 8080)
delete process.env.FASTIFY_PORT
await fastify.close()
t.pass('server closed')
})
test('should start the server listening on 0.0.0.0 when running in docker', async t => {
t.plan(2)
const isDocker = sinon.stub()
isDocker.returns(true)
const start = proxyquire('../start', {
'is-docker': isDocker
})
const argv = ['-p', getPort(), './examples/plugin.js']
const fastify = await start.start(argv)
t.equal(fastify.server.address().address, '0.0.0.0')
await fastify.close()
t.pass('server closed')
})
test('should start the server with watch options that the child process restart when directory changed', { skip: process.platform === 'win32' }, async (t) => {
t.plan(3)
const tmpjs = path.resolve(baseFilename + '.js')
const port = getPort()
await writeFile(tmpjs, 'hello world')
const argv = ['-p', port, '-w', './examples/plugin.js']
const fastifyEmitter = await start.start(argv)
t.teardown(async () => {
if (fs.existsSync(tmpjs)) {
fs.unlinkSync(tmpjs)
}
await fastifyEmitter.stop()
})
await once(fastifyEmitter, 'ready')
t.pass('should receive ready event')
await writeFile(tmpjs, 'hello fastify', { flag: 'a+' }) // chokidar watch can't catch change event in CI, but local test is all ok. you can remove annotation in local environment.
t.pass('change tmpjs')
// this might happen more than once but does not matter in this context
await once(fastifyEmitter, 'restart')
t.pass('should receive restart event')
})
test('should start the server with watch and verbose-watch options that the child process restart when directory changed with console message about changes ', { skip: process.platform === 'win32' }, async (t) => {
t.plan(5)
const spy = sinon.spy()
const watch = proxyquire('../lib/watch', {
'./utils': {
logWatchVerbose: spy
}
})
const start = proxyquire('../start', {
'./lib/watch': watch
})
const tmpjs = path.resolve(baseFilename + '.js')
const port = getPort()
await writeFile(tmpjs, 'hello world')
const argv = ['-p', port, '-w', '--verbose-watch', '--on-watch-event="echo changed"', './examples/plugin.js']
const fastifyEmitter = await start.start(argv)
t.teardown(async () => {
if (fs.existsSync(tmpjs)) {
fs.unlinkSync(tmpjs)
}
await fastifyEmitter.stop()
})
// listen for any of the forked processes messages
const onChanges = new Promise((resolve, reject) => {
for (const child of fastifyEmitter.childs) {
child.on('message', resolve)
setTimeout(reject, 300)
}
})
await once(fastifyEmitter, 'ready')
t.pass('should receive ready event')
await writeFile(tmpjs, 'hello fastify', { flag: 'a+' }) // chokidar watch can't catch change event in CI, but local test is all ok. you can remove annotation in local environment.
t.pass('change tmpjs')
const message = await onChanges
t.ok(message.includes('changed'), 'forked process sends "changed" message')
// this might happen more than once but does not matter in this context
await once(fastifyEmitter, 'restart')
t.pass('should receive restart event')
t.ok(spy.args.length > 0, 'should print a console message on file update')
})
test('should reload the env on restart when watching', { skip: process.platform === 'win32' }, async (t) => {
const testdir = t.testdir({
'.env': 'GREETING=world',
'plugin.js': await readFile(path.join(__dirname, '../examples/plugin-with-env.js'))
})
const cwd = process.cwd()
process.chdir(testdir)
const port = getPort()
const argv = ['-p', port, '-w', path.join(testdir, 'plugin.js')]
const fastifyEmitter = await requireUncached('../start').start(argv)
t.teardown(() => {
process.chdir(cwd)
})
await once(fastifyEmitter, 'ready')
const r1 = await sget({
method: 'GET',
url: `http://localhost:${port}`
})
t.equal(r1.response.statusCode, 200)
t.same(JSON.parse(r1.body), { hello: 'world' })
await writeFile(path.join(testdir, '.env'), 'GREETING=planet')
await once(fastifyEmitter, 'restart')
const r2 = await sget({
method: 'GET',
url: `http://localhost:${port}`
})
t.equal(r2.response.statusCode, 200)
t.same(JSON.parse(r2.body), { hello: 'world' }) /* world because when making a restart the server still passes the arguments that change the environment variable */
await fastifyEmitter.stop()
})
test('should read env variables from .env file', async (t) => {
const port = getPort()
const testdir = t.testdir({
'.env': `FASTIFY_PORT=${port}`,
'plugin.js': await readFile(path.join(__dirname, '../examples/plugin.js'))
})
const cwd = process.cwd()
process.chdir(testdir)
t.teardown(() => {
process.chdir(cwd)
})
const fastify = await requireUncached('../start').start([path.join(testdir, 'plugin.js')])
t.equal(fastify.server.address().port, +port)
const res = await sget({
method: 'GET',
url: `http://localhost:${port}`
})
t.equal(res.response.statusCode, 200)
t.same(JSON.parse(res.body), { hello: 'world' })
await fastify.close()
})
test('crash on unhandled rejection', t => {
t.plan(1)
const argv = ['-p', getPort(), './test/data/rejection.js']
const child = fork(path.join(__dirname, '..', 'start.js'), argv, { silent: true })
child.on('close', function (code) {
t.equal(code, 1)
})
})
test('should start the server with inspect options and the defalut port is 9320', async t => {
t.plan(3)
const start = proxyquire('../start', {
inspector: {
open (p) {
t.equal(p, 9320)
t.pass('inspect open called')
}
}
})
const argv = ['--d', './examples/plugin.js']
const fastify = await start.start(argv)
await fastify.close()
t.pass('server closed')
})
test('should start the server with inspect options and use the exactly port', async t => {
t.plan(3)
const port = getPort()
const start = proxyquire('../start', {
inspector: {
open (p) {
t.equal(p, Number(port))
t.pass('inspect open called')
}
}
})
const argv = ['--d', '--debug-port', port, './examples/plugin.js']
const fastify = await start.start(argv)
await fastify.close()
t.pass('server closed')
})
test('boolean env are not overridden if no arguments are passed', async t => {
t.plan(1)
process.env.FASTIFY_OPTIONS = 'true'
// here the test should fail because of the wrong certificate
// or because the server is booted without the custom options
try {
const argv = ['./examples/plugin-with-options.js']
await start.start(argv)
t.fail('Custom options')
} catch (e) {
t.pass('Custom options')
}
})
test('should support preloading custom module', async t => {
t.plan(2)
const argv = ['-r', './test/data/custom-require.js', './examples/plugin.js']
const fastify = await start.start(argv)
t.ok(GLOBAL_MODULE_1)
await fastify.close()
t.pass('server closed')
})
test('should support preloading multiple custom modules', async t => {
t.plan(3)
const argv = ['-r', './test/data/custom-require.js', '-r', './test/data/custom-require2.js', './examples/plugin.js']
const fastify = await start.start(argv)
t.ok(GLOBAL_MODULE_1)
t.ok(GLOBAL_MODULE_2)
await fastify.close()
t.pass('server closed')
})
test('preloading custom module with empty and trailing require flags should not throw', async t => {
t.plan(2)
const argv = ['-r', './test/data/custom-require.js', '-r', '', './examples/plugin.js', '-r']
const fastify = await start.start(argv)
t.ok(GLOBAL_MODULE_1)
await fastify.close()
t.pass('server closed')
})
test('preloading custom module that is not found should throw', async t => {
t.plan(2)
const oldStop = start.stop
t.teardown(() => { start.stop = oldStop })
start.stop = function (err) {
t.ok(/Cannot find module/.test(err.message), err.message)
}
const argv = ['-r', './test/data/require-missing.js', './examples/plugin.js']
const fastify = await start.start(argv)
await fastify.close()
t.pass('server closed')
})
test('preloading custom module should be done before starting server', async t => {
t.plan(4)
const argv = ['./examples/plugin-with-preloaded.js']
const fastify = await start.start(argv)
const { response, body } = await sget({
method: 'GET',
url: `http://localhost:${fastify.server.address().port}`
})
t.equal(response.statusCode, 200)
t.equal(response.headers['content-length'], '' + body.length)
t.same(JSON.parse(body), { hasPreloaded: true })
await fastify.close()
t.pass('server closed')
})
test('should support custom logger configuration', async t => {
t.plan(2)
const argv = ['-L', './test/data/custom-logger.js', './examples/plugin.js']
const fastify = await start.start(argv)
t.ok(fastify.log.test)
await fastify.close()
t.pass('server closed')
})
test('preloading a built-in module works', async t => {
t.plan(1)
const argv = ['-r', 'path', './examples/plugin.js']
const fastify = await start.start(argv)
await fastify.close()
t.pass('server closed')
})
test('preloading a module in node_modules works', async t => {
t.plan(1)
const argv = ['-r', 'tap', './examples/plugin.js']
const fastify = await start.start(argv)
await fastify.close()
t.pass('server closed')
})
test('should throw on logger configuration module not found', async t => {
t.plan(2)
const oldStop = start.stop
t.teardown(() => { start.stop = oldStop })
start.stop = function (err) {
t.ok(/Cannot find module/.test(err.message), err.message)
}
const argv = ['-L', './test/data/missing.js', './examples/plugin.js']
const fastify = await start.start(argv)
await fastify.close()
t.pass('server closed')
})
test('should throw on async plugin with one argument', async t => {
t.plan(1)
const oldStop = start.stop
t.teardown(() => { start.stop = oldStop })
start.stop = function (err) {
t.ok(/Async\/Await plugin function should contain 2 arguments./.test(err.message), err.message)
}
const argv = ['./test/data/async-plugin-with-one-argument.js']
await start.start(argv)
})
test('should start fastify with custom plugin options with a ESM typescript compiled plugin', { skip: !moduleSupport }, async t => {
t.plan(4)
const argv = [
'-p',
getPort(),
'./examples/ts-plugin-with-custom-options.mjs',
'--',
'-abc',
'--hello',
'world'
]
const fastify = await start.start(argv)
const { response, body } = await sget({
method: 'GET',
url: `http://localhost:${fastify.server.address().port}`
})
t.equal(response.statusCode, 200)
t.equal(response.headers['content-length'], '' + body.length)
t.same(JSON.parse(body), {
a: true,
b: true,
c: true,
hello: 'world'
})
await fastify.close()
t.pass('server closed')
t.end()
})
test('should throw an error when loading ESM typescript compiled plugin and ESM is not supported', { skip: moduleSupport }, async t => {
t.plan(1)
const oldStop = start.stop
t.teardown(() => { start.stop = oldStop })
start.stop = function (err) {
t.ok(/Your version of node does not support ES modules./.test(err.message), err.message)
}
const argv = ['./examples/ts-plugin-with-custom-options.mjs']
await start.start(argv)
t.end()
})
test('should start fastify with custom plugin options with a ESM plugin with package.json "type":"module"', { skip: !moduleSupport }, async t => {
t.plan(4)
const argv = [
'-p',
getPort(),
'./examples/package-type-module/ESM-plugin-with-custom-options.js',
'--',
'-abc',
'--hello',
'world'
]
const fastify = await start.start(argv)
const { response, body } = await sget({
method: 'GET',
url: `http://localhost:${fastify.server.address().port}`
})
t.equal(response.statusCode, 200)
t.equal(response.headers['content-length'], '' + body.length)
t.same(JSON.parse(body), {
a: true,
b: true,
c: true,
hello: 'world'
})
await fastify.close()
t.pass('server closed')
t.end()
})
test('should start fastify with custom server options (ignoreTrailingSlash) with a ESM plugin with package.json "type":"module"', { skip: !moduleSupport }, async t => {
t.plan(5)
const argv = [
'-p',
getPort(),
'./examples/package-type-module/ESM-plugin-with-custom-server-options.js',
'--options'
]
const fastify = await start.start(argv)
const { response, body } = await sget({
method: 'GET',
url: `http://localhost:${fastify.server.address().port}/foo`
})
t.equal(response.statusCode, 200)
t.equal(response.headers['content-length'], '' + body.length)
const { response: response2, body: body2 } = await sget({
method: 'GET',
url: `http://localhost:${fastify.server.address().port}/foo/`
})
t.equal(response2.statusCode, 200)
t.equal(response2.headers['content-length'], '' + body2.length)
await fastify.close()
t.pass('server closed')
t.end()
})
test('should start fastify with custom plugin options with a CJS plugin with package.json "type":"module"', { skip: !moduleSupport }, async t => {
t.plan(4)
const argv = [
'-p',
getPort(),
'./examples/package-type-module/CJS-plugin-with-custom-options.cjs',
'--',