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.

140 lines
3.1 KiB

4 years ago
'use strict'
const test = require('tap').test
const build = require('..')
test('patternProperties', (t) => {
t.plan(1)
const stringify = build({
title: 'patternProperties',
type: 'object',
properties: {
str: {
type: 'string'
}
},
patternProperties: {
foo: {
type: 'string'
}
}
})
const obj = { str: 'test', foo: 42, ofoo: true, foof: 'string', objfoo: { a: true }, notMe: false }
t.equal(stringify(obj), '{"str":"test","foo":"42","ofoo":"true","foof":"string","objfoo":"[object Object]"}')
})
test('patternProperties should not change properties', (t) => {
t.plan(1)
const stringify = build({
title: 'patternProperties should not change properties',
type: 'object',
properties: {
foo: {
type: 'string'
}
},
patternProperties: {
foo: {
type: 'number'
}
}
})
const obj = { foo: '42', ofoo: 42 }
t.equal(stringify(obj), '{"foo":"42","ofoo":42}')
})
test('patternProperties - string coerce', (t) => {
t.plan(1)
const stringify = build({
title: 'check string coerce',
type: 'object',
properties: {},
patternProperties: {
foo: {
type: 'string'
}
}
})
const obj = { foo: true, ofoo: 42, arrfoo: ['array', 'test'], objfoo: { a: 'world' } }
t.equal(stringify(obj), '{"foo":"true","ofoo":"42","arrfoo":"array,test","objfoo":"[object Object]"}')
})
test('patternProperties - number coerce', (t) => {
t.plan(1)
const stringify = build({
title: 'check number coerce',
type: 'object',
properties: {},
patternProperties: {
foo: {
type: 'number'
}
}
})
const obj = { foo: true, ofoo: '42', xfoo: 'string', arrfoo: [1, 2], objfoo: { num: 42 } }
t.equal(stringify(obj), '{"foo":1,"ofoo":42,"xfoo":null,"arrfoo":null,"objfoo":null}')
})
test('patternProperties - boolean coerce', (t) => {
t.plan(1)
const stringify = build({
title: 'check boolean coerce',
type: 'object',
properties: {},
patternProperties: {
foo: {
type: 'boolean'
}
}
})
const obj = { foo: 'true', ofoo: 0, arrfoo: [1, 2], objfoo: { a: true } }
t.equal(stringify(obj), '{"foo":true,"ofoo":false,"arrfoo":true,"objfoo":true}')
})
test('patternProperties - object coerce', (t) => {
t.plan(1)
const stringify = build({
title: 'check object coerce',
type: 'object',
properties: {},
patternProperties: {
foo: {
type: 'object',
properties: {
answer: {
type: 'number'
}
}
}
}
})
const obj = { objfoo: { answer: 42 } }
t.equal(stringify(obj), '{"objfoo":{"answer":42}}')
})
test('patternProperties - array coerce', (t) => {
t.plan(1)
const stringify = build({
title: 'check array coerce',
type: 'object',
properties: {},
patternProperties: {
foo: {
type: 'array',
items: {
type: 'string'
}
}
}
})
const obj = { foo: 'true', ofoo: 0, arrfoo: [1, 2], objfoo: { tyrion: 'lannister' } }
t.equal(stringify(obj), '{"foo":["t","r","u","e"],"ofoo":[],"arrfoo":["1","2"],"objfoo":[]}')
})