Projektstart

This commit is contained in:
2026-01-22 15:49:12 +01:00
parent 7212eb6f7a
commit 57e5f652f8
10637 changed files with 2598792 additions and 64 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,564 @@
'use strict'
const { test } = require('node:test')
const Fastify = require('fastify')
const Swagger = require('@apidevtools/swagger-parser')
const fastifySwagger = require('../../../index')
const openapiOption = {
openapi: {},
refResolver: {
buildLocalReference: (json, _baseUri, _fragment, i) => {
return json.$id || `def-${i}`
}
}
}
test('support $ref schema', async (t) => {
const fastify = Fastify()
await fastify.register(fastifySwagger, openapiOption)
fastify.register(async (instance) => {
instance.addSchema({ $id: 'Order', type: 'object', properties: { id: { type: 'integer', examples: [25] } } })
instance.post('/', { schema: { body: { $ref: 'Order#' }, response: { 200: { $ref: 'Order#' } } } }, () => {})
})
await fastify.ready()
const openapiObject = fastify.swagger()
t.assert.strictEqual(typeof openapiObject, 'object')
t.assert.deepStrictEqual(Object.keys(openapiObject.components.schemas), ['Order'])
t.assert.strictEqual(openapiObject.components.schemas.Order.properties.id.example, 25)
await Swagger.validate(openapiObject)
})
test('support $ref relative pointers in params', async (t) => {
const fastify = Fastify()
await fastify.register(fastifySwagger, openapiOption)
fastify.register(async (instance) => {
instance.addSchema({
$id: 'Order',
type: 'object',
properties: {
OrderId: {
type: 'object',
properties: {
id: {
type: 'string'
}
}
}
}
})
instance.get('/:id', { schema: { params: { $ref: 'Order#/properties/OrderId' }, response: { 200: { $ref: 'Order#' } } } }, () => {})
})
await fastify.ready()
const openapiObject = fastify.swagger()
t.assert.strictEqual(typeof openapiObject, 'object')
t.assert.deepStrictEqual(Object.keys(openapiObject.components.schemas), ['Order'])
await Swagger.validate(openapiObject)
})
test('support nested $ref schema : simple test', async (t) => {
const fastify = Fastify()
await fastify.register(fastifySwagger, openapiOption)
fastify.register(async (instance) => {
instance.addSchema({ $id: 'OrderItem', type: 'object', properties: { id: { type: 'integer' } }, examples: [{ id: 1 }] })
instance.addSchema({ $id: 'ProductItem', type: 'object', properties: { id: { type: 'integer' } } })
instance.addSchema({ $id: 'Order', type: 'object', properties: { products: { type: 'array', items: { $ref: 'OrderItem' } } } })
instance.post('/', { schema: { body: { $ref: 'Order' }, response: { 200: { $ref: 'Order' } } } }, () => {})
instance.post('/other', { schema: { body: { $ref: 'ProductItem' } } }, () => {})
})
await fastify.ready()
const openapiObject = fastify.swagger()
t.assert.strictEqual(typeof openapiObject, 'object')
const schemas = openapiObject.components.schemas
t.assert.deepStrictEqual(Object.keys(schemas), ['OrderItem', 'ProductItem', 'Order'])
// ref must be prefixed by '#/components/schemas/'
t.assert.strictEqual(schemas.Order.properties.products.items.$ref, '#/components/schemas/OrderItem')
t.assert.deepStrictEqual(schemas.OrderItem.example, { id: 1 })
await Swagger.validate(openapiObject)
})
test('support nested $ref schema : complex case', async (t) => {
const fastify = Fastify()
await fastify.register(fastifySwagger, openapiOption)
fastify.register(async (instance) => {
instance.addSchema({ $id: 'schemaA', type: 'object', properties: { id: { type: 'integer' } } })
instance.addSchema({ $id: 'schemaB', type: 'object', properties: { id: { type: 'string', examples: ['ABC'] } } })
instance.addSchema({ $id: 'schemaC', type: 'object', properties: { a: { type: 'array', items: { $ref: 'schemaA' } } } })
instance.addSchema({ $id: 'schemaD', type: 'object', properties: { b: { $ref: 'schemaB' }, c: { $ref: 'schemaC' } } })
instance.post('/url1', { schema: { body: { $ref: 'schemaD' }, response: { 200: { $ref: 'schemaB' } } } }, () => {})
instance.post('/url2', { schema: { body: { $ref: 'schemaC' }, response: { 200: { $ref: 'schemaA' } } } }, () => {})
})
await fastify.ready()
const openapiObject = fastify.swagger()
t.assert.strictEqual(typeof openapiObject, 'object')
const schemas = openapiObject.components.schemas
t.assert.deepStrictEqual(Object.keys(schemas), ['schemaA', 'schemaB', 'schemaC', 'schemaD'])
// ref must be prefixed by '#/components/schemas/'
t.assert.strictEqual(schemas.schemaC.properties.a.items.$ref, '#/components/schemas/schemaA')
t.assert.strictEqual(schemas.schemaD.properties.b.$ref, '#/components/schemas/schemaB')
t.assert.strictEqual(schemas.schemaD.properties.c.$ref, '#/components/schemas/schemaC')
t.assert.strictEqual(schemas.schemaB.properties.id.example, 'ABC')
await Swagger.validate(openapiObject)
})
test('support $ref in response schema', async (t) => {
const fastify = Fastify()
await fastify.register(fastifySwagger, openapiOption)
fastify.register(function (instance, _, done) {
instance.addSchema({ $id: 'order', type: 'string', enum: ['foo'] })
instance.post('/', { schema: { response: { 200: { type: 'object', properties: { order: { $ref: 'order' } } } } } }, () => {})
done()
})
await fastify.ready()
const openapiObject = fastify.swagger()
t.assert.strictEqual(typeof openapiObject, 'object')
await Swagger.validate(openapiObject)
})
test('support $ref for enums in other schemas', async (t) => {
const fastify = Fastify()
const enumSchema = { $id: 'order', anyOf: [{ type: 'string', const: 'foo' }, { type: 'string', const: 'bar' }] }
const enumRef = { $ref: 'order' }
const objectWithEnumSchema = { $id: 'object', type: 'object', properties: { type: enumRef }, required: ['type'] }
await fastify.register(fastifySwagger, openapiOption)
await fastify.register(async (instance) => {
instance.addSchema(enumSchema)
instance.addSchema(objectWithEnumSchema)
instance.post('/', { schema: { body: { type: 'object', properties: { order: { $ref: 'order' } } } } }, async () => ({ result: 'OK' }))
})
await fastify.ready()
const responseBeforeSwagger = await fastify.inject({ method: 'POST', url: '/', payload: { order: 'foo' } })
t.assert.strictEqual(responseBeforeSwagger.statusCode, 200)
const openapiObject = fastify.swagger()
t.assert.strictEqual(typeof openapiObject, 'object')
await Swagger.validate(openapiObject)
const responseAfterSwagger = await fastify.inject({ method: 'POST', url: '/', payload: { order: 'foo' } })
t.assert.strictEqual(responseAfterSwagger.statusCode, 200)
})
test('support nested $ref schema : complex case without modifying buildLocalReference', async (t) => {
const fastify = Fastify()
await fastify.register(fastifySwagger, { openapi: {} })
fastify.register(async (instance) => {
instance.addSchema({ $id: 'schemaA', type: 'object', properties: { id: { type: 'integer' } } })
instance.addSchema({ $id: 'schemaB', type: 'object', properties: { id: { type: 'string' } } })
instance.addSchema({ $id: 'schemaC', type: 'object', properties: { a: { type: 'array', items: { $ref: 'schemaA' } } } })
instance.addSchema({ $id: 'schemaD', type: 'object', properties: { b: { $ref: 'schemaB' }, c: { $ref: 'schemaC' } } })
instance.post('/url1', { schema: { body: { $ref: 'schemaD' }, response: { 200: { $ref: 'schemaB' } } } }, () => {})
instance.post('/url2', { schema: { body: { $ref: 'schemaC' }, response: { 200: { $ref: 'schemaA' } } } }, () => {})
})
await fastify.ready()
const openapiObject = fastify.swagger()
t.assert.strictEqual(typeof openapiObject, 'object')
const schemas = openapiObject.components.schemas
t.assert.deepStrictEqual(Object.keys(schemas), ['def-0', 'def-1', 'def-2', 'def-3'])
// ref must be prefixed by '#/components/schemas/'
t.assert.strictEqual(schemas['def-2'].properties.a.items.$ref, '#/components/schemas/def-0')
t.assert.strictEqual(schemas['def-3'].properties.b.$ref, '#/components/schemas/def-1')
t.assert.strictEqual(schemas['def-3'].properties.c.$ref, '#/components/schemas/def-2')
await Swagger.validate(openapiObject)
})
test('support nested $ref with patternProperties', async (t) => {
const fastify = Fastify()
await fastify.register(fastifySwagger, { openapi: {} })
fastify.register(async (instance) => {
instance.addSchema({ $id: 'schemaA', type: 'object', properties: { id: { type: 'integer' } } })
instance.addSchema({ $id: 'schemaB', type: 'object', patternProperties: { '^[A-z]{1,10}$': { $ref: 'schemaA#' } } })
})
await fastify.ready()
const openapiObject = fastify.swagger()
t.assert.strictEqual(typeof openapiObject, 'object')
const schemas = openapiObject.components.schemas
t.assert.deepStrictEqual(Object.keys(schemas), ['def-0', 'def-1'])
// ref must be prefixed by '#/components/schemas/'
t.assert.strictEqual(schemas['def-1'].additionalProperties.$ref, '#/components/schemas/def-0')
await Swagger.validate(openapiObject)
})
test('support $ref schema in allOf in querystring', async (t) => {
const fastify = Fastify()
await fastify.register(fastifySwagger, { openapi: {} })
fastify.register(async (instance) => {
instance.addSchema({ $id: 'schemaA', type: 'object', properties: { field1: { type: 'integer' } } })
instance.get('/url1', { schema: { query: { type: 'object', allOf: [{ $ref: 'schemaA#' }, { type: 'object', properties: { field3: { type: 'boolean' } } }] }, response: { 200: { type: 'object' } } } }, async () => ({ result: 'OK' }))
})
await fastify.ready()
const openapiObject = fastify.swagger()
t.assert.strictEqual(typeof openapiObject, 'object')
const schemas = openapiObject.components.schemas
t.assert.deepStrictEqual(Object.keys(schemas), ['def-0'])
await Swagger.validate(openapiObject)
const responseAfterSwagger = await fastify.inject({ method: 'GET', url: '/url1', query: { field1: 10, field3: false } })
t.assert.strictEqual(responseAfterSwagger.statusCode, 200)
})
test('support $ref schema in allOf in headers', async (t) => {
const fastify = Fastify()
await fastify.register(fastifySwagger, { openapi: {} })
fastify.register(async (instance) => {
instance.addSchema({ $id: 'headerA', type: 'object', properties: { 'x-header-1': { type: 'string' } } })
instance.get('/url1', { schema: { headers: { allOf: [{ $ref: 'headerA#' }, { type: 'object', properties: { 'x-header-2': { type: 'string' } } }] }, response: { 200: { type: 'object' } } } }, async () => ({ result: 'OK' }))
})
await fastify.ready()
const openapiObject = fastify.swagger()
t.assert.strictEqual(typeof openapiObject, 'object')
const schemas = openapiObject.components.schemas
t.assert.deepStrictEqual(Object.keys(schemas), ['def-0'])
await Swagger.validate(openapiObject)
const responseAfterSwagger = await fastify.inject({ method: 'GET', url: '/url1', headers: { 'x-header-1': 'test', 'x-header-2': 'test' } })
t.assert.strictEqual(responseAfterSwagger.statusCode, 200)
})
test('uses examples if has property required in body', async (t) => {
t.plan(3)
const fastify = Fastify()
await fastify.register(fastifySwagger, openapiOption)
fastify.get('/', {
schema: {
query: {
type: 'object',
oneOf: [
{
properties: {
bar: { type: 'number' }
}
},
{
properties: {
foo: { type: 'string' }
}
}
]
},
response: {
200: {
type: 'object',
properties: {
result: { type: 'string' }
}
}
}
}
}, () => ({ result: 'OK' }))
await fastify.ready()
const openapiObject = fastify.swagger()
const schema = openapiObject.paths['/'].get
t.assert.ok(schema)
t.assert.ok(schema.parameters)
t.assert.deepStrictEqual(schema.parameters[0].in, 'query')
})
test('renders $ref schema with enum in headers', async (t) => {
const fastify = Fastify()
await fastify.register(fastifySwagger, { openapi: {} })
fastify.register(async (instance) => {
instance.addSchema({ $id: 'headerA', type: 'object', properties: { 'x-enum-header': { type: 'string', enum: ['OK', 'NOT_OK'] } } })
instance.get('/url1', { schema: { headers: { $ref: 'headerA#' }, response: { 200: { type: 'object' } } } }, async () => ({ result: 'OK' }))
})
await fastify.ready()
const openapiObject = fastify.swagger()
await Swagger.validate(openapiObject)
// the OpenAPI spec should show the enum
t.assert.deepStrictEqual(openapiObject.paths['/url1'].get.parameters[0].schema, { type: 'string', enum: ['OK', 'NOT_OK'] })
})
test('renders $ref schema with additional keywords', async (t) => {
const fastify = Fastify()
await fastify.register(fastifySwagger, { openapi: {} })
await fastify.register(require('@fastify/cookie'))
const cookie = {
type: 'object',
properties: {
a: { type: 'string' },
b: { type: 'string' },
c: { type: 'string' }
},
minProperties: 2
}
fastify.register(async (instance) => {
instance.addSchema({
$id: 'headerA',
type: 'object',
properties: {
cookie
}
})
instance.get('/url1', {
preValidation: async (request) => {
request.headers.cookie = request.cookies
},
schema: {
headers: {
$ref: 'headerA#'
}
}
}, async (req) => (req.headers))
})
await fastify.ready()
const openapiObject = fastify.swagger()
await Swagger.validate(openapiObject)
t.assert.deepStrictEqual(openapiObject.paths['/url1'].get.parameters[0].schema, cookie)
let res = await fastify.inject({ method: 'GET', url: 'url1', cookies: { a: 'hi', b: 'asd' } })
t.assert.deepStrictEqual(res.statusCode, 200)
res = await fastify.inject({ method: 'GET', url: 'url1', cookies: { a: 'hi' } })
t.assert.deepStrictEqual(res.statusCode, 400)
t.assert.deepStrictEqual(openapiObject.paths['/url1'].get.parameters[0].schema, cookie)
})
test('support $ref in callbacks', async (t) => {
const fastify = Fastify()
await fastify.register(fastifySwagger, openapiOption)
fastify.register(async (instance) => {
instance.addSchema({ $id: 'Subscription', type: 'object', properties: { callbackUrl: { type: 'string', examples: ['https://example.com'] } } })
instance.addSchema({ $id: 'Event', type: 'object', properties: { message: { type: 'string', examples: ['Some event happened'] } } })
instance.post('/subscribe', {
schema: {
body: {
$ref: 'Subscription#'
},
response: {
200: {
$ref: 'Subscription#'
}
},
callbacks: {
myEvent: {
'{$request.body#/callbackUrl}': {
post: {
requestBody: {
content: {
'application/json': {
schema: { $ref: 'Event#' }
}
}
},
responses: {
200: {
description: 'Success'
}
}
}
}
}
}
}
}, () => {})
})
await fastify.ready()
const openapiObject = fastify.swagger()
t.assert.strictEqual(typeof openapiObject, 'object')
t.assert.deepStrictEqual(Object.keys(openapiObject.components.schemas), ['Subscription', 'Event'])
t.assert.strictEqual(openapiObject.components.schemas.Subscription.properties.callbackUrl.example, 'https://example.com')
t.assert.strictEqual(openapiObject.components.schemas.Event.properties.message.example, 'Some event happened')
await Swagger.validate(openapiObject)
})
test('should return only ref if defs and ref is defined', async (t) => {
const fastify = Fastify()
await fastify.register(fastifySwagger, { openapi: { openapi: '3.1.0' } })
fastify.addSchema({
$id: 'sharedSchema',
humanModule: {
$defs: {
AddressSchema: {
type: 'object',
properties: {
street: {
type: 'string',
},
streetNumber: {
type: 'number',
},
},
required: [
'street',
'streetNumber',
],
$id: 'AddressSchema',
},
PersonSchema: {
type: 'object',
properties: {
name: {
type: 'string',
},
homeAddress: {
$ref: 'AddressSchema',
},
workAddress: {
$ref: 'AddressSchema',
},
},
required: [
'name',
'homeAddress',
'workAddress',
],
$id: 'PersonSchema',
},
PostRequestSchema: {
type: 'object',
properties: {
person: {
$ref: 'PersonSchema',
},
},
required: [
'person',
],
$id: 'PostRequestSchema',
},
},
},
})
fastify.get('/person', {
schema: {
response: {
200:
{
$defs: {
AddressSchema: {
type: 'object',
properties: {
street: {
type: 'string',
},
streetNumber: {
type: 'number',
},
},
required: [
'street',
'streetNumber',
],
$id: 'AddressSchema',
},
PersonSchema: {
type: 'object',
properties: {
name: {
type: 'string',
},
homeAddress: {
$ref: 'AddressSchema',
},
workAddress: {
$ref: 'AddressSchema',
},
},
required: [
'name',
'homeAddress',
'workAddress',
],
$id: 'PersonSchema',
},
PostRequestSchema: {
type: 'object',
properties: {
person: {
$ref: 'PersonSchema',
},
},
required: [
'person',
],
$id: 'PostRequestSchema',
},
},
$ref: 'PersonSchema',
}
}
},
}, async () => ({ result: 'OK' }))
await fastify.ready()
const openapiObject = fastify.swagger()
t.assert.strictEqual(typeof openapiObject, 'object')
const expectedPathContent = { 'application/json': { schema: { $ref: '#/components/schemas/def-2' } } }
t.assert.deepStrictEqual(openapiObject.paths['/person'].get.responses[200].content, expectedPathContent)
await Swagger.validate(openapiObject)
})

