Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 uid=33(www-data) gid=33(www-data) groups=33(www-data) Safe-mode: OFF (not secure) /usr/local/lib/node_modules/homebridge-config-ui-x/node_modules/fastify/test/ drwxr-xr-x | |
| Viewing file: Select action/file-type: 'use strict'
const t = require('tap')
const test = t.test
const sget = require('simple-get').concat
const fastify = require('..')()
const opts = {
schema: {
response: {
'2xx': {
type: 'object',
properties: {
hello: {
type: 'string'
}
}
}
}
}
}
fastify.get('/return', opts, function (req, reply) {
const promise = new Promise((resolve, reject) => {
resolve({ hello: 'world' })
})
return promise
})
fastify.get('/return-error', opts, function (req, reply) {
const promise = new Promise((resolve, reject) => {
reject(new Error('some error'))
})
return promise
})
fastify.get('/double', function (req, reply) {
setTimeout(function () {
// this should not throw
reply.send({ hello: 'world' })
}, 20)
return Promise.resolve({ hello: '42' })
})
fastify.get('/thenable', opts, function (req, reply) {
setImmediate(function () {
reply.send({ hello: 'world' })
})
return reply
})
fastify.get('/thenable-error', opts, function (req, reply) {
setImmediate(function () {
reply.send(new Error('kaboom'))
})
return reply
})
fastify.get('/return-reply', opts, function (req, reply) {
return reply.send({ hello: 'world' })
})
fastify.listen(0, err => {
t.error(err)
fastify.server.unref()
test('shorthand - sget return promise es6 get', t => {
t.plan(4)
sget({
method: 'GET',
url: 'http://localhost:' + fastify.server.address().port + '/return'
}, (err, response, body) => {
t.error(err)
t.equal(response.statusCode, 200)
t.equal(response.headers['content-length'], '' + body.length)
t.same(JSON.parse(body), { hello: 'world' })
})
})
test('shorthand - sget promise es6 get return error', t => {
t.plan(2)
sget({
method: 'GET',
url: 'http://localhost:' + fastify.server.address().port + '/return-error'
}, (err, response, body) => {
t.error(err)
t.equal(response.statusCode, 500)
})
})
test('sget promise double send', t => {
t.plan(3)
sget({
method: 'GET',
url: 'http://localhost:' + fastify.server.address().port + '/double'
}, (err, response, body) => {
t.error(err)
t.equal(response.statusCode, 200)
t.same(JSON.parse(body), { hello: '42' })
})
})
test('thenable', t => {
t.plan(4)
sget({
method: 'GET',
url: 'http://localhost:' + fastify.server.address().port + '/thenable'
}, (err, response, body) => {
t.error(err)
t.equal(response.statusCode, 200)
t.equal(response.headers['content-length'], '' + body.length)
t.same(JSON.parse(body), { hello: 'world' })
})
})
test('thenable (error)', t => {
t.plan(2)
sget({
method: 'GET',
url: 'http://localhost:' + fastify.server.address().port + '/thenable-error'
}, (err, response, body) => {
t.error(err)
t.equal(response.statusCode, 500)
})
})
test('return-reply', t => {
t.plan(4)
sget({
method: 'GET',
url: 'http://localhost:' + fastify.server.address().port + '/return-reply'
}, (err, response, body) => {
t.error(err)
t.equal(response.statusCode, 200)
t.equal(response.headers['content-length'], '' + body.length)
t.same(JSON.parse(body), { hello: 'world' })
})
})
})
|
:: Command execute :: | |
--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0085 ]-- |