You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
1.1 KiB
62 lines
1.1 KiB
3 years ago
|
'use strict'
|
||
|
|
||
|
const t = require('tap')
|
||
|
const test = t.test
|
||
|
const proxyquire = require('proxyquire')
|
||
|
|
||
|
test('diagnostics_channel when present and subscribers', t => {
|
||
|
t.plan(3)
|
||
|
|
||
|
let fastifyInHook
|
||
|
|
||
|
const dc = {
|
||
|
channel (name) {
|
||
|
t.equal(name, 'fastify.initialization')
|
||
|
return {
|
||
|
hasSubscribers: true,
|
||
|
publish (event) {
|
||
|
t.ok(event.fastify)
|
||
|
fastifyInHook = event.fastify
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
'@noCallThru': true
|
||
|
}
|
||
|
|
||
|
const fastify = proxyquire('../fastify', {
|
||
|
diagnostics_channel: dc
|
||
|
})()
|
||
|
t.equal(fastifyInHook, fastify)
|
||
|
})
|
||
|
|
||
|
test('diagnostics_channel when present and no subscribers', t => {
|
||
|
t.plan(1)
|
||
|
|
||
|
const dc = {
|
||
|
channel (name) {
|
||
|
t.equal(name, 'fastify.initialization')
|
||
|
return {
|
||
|
hasSubscribers: false,
|
||
|
publish () {
|
||
|
t.fail('publish should not be called')
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
'@noCallThru': true
|
||
|
}
|
||
|
|
||
|
proxyquire('../fastify', {
|
||
|
diagnostics_channel: dc
|
||
|
})()
|
||
|
})
|
||
|
|
||
|
test('diagnostics_channel when not present', t => {
|
||
|
t.plan(1)
|
||
|
|
||
|
t.doesNotThrow(() => {
|
||
|
proxyquire('../fastify', {
|
||
|
diagnostics_channel: null
|
||
|
})()
|
||
|
})
|
||
|
})
|