pi-test-data
Version:
Manage test data for automation
66 lines (57 loc) • 1.53 kB
JavaScript
'use strict'
const test = require('tap').test
const fjs = require('..')
function build (opts) {
return fjs({
title: 'default string',
type: 'object',
properties: {
firstName: {
type: 'string'
}
},
required: ['firstName']
}, opts)
}
test('activate debug mode', t => {
t.plan(2)
const debugMode = build({ debugMode: true })
t.type(debugMode, Array)
t.match(debugMode.toString.toString(), 'join', 'to string override')
})
test('activate debug mode truthy', t => {
t.plan(2)
const debugMode = build({ debugMode: 'yes' })
t.type(debugMode, Array)
t.match(debugMode.toString.toString(), 'join', 'to string override')
})
test('to string auto-consistent', t => {
t.plan(2)
const debugMode = build({ debugMode: 1 })
t.type(debugMode, Array)
const str = debugMode.toString()
const compiled = fjs.restore(str)
const tobe = JSON.stringify({ firstName: 'Foo' })
t.same(compiled({ firstName: 'Foo', surname: 'bar' }), tobe, 'surname evicted')
})
test('to string auto-consistent with ajv', t => {
t.plan(2)
const debugMode = fjs({
title: 'object with multiple types field',
type: 'object',
properties: {
str: {
anyOf: [{
type: 'string'
}, {
type: 'boolean'
}]
}
}
}, { debugMode: 1 })
t.type(debugMode, Array)
const str = debugMode.toString()
const compiled = fjs.restore(str)
const tobe = JSON.stringify({ str: 'Foo' })
t.same(compiled({ str: 'Foo', void: 'me' }), tobe)
})