60 lines
1.6 KiB
JavaScript
60 lines
1.6 KiB
JavaScript
'use strict'
|
|
|
|
const t = require('tap')
|
|
const AjvCompiler = require('../index')
|
|
|
|
const postSchema = Object.freeze({
|
|
$schema: 'http://json-schema.org/draft-07/schema#',
|
|
type: 'object',
|
|
$id: 'http://mydomain.com/user',
|
|
title: 'User schema',
|
|
description: 'Contains all user fields',
|
|
properties: {
|
|
username: { type: 'string', minLength: 4 },
|
|
firstName: { type: 'string', minLength: 1 },
|
|
lastName: { type: 'string', minLength: 1 },
|
|
email: { type: 'string' },
|
|
password: { type: 'string', minLength: 6 },
|
|
bio: { type: 'string' }
|
|
},
|
|
required: ['username', 'firstName', 'lastName', 'email', 'bio', 'password']
|
|
})
|
|
|
|
const patchSchema = Object.freeze({
|
|
$schema: 'http://json-schema.org/draft-07/schema#',
|
|
type: 'object',
|
|
$id: 'http://mydomain.com/user',
|
|
title: 'User schema',
|
|
description: 'Contains all user fields',
|
|
properties: {
|
|
firstName: { type: 'string', minLength: 1 },
|
|
lastName: { type: 'string', minLength: 1 },
|
|
bio: { type: 'string' }
|
|
}
|
|
})
|
|
|
|
const fastifyAjvOptionsDefault = Object.freeze({
|
|
customOptions: {}
|
|
})
|
|
|
|
t.test('must not store schema on compile', t => {
|
|
t.plan(4)
|
|
const factory = AjvCompiler()
|
|
const compiler = factory({}, fastifyAjvOptionsDefault)
|
|
const postFn = compiler({ schema: postSchema })
|
|
const patchFn = compiler({ schema: patchSchema })
|
|
|
|
const resultForPost = postFn({})
|
|
t.equal(resultForPost, false)
|
|
t.has(postFn.errors, [
|
|
{
|
|
keyword: 'required',
|
|
message: "must have required property 'username'"
|
|
}
|
|
])
|
|
|
|
const resultForPatch = patchFn({})
|
|
t.ok(resultForPatch)
|
|
t.notOk(patchFn.errors)
|
|
})
|