content-type.test.js — fastify Source File
Architecture documentation for content-type.test.js, a javascript file in the fastify codebase.
Entity Profile
Source Code
'use strict'
const { describe, test } = require('node:test')
const ContentType = require('../lib/content-type')
const Fastify = require('..')
test('should remove content-type for setErrorHandler', async t => {
t.plan(8)
let count = 0
const fastify = Fastify()
fastify.setErrorHandler(function (error, request, reply) {
t.assert.strictEqual(error.message, 'kaboom')
t.assert.strictEqual(reply.hasHeader('content-type'), false)
reply.code(400).send({ foo: 'bar' })
})
fastify.addHook('onSend', async function (request, reply, payload) {
count++
t.assert.strictEqual(typeof payload, 'string')
switch (count) {
case 1: {
// should guess the correct content-type based on payload
t.assert.strictEqual(reply.getHeader('content-type'), 'text/plain; charset=utf-8')
throw Error('kaboom')
}
case 2: {
// should guess the correct content-type based on payload
t.assert.strictEqual(reply.getHeader('content-type'), 'application/json; charset=utf-8')
return payload
}
default: {
t.fail('should not reach')
}
}
})
fastify.get('/', function (request, reply) {
reply.send('plain-text')
})
const { statusCode, body } = await fastify.inject({ method: 'GET', path: '/' })
t.assert.strictEqual(statusCode, 400)
t.assert.strictEqual(body, JSON.stringify({ foo: 'bar' }))
})
describe('ContentType class', () => {
test('returns empty instance for empty value', (t) => {
let found = new ContentType('')
t.assert.equal(found.isEmpty, true)
found = new ContentType('undefined')
t.assert.equal(found.isEmpty, true)
found = new ContentType()
t.assert.equal(found.isEmpty, true)
})
test('indicates media type is not correct format', (t) => {
let found = new ContentType('foo')
t.assert.equal(found.isEmpty, true)
t.assert.equal(found.isValid, false)
// ... (84 more lines)
Source
Frequently Asked Questions
What does content-type.test.js do?
content-type.test.js is a source file in the fastify codebase, written in javascript.
Where is content-type.test.js in the architecture?
content-type.test.js is located at test/content-type.test.js (directory: test).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free