View File

@@ -0,0 +1,899 @@
'use strict'
const { test } = require('node:test')
const Fastify = require('fastify')
const Swagger = require('@apidevtools/swagger-parser')
const yaml = require('yaml')
const fastifySwagger = require('../../../index')
const {
openapiOption,
openapiRelativeOptions,
schemaBody,
schemaConsumes,
schemaCookies,
schemaExtension,
schemaHeaders,
schemaHeadersParams,
schemaParams,
schemaProduces,
schemaQuerystring,
schemaSecurity,
schemaOperationId
} = require('../../../examples/options')
test('openapi should return a valid swagger object', async (t) => {
t.plan(2)
const fastify = Fastify()
await fastify.register(fastifySwagger, openapiOption)
fastify.get('/', () => {})
fastify.post('/', () => {})
fastify.get('/example', schemaQuerystring, () => {})
fastify.post('/example', schemaBody, () => {})
fastify.get('/parameters/:id', schemaParams, () => {})
fastify.get('/headers', schemaHeaders, () => {})
fastify.get('/headers/:id', schemaHeadersParams, () => {})
fastify.get('/security', schemaSecurity, () => {})
await fastify.ready()
const openapiObject = fastify.swagger()
t.assert.strictEqual(typeof openapiObject, 'object')
await Swagger.validate(openapiObject)
t.assert.ok(true, 'valid swagger object')
})
test('openapi should return a valid swagger yaml', async (t) => {
t.plan(2)
const fastify = Fastify()
await fastify.register(fastifySwagger, openapiOption)
fastify.get('/', () => {})
fastify.post('/', () => {})
fastify.get('/example', schemaQuerystring, () => {})
fastify.post('/example', schemaBody, () => {})
fastify.get('/parameters/:id', schemaParams, () => {})
fastify.get('/headers', schemaHeaders, () => {})
fastify.get('/headers/:id', schemaHeadersParams, () => {})
fastify.get('/security', schemaSecurity, () => {})
await fastify.ready()
const swaggerYaml = fastify.swagger({ yaml: true })
t.assert.strictEqual(typeof swaggerYaml, 'string')
yaml.parse(swaggerYaml)
t.assert.ok(true, 'valid swagger yaml')
})
test('route options - deprecated', async (t) => {
t.plan(2)
const fastify = Fastify()
await fastify.register(fastifySwagger, openapiOption)
const opts = {
schema: {
deprecated: true,
body: {
type: 'object',
properties: {
hello: { type: 'string' },
obj: {
type: 'object',
properties: {
some: { type: 'string' }
}
}
}
}
}
}
fastify.post('/', opts, () => {})
await fastify.ready()
const openapiObject = fastify.swagger()
await Swagger.validate(openapiObject)
t.assert.ok(true, 'valid swagger object')
t.assert.ok(openapiObject.paths['/'])
})
test('route options - meta', async (t) => {
t.plan(7)
const fastify = Fastify()
await fastify.register(fastifySwagger, openapiOption)
const opts = {
schema: {
operationId: 'doSomething',
summary: 'Route summary',
tags: ['tag'],
description: 'Route description',
servers: [
{
url: 'https://localhost'
}
],
externalDocs: {
description: 'Find more info here',
url: 'https://swagger.io'
}
}
}
fastify.get('/', opts, () => {})
await fastify.ready()
const openapiObject = fastify.swagger()
const api = await Swagger.validate(openapiObject)
const definedPath = api.paths['/'].get
t.assert.ok(definedPath)
t.assert.strictEqual(opts.schema.operationId, definedPath.operationId)
t.assert.strictEqual(opts.schema.summary, definedPath.summary)
t.assert.deepEqual(opts.schema.tags, definedPath.tags)
t.assert.strictEqual(opts.schema.description, definedPath.description)
t.assert.strictEqual(opts.schema.servers, definedPath.servers)
t.assert.strictEqual(opts.schema.externalDocs, definedPath.externalDocs)
})
test('route options - produces', async (t) => {
t.plan(2)
const fastify = Fastify()
await fastify.register(fastifySwagger, openapiOption)
fastify.get('/', schemaProduces, () => {})
await fastify.ready()
const openapiObject = fastify.swagger()
const api = await Swagger.validate(openapiObject)
const definedPath = api.paths['/'].get
t.assert.ok(definedPath)
t.assert.deepEqual(definedPath.responses[200].content, {
'*/*': {
schema: {
type: 'object',
properties: {
hello: {
description: 'hello',
type: 'string'
}
},
required: ['hello']
}
}
})
})
test('route options - cookies', async (t) => {
t.plan(2)
const fastify = Fastify()
await fastify.register(fastifySwagger, openapiOption)
fastify.get('/', schemaCookies, () => {})
await fastify.ready()
const openapiObject = fastify.swagger()
const api = await Swagger.validate(openapiObject)
const definedPath = api.paths['/'].get
t.assert.ok(definedPath)
t.assert.deepEqual(definedPath.parameters, [
{
required: false,
in: 'cookie',
name: 'bar',
schema: {
type: 'string'
}
}
])
})
test('route options - extension', async (t) => {
t.plan(4)
const fastify = Fastify()
await fastify.register(fastifySwagger, { openapi: { 'x-ternal': true } })
fastify.get('/', schemaExtension, () => {})
await fastify.ready()
const openapiObject = fastify.swagger()
const api = await Swagger.validate(openapiObject)
t.assert.ok(api['x-ternal'])
t.assert.deepEqual(api['x-ternal'], true)
const definedPath = api.paths['/'].get
t.assert.ok(definedPath)
t.assert.deepEqual(definedPath['x-tension'], true)
})
test('parses form parameters when all api consumes application/x-www-form-urlencoded', async (t) => {
t.plan(2)
const fastify = Fastify()
await fastify.register(fastifySwagger, openapiOption)
fastify.post('/', schemaConsumes, () => {})
await fastify.ready()
const openapiObject = fastify.swagger()
const api = await Swagger.validate(openapiObject)
const definedPath = api.paths['/'].post
t.assert.ok(definedPath)
t.assert.deepEqual(definedPath.requestBody.content, {
'application/x-www-form-urlencoded': {
schema: {
type: 'object',
properties: {
hello: {
description: 'hello',
type: 'string'
}
},
required: ['hello']
}
}
})
})
test('route options - method', async (t) => {
t.plan(2)
const fastify = Fastify()
await fastify.register(fastifySwagger, openapiOption)
fastify.route({
method: ['GET', 'POST'],
url: '/',
handler: function (request, reply) {
reply.send({ hello: 'world' })
}
})
await fastify.ready()
const openapiObject = fastify.swagger()
t.assert.strictEqual(typeof openapiObject, 'object')
await Swagger.validate(openapiObject)
t.assert.ok(true, 'valid swagger object')
})
test('cookie, query, path description', async (t) => {
t.plan(6)
const fastify = Fastify()
await fastify.register(fastifySwagger, openapiOption)
const schemaCookies = {
schema: {
cookies: {
type: 'object',
properties: {
bar: { type: 'string', description: 'Bar' }
}
}
}
}
const schemaQuerystring = {
schema: {
querystring: {
type: 'object',
properties: {
hello: { type: 'string', description: 'Hello' }
}
}
}
}
// test without description as other test case for params already have description
const schemaParams = {
schema: {
params: {
type: 'object',
properties: {
id: { type: 'string' }
}
}
}
}
fastify.get('/', schemaCookies, () => {})
fastify.get('/example', schemaQuerystring, () => {})
fastify.get('/parameters/:id', schemaParams, () => {})
await fastify.ready()
const openapiObject = fastify.swagger()
const api = await Swagger.validate(openapiObject)
const cookiesPath = api.paths['/'].get
t.assert.ok(cookiesPath)
t.assert.deepEqual(cookiesPath.parameters, [
{
required: false,
in: 'cookie',
name: 'bar',
description: 'Bar',
schema: {
type: 'string'
}
}
])
const querystringPath = api.paths['/example'].get
t.assert.ok(querystringPath)
t.assert.deepEqual(querystringPath.parameters, [
{
required: false,
in: 'query',
name: 'hello',
description: 'Hello',
schema: {
type: 'string'
}
}
])
const paramPath = api.paths['/parameters/{id}'].get
t.assert.ok(paramPath)
t.assert.deepEqual(paramPath.parameters, [
{
required: true,
in: 'path',
name: 'id',
schema: {
type: 'string'
}
}
])
})
test('cookie and query with serialization type', async (t) => {
t.plan(4)
const fastify = Fastify({
ajv: {
plugins: [
function (ajv) {
ajv.addKeyword({
keyword: 'x-consume'
})
}
]
}
})
await fastify.register(fastifySwagger, openapiOption)
const schemaCookies = {
schema: {
cookies: {
type: 'object',
properties: {
bar: {
type: 'object',
'x-consume': 'application/json',
required: ['foo'],
properties: {
foo: { type: 'string' },
bar: { type: 'string' }
}
}
}
}
}
}
const schemaQuerystring = {
schema: {
querystring: {
type: 'object',
properties: {
hello: {
type: 'object',
'x-consume': 'application/json',
required: ['bar'],
properties: {
bar: { type: 'string' },
baz: { type: 'string' }
}
}
}
}
}
}
fastify.get('/', schemaCookies, () => {})
fastify.get('/example', schemaQuerystring, () => {})
await fastify.ready()
const openapiObject = fastify.swagger()
const api = await Swagger.validate(openapiObject)
const cookiesPath = api.paths['/'].get
t.assert.ok(cookiesPath)
t.assert.deepEqual(cookiesPath.parameters, [
{
[Symbol.for('@fastify/swagger.rawRequired')]: ['foo'],
required: false,
in: 'cookie',
name: 'bar',
content: {
'application/json': {
schema: {
type: 'object',
required: ['foo'],
properties: {
foo: { type: 'string' },
bar: { type: 'string' }
}
}
}
}
}
])
const querystringPath = api.paths['/example'].get
t.assert.ok(querystringPath)
t.assert.deepEqual(querystringPath.parameters, [
{
required: false,
in: 'query',
name: 'hello',
content: {
'application/json': {
schema: {
type: 'object',
required: ['bar'],
properties: {
bar: { type: 'string' },
baz: { type: 'string' }
}
}
}
}
}
])
})
test('openapi should pass through operationId', async (t) => {
t.plan(2)
const fastify = Fastify()
await fastify.register(fastifySwagger, openapiOption)
fastify.get('/hello', schemaOperationId, () => {})
await fastify.ready()
const openapiObject = fastify.swagger()
t.assert.strictEqual(typeof openapiObject, 'object')
await Swagger.validate(openapiObject)
t.assert.ok(true, 'valid swagger object')
})
test('openapi should pass through Links', async (t) => {
t.plan(3)
const fastify = Fastify()
await fastify.register(fastifySwagger, openapiOption)
fastify.get('/user/:id', {
schema: {
params: {
type: 'object',
properties: {
id: {
type: 'string',
description: 'the user identifier, as userId'
}
},
required: ['id']
},
response: {
200: {
type: 'object',
properties: {
uuid: {
type: 'string',
format: 'uuid'
}
}
}
}
},
links: {
200: {
address: {
operationId: 'getUserAddress',
parameters: {
id: '$request.path.id'
}
}
}
}
}, () => {})
fastify.get('/user/:id/address', {
schema: {
operationId: 'getUserAddress',
params: {
type: 'object',
properties: {
id: {
type: 'string',
description: 'the user identifier, as userId'
}
},
required: ['id']
},
response: {
200: {
type: 'string'
}
}
}
}, () => {})
await fastify.ready()
const openapiObject = fastify.swagger()
t.assert.strictEqual(typeof openapiObject, 'object')
const api = await Swagger.validate(openapiObject)
t.assert.ok(true, 'valid swagger object')
t.assert.deepEqual(api.paths['/user/{id}'].get.responses['200'].links, {
address: {
operationId: 'getUserAddress',
parameters: {
id: '$request.path.id'
}
}
})
})
test('links without status code', async (t) => {
t.plan(1)
const fastify = Fastify()
await fastify.register(fastifySwagger, openapiOption)
fastify.get('/user/:id', {
schema: {
params: {
type: 'object',
properties: {
id: {
type: 'string',
description: 'the user identifier, as userId'
}
},
required: ['id']
},
response: {
200: {
type: 'object',
properties: {
uuid: {
type: 'string',
format: 'uuid'
}
}
}
}
},
links: {
201: {
address: {
operationId: 'getUserAddress',
parameters: {
id: '$request.path.id'
}
}
}
}
}, () => {})
fastify.get('/user/:id/address', {
schema: {
operationId: 'getUserAddress',
params: {
type: 'object',
properties: {
id: {
type: 'string',
description: 'the user identifier, as userId'
}
},
required: ['id']
},
response: {
200: {
type: 'string'
}
}
}
}, () => {})
await fastify.ready()
t.assert.throws(() => fastify.swagger(), new Error('missing status code 201 in route /user/:id'))
})
test('security headers ignored when declared in security and securityScheme', async (t) => {
t.plan(6)
const fastify = Fastify()
await fastify.register(fastifySwagger, openapiOption)
fastify.get('/address1/:id', {
schema: {
headers: {
type: 'object',
properties: {
apiKey: {
type: 'string',
description: 'api token'
},
bearerAuth: {
type: 'string',
description: 'authorization bearer'
},
id: {
type: 'string',
description: 'common field'
}
}
}
}
}, () => {})
fastify.get('/address2/:id', {
schema: {
headers: {
type: 'object',
properties: {
authKey: {
type: 'string',
description: 'auth token'
},
id: {
type: 'string',
description: 'common field'
}
}
}
}
}, () => {})
await fastify.ready()
const openapiObject = fastify.swagger()
t.assert.strictEqual(typeof openapiObject, 'object')
const api = await Swagger.validate(openapiObject)
t.assert.ok(true, 'valid swagger object')
t.assert.ok(api.paths['/address1/{id}'].get.parameters.find(({ name }) => (name === 'id')))
t.assert.ok(api.paths['/address2/{id}'].get.parameters.find(({ name }) => (name === 'id')))
t.assert.strictEqual(api.paths['/address1/{id}'].get.parameters.find(({ name }) => (name === 'apiKey')), undefined)
t.assert.ok(api.paths['/address2/{id}'].get.parameters.find(({ name }) => (name === 'authKey')))
})
test('security querystrings ignored when declared in security and securityScheme', async (t) => {
t.plan(6)
const fastify = Fastify()
await fastify.register(fastifySwagger, {
openapi: {
components: {
securitySchemes: {
apiKey: {
type: 'apiKey',
name: 'apiKey',
in: 'query'
}
}
},
security: [{
apiKey: []
}]
}
})
fastify.get('/address1/:id', {
schema: {
querystring: {
type: 'object',
properties: {
apiKey: {
type: 'string',
description: 'api token'
},
id: {
type: 'string',
description: 'common field'
}
}
}
}
}, () => {})
fastify.get('/address2/:id', {
schema: {
querystring: {
type: 'object',
properties: {
authKey: {
type: 'string',
description: 'auth token'
},
id: {
type: 'string',
description: 'common field'
}
}
}
}
}, () => {})
await fastify.ready()
const openapiObject = fastify.swagger()
t.assert.strictEqual(typeof openapiObject, 'object')
const api = await Swagger.validate(openapiObject)
t.assert.ok(true, 'valid swagger object')
t.assert.ok(api.paths['/address1/{id}'].get.parameters.find(({ name }) => (name === 'id')))
t.assert.ok(api.paths['/address2/{id}'].get.parameters.find(({ name }) => (name === 'id')))
t.assert.strictEqual(api.paths['/address1/{id}'].get.parameters.find(({ name }) => (name === 'apiKey')), undefined)
t.assert.ok(api.paths['/address2/{id}'].get.parameters.find(({ name }) => (name === 'authKey')))
})
test('security cookies ignored when declared in security and securityScheme', async (t) => {
t.plan(6)
const fastify = Fastify()
await fastify.register(fastifySwagger, {
openapi: {
components: {
securitySchemes: {
apiKey: {
type: 'apiKey',
name: 'apiKey',
in: 'cookie'
}
}
},
security: [{
apiKey: []
}]
}
})
fastify.get('/address1/:id', {
schema: {
cookies: {
type: 'object',
properties: {
apiKey: {
type: 'string',
description: 'api token'
},
id: {
type: 'string',
description: 'common field'
}
}
}
}
}, () => {})
fastify.get('/address2/:id', {
schema: {
cookies: {
type: 'object',
properties: {
authKey: {
type: 'string',
description: 'auth token'
},
id: {
type: 'string',
description: 'common field'
}
}
}
}
}, () => {})
await fastify.ready()
const openapiObject = fastify.swagger()
t.assert.strictEqual(typeof openapiObject, 'object')
const api = await Swagger.validate(openapiObject)
t.assert.ok(true, 'valid swagger object')
t.assert.ok(api.paths['/address1/{id}'].get.parameters.find(({ name }) => (name === 'id')))
t.assert.ok(api.paths['/address2/{id}'].get.parameters.find(({ name }) => (name === 'id')))
t.assert.strictEqual(api.paths['/address1/{id}'].get.parameters.find(({ name }) => (name === 'apiKey')), undefined)
t.assert.ok(api.paths['/address2/{id}'].get.parameters.find(({ name }) => (name === 'authKey')))
})
test('path params on relative url', async (t) => {
t.plan(2)
const fastify = Fastify()
await fastify.register(fastifySwagger, openapiRelativeOptions)
const schemaParams = {
schema: {
params: {
type: 'object',
properties: {
id: { type: 'string' }
}
}
}
}
fastify.get('/parameters/:id', schemaParams, () => {})
await fastify.ready()
const openapiObject = fastify.swagger()
const api = await Swagger.validate(openapiObject)
const paramPath = api.paths['/parameters/{id}'].get
t.assert.ok(paramPath)
t.assert.deepEqual(paramPath.parameters, [
{
required: true,
in: 'path',
name: 'id',
schema: {
type: 'string'
}
}
])
})
test('verify generated path param definition with route prefixing', async (t) => {
const opts = {
schema: {}
}
const fastify = Fastify()
await fastify.register(fastifySwagger, openapiRelativeOptions)
await fastify.register(function (app, _, done) {
app.get('/:userId', opts, () => {})
done()
}, { prefix: '/v1' })
await fastify.ready()
const swaggerObject = fastify.swagger()
const api = await Swagger.validate(swaggerObject)
const definedPath = api.paths['/v1/{userId}'].get
t.assert.deepEqual(definedPath.parameters, [{
schema: {
type: 'string'
},
in: 'path',
name: 'userId',
required: true
}])
})

File diff suppressed because it is too large Load Diff