fatsify核心功能示例测试!!!
This commit is contained in:
54
node_modules/fastify/test/diagnostics-channel/sync-request.test.js
generated
vendored
Normal file
54
node_modules/fastify/test/diagnostics-channel/sync-request.test.js
generated
vendored
Normal file
@@ -0,0 +1,54 @@
|
||||
'use strict'
|
||||
|
||||
const { test } = require('node:test')
|
||||
const diagnostics = require('node:diagnostics_channel')
|
||||
const Fastify = require('../..')
|
||||
const Request = require('../../lib/request')
|
||||
const Reply = require('../../lib/reply')
|
||||
|
||||
test('diagnostics channel sync events fire in expected order', async t => {
|
||||
t.plan(13)
|
||||
let callOrder = 0
|
||||
let firstEncounteredMessage
|
||||
|
||||
diagnostics.subscribe('tracing:fastify.request.handler:start', (msg) => {
|
||||
t.assert.strictEqual(callOrder++, 0)
|
||||
firstEncounteredMessage = msg
|
||||
t.assert.ok(msg.request instanceof Request)
|
||||
t.assert.ok(msg.reply instanceof Reply)
|
||||
t.assert.ok(msg.route)
|
||||
t.assert.strictEqual(msg.route.url, '/:id')
|
||||
t.assert.strictEqual(msg.route.method, 'GET')
|
||||
})
|
||||
|
||||
diagnostics.subscribe('tracing:fastify.request.handler:end', (msg) => {
|
||||
t.assert.ok(msg.request instanceof Request)
|
||||
t.assert.ok(msg.reply instanceof Reply)
|
||||
t.assert.strictEqual(callOrder++, 1)
|
||||
t.assert.strictEqual(msg, firstEncounteredMessage)
|
||||
})
|
||||
|
||||
diagnostics.subscribe('tracing:fastify.request.handler:error', (msg) => {
|
||||
t.assert.fail('should not trigger error channel')
|
||||
})
|
||||
|
||||
const fastify = Fastify()
|
||||
fastify.route({
|
||||
method: 'GET',
|
||||
url: '/:id',
|
||||
handler: function (req, reply) {
|
||||
return { hello: 'world' }
|
||||
}
|
||||
})
|
||||
|
||||
const fastifyServer = await fastify.listen({ port: 0 })
|
||||
t.after(() => { fastify.close() })
|
||||
|
||||
const response = await fetch(fastifyServer + '/7', {
|
||||
method: 'GET'
|
||||
})
|
||||
t.assert.ok(response.ok)
|
||||
t.assert.strictEqual(response.status, 200)
|
||||
const body = await response.text()
|
||||
t.assert.deepStrictEqual(JSON.parse(body), { hello: 'world' })
|
||||
})
|
||||
Reference in New Issue
Block a user