-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.js
190 lines (124 loc) · 4.86 KB
/
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
const fetch = require('node-fetch');
const {spawn} = require('child_process');
const path = require('path');
test("load route", async done => {
const fastifyClient = spawn(process.execPath, [path.join(__dirname, './example.js')]);
fastifyClient.on('error', done);
await new Promise((resolve, reject) => {
fastifyClient.stdout.on('data', data => {
if (data.toString('utf8').includes('1337')) {
resolve();
}
});
});
const response = await fetch('http://127.0.0.1:1337/test');
const data = await response.json();
expect(data).toBeTruthy();
expect(data).toHaveProperty('success');
expect(data.success).toBeTruthy();
fastifyClient.on('exit', (code) => code === 0 ? done() : done(code));
fastifyClient.kill();
});
test('load nested route', async done => {
const fastifyClient = spawn(process.execPath, [path.join(__dirname, './example.js')]);
fastifyClient.on('error', done);
await new Promise((resolve, reject) => {
fastifyClient.stdout.on('data', data => {
if (data.toString('utf8').includes('1337')) {
resolve();
}
});
});
const response = await fetch('http://127.0.0.1:1337/nested/test');
const data = await response.json();
expect(data).toBeTruthy();
expect(data).toHaveProperty('success');
expect(data.success).toBeTruthy();
fastifyClient.on('exit', (code) => code === 0 ? done() : done(code));
fastifyClient.kill();
});
test("other instance name", async done => {
const fastifyClient = spawn(process.execPath, [path.join(__dirname, './alternative.js')]);
fastifyClient.on('error', done);
await new Promise((resolve, reject) => {
fastifyClient.stdout.on('data', data => {
if (data.toString('utf8').includes('1337')) {
resolve();
}
});
});
const response = await fetch('http://127.0.0.1:1337/test');
const data = await response.json();
expect(data).toBeTruthy();
expect(data).toHaveProperty('success');
expect(data.success).toBeTruthy();
fastifyClient.on('exit', (code) => code === 0 ? done() : done(code));
fastifyClient.kill();
});
test("optional injections", async done => {
const fastifyClient = spawn(process.execPath, [path.join(__dirname, './example.js')]);
fastifyClient.on('error', done);
await new Promise((resolve, reject) => {
fastifyClient.stdout.on('data', data => {
if (data.toString('utf8').includes('1337')) {
resolve();
}
});
});
const response = await fetch('http://127.0.0.1:1337/test');
const data = await response.json();
expect(data).toBeTruthy();
expect(data).toHaveProperty('success');
expect(data).toHaveProperty('test');
expect(data.test).toEqual(1337);
expect(data.success).toBeTruthy();
fastifyClient.on('exit', (code) => code === 0 ? done() : done(code));
fastifyClient.kill();
});
test("relative require", async done => {
const fastifyClient = spawn(process.execPath, [path.join(__dirname, './example.js')]);
fastifyClient.on('error', done);
await new Promise((resolve, reject) => {
fastifyClient.stdout.on('data', data => {
if (data.toString('utf8').includes('1337')) {
resolve();
}
});
});
const response = await fetch('http://127.0.0.1:1337/nested/test');
const data = await response.json();
expect(data).toBeTruthy();
expect(data).toHaveProperty('success');
expect(data).toHaveProperty('pi');
expect(data.pi).toEqual(3.14);
expect(data.success).toBeTruthy();
fastifyClient.on('exit', (code) => code === 0 ? done() : done(code));
fastifyClient.kill();
});
test("multiple fastify instance", async done => {
const fastifyClient = spawn(process.execPath, [path.join(__dirname, './multi-instance-test.js')]);
fastifyClient.on('error', done);
await new Promise((resolve, reject) => {
fastifyClient.stdout.on('data', data => {
if (data.toString('utf8').includes('1337')) {
resolve();
}
});
});
const response = await fetch('http://127.0.0.1:1337/test');
const data = await response.json();
expect(data).toBeTruthy();
expect(data).toHaveProperty('success');
expect(data).toHaveProperty('test');
expect(data.test).toEqual(1337);
expect(data.success).toBeTruthy();
const response2 = await fetch('http://127.0.0.1:1338/test');
const data2 = await response2.json();
expect(data2).toBeTruthy();
expect(data2).toHaveProperty('success');
expect(data2).toHaveProperty('test');
expect(data2.test).toEqual(1338);
expect(data2.success).toBeTruthy();
fastifyClient.on('exit', (code) => code === 0 ? done() : done(code));
fastifyClient.kill();
});