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.
415 lines
10 KiB
415 lines
10 KiB
4 years ago
|
'use strict'
|
||
|
|
||
|
const t = require('tap')
|
||
|
const test = t.test
|
||
|
const sget = require('simple-get').concat
|
||
|
const fs = require('fs')
|
||
|
const resolve = require('path').resolve
|
||
|
const zlib = require('zlib')
|
||
|
const pump = require('pump')
|
||
|
const Fastify = require('..')
|
||
|
const errors = require('http-errors')
|
||
|
const JSONStream = require('JSONStream')
|
||
|
const send = require('send')
|
||
|
const Readable = require('stream').Readable
|
||
|
const split = require('split2')
|
||
|
|
||
|
test('should respond with a stream', t => {
|
||
|
t.plan(8)
|
||
|
const fastify = Fastify()
|
||
|
|
||
|
fastify.get('/', function (req, reply) {
|
||
|
const stream = fs.createReadStream(__filename, 'utf8')
|
||
|
reply.code(200).send(stream)
|
||
|
})
|
||
|
|
||
|
fastify.get('/error', function (req, reply) {
|
||
|
const stream = fs.createReadStream('not-existing-file', 'utf8')
|
||
|
reply.code(200).send(stream)
|
||
|
})
|
||
|
|
||
|
fastify.listen(0, err => {
|
||
|
t.error(err)
|
||
|
fastify.server.unref()
|
||
|
|
||
|
sget(`http://localhost:${fastify.server.address().port}`, function (err, response, data) {
|
||
|
t.error(err)
|
||
|
t.strictEqual(response.headers['content-type'], 'application/octet-stream')
|
||
|
t.strictEqual(response.statusCode, 200)
|
||
|
|
||
|
fs.readFile(__filename, (err, expected) => {
|
||
|
t.error(err)
|
||
|
t.equal(expected.toString(), data.toString())
|
||
|
})
|
||
|
})
|
||
|
|
||
|
sget(`http://localhost:${fastify.server.address().port}/error`, function (err, response) {
|
||
|
t.error(err)
|
||
|
t.strictEqual(response.statusCode, 500)
|
||
|
})
|
||
|
})
|
||
|
})
|
||
|
|
||
|
test('should trigger the onSend hook', t => {
|
||
|
t.plan(4)
|
||
|
const fastify = Fastify()
|
||
|
|
||
|
fastify.get('/', (req, reply) => {
|
||
|
reply.send(fs.createReadStream(__filename, 'utf8'))
|
||
|
})
|
||
|
|
||
|
fastify.addHook('onSend', (req, reply, payload, next) => {
|
||
|
t.ok(payload._readableState)
|
||
|
reply.header('Content-Type', 'application/javascript')
|
||
|
next()
|
||
|
})
|
||
|
|
||
|
fastify.inject({
|
||
|
url: '/'
|
||
|
}, (err, res) => {
|
||
|
t.error(err)
|
||
|
t.strictEqual(res.headers['content-type'], 'application/javascript')
|
||
|
t.strictEqual(res.payload, fs.readFileSync(__filename, 'utf8'))
|
||
|
fastify.close()
|
||
|
})
|
||
|
})
|
||
|
|
||
|
test('should trigger the onSend hook only twice if pumping the stream fails, first with the stream, second with the serialized error', t => {
|
||
|
t.plan(5)
|
||
|
const fastify = Fastify()
|
||
|
|
||
|
fastify.get('/', (req, reply) => {
|
||
|
reply.send(fs.createReadStream('not-existing-file', 'utf8'))
|
||
|
})
|
||
|
|
||
|
let counter = 0
|
||
|
fastify.addHook('onSend', (req, reply, payload, next) => {
|
||
|
if (counter === 0) {
|
||
|
t.ok(payload._readableState)
|
||
|
} else if (counter === 1) {
|
||
|
const error = JSON.parse(payload)
|
||
|
t.strictEqual(error.statusCode, 500)
|
||
|
}
|
||
|
counter++
|
||
|
next()
|
||
|
})
|
||
|
|
||
|
fastify.listen(0, err => {
|
||
|
t.error(err)
|
||
|
|
||
|
fastify.server.unref()
|
||
|
|
||
|
sget(`http://localhost:${fastify.server.address().port}`, function (err, response) {
|
||
|
t.error(err)
|
||
|
t.strictEqual(response.statusCode, 500)
|
||
|
})
|
||
|
})
|
||
|
})
|
||
|
|
||
|
test('onSend hook stream', t => {
|
||
|
t.plan(4)
|
||
|
const fastify = Fastify()
|
||
|
|
||
|
fastify.get('/', function (req, reply) {
|
||
|
reply.send({ hello: 'world' })
|
||
|
})
|
||
|
|
||
|
fastify.addHook('onSend', (req, reply, payload, next) => {
|
||
|
const gzStream = zlib.createGzip()
|
||
|
|
||
|
reply.header('Content-Encoding', 'gzip')
|
||
|
pump(
|
||
|
fs.createReadStream(resolve(process.cwd() + '/test/stream.test.js'), 'utf8'),
|
||
|
gzStream,
|
||
|
t.error
|
||
|
)
|
||
|
next(null, gzStream)
|
||
|
})
|
||
|
|
||
|
fastify.inject({
|
||
|
url: '/',
|
||
|
method: 'GET'
|
||
|
}, (err, res) => {
|
||
|
t.error(err)
|
||
|
t.strictEqual(res.headers['content-encoding'], 'gzip')
|
||
|
const file = fs.readFileSync(resolve(process.cwd() + '/test/stream.test.js'), 'utf8')
|
||
|
const payload = zlib.gunzipSync(res.rawPayload)
|
||
|
t.strictEqual(payload.toString('utf-8'), file)
|
||
|
fastify.close()
|
||
|
})
|
||
|
})
|
||
|
|
||
|
test('Destroying streams prematurely', t => {
|
||
|
t.plan(6)
|
||
|
|
||
|
let fastify = null
|
||
|
const logStream = split(JSON.parse)
|
||
|
try {
|
||
|
fastify = Fastify({
|
||
|
logger: {
|
||
|
stream: logStream,
|
||
|
level: 'warn'
|
||
|
}
|
||
|
})
|
||
|
} catch (e) {
|
||
|
t.fail()
|
||
|
}
|
||
|
const stream = require('stream')
|
||
|
const http = require('http')
|
||
|
|
||
|
// Test that "premature close" errors are logged with level warn
|
||
|
logStream.once('data', line => {
|
||
|
t.equal(line.msg, 'response terminated with an error with headers already sent')
|
||
|
t.equal(line.level, 40)
|
||
|
})
|
||
|
|
||
|
fastify.get('/', function (request, reply) {
|
||
|
t.pass('Received request')
|
||
|
|
||
|
var sent = false
|
||
|
var reallyLongStream = new stream.Readable({
|
||
|
read: function () {
|
||
|
if (!sent) {
|
||
|
this.push(Buffer.from('hello\n'))
|
||
|
}
|
||
|
sent = true
|
||
|
}
|
||
|
})
|
||
|
|
||
|
reply.send(reallyLongStream)
|
||
|
})
|
||
|
|
||
|
fastify.listen(0, err => {
|
||
|
t.error(err)
|
||
|
fastify.server.unref()
|
||
|
|
||
|
var port = fastify.server.address().port
|
||
|
|
||
|
http.get(`http://localhost:${port}`, function (response) {
|
||
|
t.strictEqual(response.statusCode, 200)
|
||
|
response.on('readable', function () {
|
||
|
response.destroy()
|
||
|
})
|
||
|
|
||
|
// Node bug? Node never emits 'close' here.
|
||
|
response.on('aborted', function () {
|
||
|
t.pass('Response closed')
|
||
|
})
|
||
|
})
|
||
|
})
|
||
|
})
|
||
|
|
||
|
test('Destroying streams prematurely should call close method', t => {
|
||
|
t.plan(7)
|
||
|
|
||
|
let fastify = null
|
||
|
const logStream = split(JSON.parse)
|
||
|
try {
|
||
|
fastify = Fastify({
|
||
|
logger: {
|
||
|
stream: logStream,
|
||
|
level: 'warn'
|
||
|
}
|
||
|
})
|
||
|
} catch (e) {
|
||
|
t.fail()
|
||
|
}
|
||
|
const stream = require('stream')
|
||
|
const http = require('http')
|
||
|
|
||
|
// Test that "premature close" errors are logged with level warn
|
||
|
logStream.once('data', line => {
|
||
|
t.equal(line.msg, 'response terminated with an error with headers already sent')
|
||
|
t.equal(line.level, 40)
|
||
|
})
|
||
|
|
||
|
fastify.get('/', function (request, reply) {
|
||
|
t.pass('Received request')
|
||
|
|
||
|
var sent = false
|
||
|
var reallyLongStream = new stream.Readable({
|
||
|
read: function () {
|
||
|
if (!sent) {
|
||
|
this.push(Buffer.from('hello\n'))
|
||
|
}
|
||
|
sent = true
|
||
|
}
|
||
|
})
|
||
|
reallyLongStream.destroy = undefined
|
||
|
reallyLongStream.close = () => t.ok('called')
|
||
|
reply.send(reallyLongStream)
|
||
|
})
|
||
|
|
||
|
fastify.listen(0, err => {
|
||
|
t.error(err)
|
||
|
fastify.server.unref()
|
||
|
|
||
|
var port = fastify.server.address().port
|
||
|
|
||
|
http.get(`http://localhost:${port}`, function (response) {
|
||
|
t.strictEqual(response.statusCode, 200)
|
||
|
response.on('readable', function () {
|
||
|
response.destroy()
|
||
|
})
|
||
|
// Node bug? Node never emits 'close' here.
|
||
|
response.on('aborted', function () {
|
||
|
t.pass('Response closed')
|
||
|
})
|
||
|
})
|
||
|
})
|
||
|
})
|
||
|
|
||
|
test('Destroying streams prematurely should call abort method', t => {
|
||
|
t.plan(7)
|
||
|
|
||
|
let fastify = null
|
||
|
const logStream = split(JSON.parse)
|
||
|
try {
|
||
|
fastify = Fastify({
|
||
|
logger: {
|
||
|
stream: logStream,
|
||
|
level: 'warn'
|
||
|
}
|
||
|
})
|
||
|
} catch (e) {
|
||
|
t.fail()
|
||
|
}
|
||
|
const stream = require('stream')
|
||
|
const http = require('http')
|
||
|
|
||
|
// Test that "premature close" errors are logged with level warn
|
||
|
logStream.once('data', line => {
|
||
|
t.equal(line.msg, 'response terminated with an error with headers already sent')
|
||
|
t.equal(line.level, 40)
|
||
|
})
|
||
|
|
||
|
fastify.get('/', function (request, reply) {
|
||
|
t.pass('Received request')
|
||
|
|
||
|
var sent = false
|
||
|
var reallyLongStream = new stream.Readable({
|
||
|
read: function () {
|
||
|
if (!sent) {
|
||
|
this.push(Buffer.from('hello\n'))
|
||
|
}
|
||
|
sent = true
|
||
|
}
|
||
|
})
|
||
|
reallyLongStream.destroy = undefined
|
||
|
reallyLongStream.close = undefined
|
||
|
reallyLongStream.abort = () => t.ok('called')
|
||
|
reply.send(reallyLongStream)
|
||
|
})
|
||
|
|
||
|
fastify.listen(0, err => {
|
||
|
t.error(err)
|
||
|
fastify.server.unref()
|
||
|
|
||
|
var port = fastify.server.address().port
|
||
|
|
||
|
http.get(`http://localhost:${port}`, function (response) {
|
||
|
t.strictEqual(response.statusCode, 200)
|
||
|
response.on('readable', function () {
|
||
|
response.destroy()
|
||
|
})
|
||
|
// Node bug? Node never emits 'close' here.
|
||
|
response.on('aborted', function () {
|
||
|
t.pass('Response closed')
|
||
|
})
|
||
|
})
|
||
|
})
|
||
|
})
|
||
|
|
||
|
test('should respond with a stream1', t => {
|
||
|
t.plan(5)
|
||
|
const fastify = Fastify()
|
||
|
|
||
|
fastify.get('/', function (req, reply) {
|
||
|
const stream = JSONStream.stringify()
|
||
|
reply.code(200).type('application/json').send(stream)
|
||
|
stream.write({ hello: 'world' })
|
||
|
stream.end({ a: 42 })
|
||
|
})
|
||
|
|
||
|
fastify.listen(0, err => {
|
||
|
t.error(err)
|
||
|
fastify.server.unref()
|
||
|
|
||
|
sget(`http://localhost:${fastify.server.address().port}`, function (err, response, body) {
|
||
|
t.error(err)
|
||
|
t.strictEqual(response.headers['content-type'], 'application/json')
|
||
|
t.strictEqual(response.statusCode, 200)
|
||
|
t.deepEqual(JSON.parse(body), [{ hello: 'world' }, { a: 42 }])
|
||
|
})
|
||
|
})
|
||
|
})
|
||
|
|
||
|
test('return a 404 if the stream emits a 404 error', t => {
|
||
|
t.plan(5)
|
||
|
|
||
|
const fastify = Fastify()
|
||
|
|
||
|
fastify.get('/', function (request, reply) {
|
||
|
t.pass('Received request')
|
||
|
|
||
|
var reallyLongStream = new Readable({
|
||
|
read: function () {
|
||
|
setImmediate(() => {
|
||
|
this.emit('error', new errors.NotFound())
|
||
|
})
|
||
|
}
|
||
|
})
|
||
|
|
||
|
reply.send(reallyLongStream)
|
||
|
})
|
||
|
|
||
|
fastify.listen(0, err => {
|
||
|
t.error(err)
|
||
|
fastify.server.unref()
|
||
|
|
||
|
var port = fastify.server.address().port
|
||
|
|
||
|
sget(`http://localhost:${port}`, function (err, response) {
|
||
|
t.error(err)
|
||
|
t.strictEqual(response.headers['content-type'], 'application/json; charset=utf-8')
|
||
|
t.strictEqual(response.statusCode, 404)
|
||
|
})
|
||
|
})
|
||
|
})
|
||
|
|
||
|
test('should support send module 200 and 404', t => {
|
||
|
t.plan(8)
|
||
|
const fastify = Fastify()
|
||
|
|
||
|
fastify.get('/', function (req, reply) {
|
||
|
const stream = send(req.req, __filename)
|
||
|
reply.code(200).send(stream)
|
||
|
})
|
||
|
|
||
|
fastify.get('/error', function (req, reply) {
|
||
|
const stream = send(req.req, 'non-existing-file')
|
||
|
reply.code(200).send(stream)
|
||
|
})
|
||
|
|
||
|
fastify.listen(0, err => {
|
||
|
t.error(err)
|
||
|
fastify.server.unref()
|
||
|
|
||
|
sget(`http://localhost:${fastify.server.address().port}`, function (err, response, data) {
|
||
|
t.error(err)
|
||
|
t.strictEqual(response.headers['content-type'], 'application/octet-stream')
|
||
|
t.strictEqual(response.statusCode, 200)
|
||
|
|
||
|
fs.readFile(__filename, (err, expected) => {
|
||
|
t.error(err)
|
||
|
t.equal(expected.toString(), data.toString())
|
||
|
})
|
||
|
})
|
||
|
|
||
|
sget(`http://localhost:${fastify.server.address().port}/error`, function (err, response) {
|
||
|
t.error(err)
|
||
|
t.strictEqual(response.statusCode, 404)
|
||
|
})
|
||
|
})
|
||
|
})
|