-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.test.js
More file actions
286 lines (266 loc) · 6.48 KB
/
Copy pathindex.test.js
File metadata and controls
286 lines (266 loc) · 6.48 KB
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
'use strict'
const Hapi = require('@hapi/hapi')
const Lab = require('@hapi/lab')
const { expect } = require('@hapi/code')
const lab = (exports.lab = Lab.script())
const getUrl = () => {
return 'mysql://dbuser@dbhost/dbname'
}
lab.experiment('#hapi-mysql2 tests', () => {
let server
lab.beforeEach(async () => {
server = Hapi.Server()
})
lab.test('should reject invalid options', async () => {
try {
await server.register({
plugin: require('./'),
options: {
ssettings: {}
}
})
} catch (err) {
expect(err).to.exist()
}
})
lab.test('should reject invalid url without hostname', async () => {
try {
await server.register({
plugin: require('./'),
options: {
settings: 'mysql://'
}
})
} catch (err) {
expect(err).to.exist()
expect(err.message).to.equal('Invalid connection URL')
}
})
lab.test('should reject invalid url without pathname', async () => {
try {
await server.register({
plugin: require('./'),
options: {
settings: 'mysql://localhost'
}
})
} catch (err) {
expect(err).to.exist()
expect(err.message).to.equal('Invalid connection URL')
}
})
lab.test('should reject invalid decorate', async () => {
try {
await server.register({
plugin: require('./'),
options: {
settings: 'mysql://localhost',
decorate: 1
}
})
} catch (err) {
expect(err).to.exist()
}
})
lab.test('should be able to register plugin with just URL', async () => {
await server
.register({
plugin: require('./'),
options: {
settings: getUrl()
}
})
.then(async () => {
const pool = server.plugins['hapi-mysql2'].pool
expect(server.registrations['hapi-mysql2']).to.exist()
await pool.end()
})
})
lab.test('should log configuration upon successful connection', async () => {
let logEntry
server.events.once('log', entry => {
logEntry = entry
})
await server.register({
plugin: require('./'),
options: {
settings: getUrl()
}
})
expect(logEntry).to.equal(
{
channel: 'app',
timestamp: logEntry.timestamp,
tags: ['hapi-mysql2', 'info'],
data: 'hapi connection created for dbuser@dbhost/dbname'
},
{ prototype: false }
)
await server.plugins['hapi-mysql2'].pool.end()
})
lab.test('should be able to find the plugin on exposed objects', async () => {
await server.register({
plugin: require('./'),
options: {
settings: getUrl()
}
})
server.route({
method: 'GET',
path: '/',
handler: request => {
const plugin = request.server.plugins['hapi-mysql2']
expect(plugin.pool).to.exist()
expect(plugin.lib).to.exist()
return '.'
}
})
await server.inject({
validate: false,
method: 'GET',
url: '/'
})
await server.plugins['hapi-mysql2'].pool.end()
})
lab.test(
'should be able to find the plugin on decorated objects',
async () => {
await server.register({
plugin: require('./'),
options: {
settings: getUrl(),
decorate: true
}
})
server.route({
method: 'GET',
path: '/',
handler: request => {
const plugin = request.server.mysql
expect(plugin.pool).to.exist()
expect(plugin.lib).to.exist()
return null
}
})
await server.inject({
validate: false,
method: 'GET',
url: '/'
})
server.mysql.pool.end()
}
)
lab.test(
'should be able to find the plugin on custom decorated objects',
async () => {
await server.register({
plugin: require('./'),
options: {
settings: getUrl(),
decorate: 'testMysql'
}
})
server.route({
method: 'GET',
path: '/',
handler: request => {
const plugin = request.server.testMysql
expect(plugin.pool).to.exist()
expect(plugin.lib).to.exist()
return '.'
}
})
await server.inject({
validate: false,
method: 'GET',
url: '/'
})
await server.testMysql.pool.end()
}
)
lab.test(
'should be able to find the plugin on custom multiple decorated objects',
async () => {
await server.register({
plugin: require('./'),
options: [
{
settings: getUrl(),
decorate: 'testMysql1'
},
{
settings: getUrl(),
decorate: 'testMysql2'
}
]
})
server.route({
method: 'GET',
path: '/multiple',
handler: request => {
const testMysql1 = request.server.testMysql1
const testMysql2 = request.server.testMysql2
expect(testMysql1.pool).to.exist()
expect(testMysql1.lib).to.exist()
expect(testMysql2.pool).to.exist()
expect(testMysql2.lib).to.exist()
return null
}
})
await server.inject({
validate: false,
method: 'GET',
url: '/multiple'
})
await server.testMysql1.pool.end()
await server.testMysql2.pool.end()
}
)
lab.test('should fail to mix different decorations', async () => {
try {
await server.register({
plugin: require('./'),
options: [
{
settings: getUrl(),
decorate: true
},
{
settings: getUrl(),
decorate: 'testMysql'
}
]
})
} catch (err) {
expect(err).to.exist()
expect(err.message).to.equal(
'You cannot mix different types of decorate options'
)
}
})
lab.test('should shut down pool when server stops', async () => {
let logEntry
server.events.on('log', entry => {
logEntry = entry
})
await server.register({
plugin: require('./'),
options: [
{
settings: getUrl(),
decorate: true
}
]
})
await server.stop()
expect(logEntry).to.equal(
{
channel: 'app',
timestamp: logEntry.timestamp,
tags: ['hapi-mysql2', 'info'],
data: 'ending mysql connection pool for dbuser@dbhost/dbname'
},
{ prototype: false }
)
})
})