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.
38 lines
669 B
38 lines
669 B
'use strict'
|
|
|
|
const test = require('tap').test
|
|
const validator = require('is-my-json-valid')
|
|
const build = require('..')
|
|
|
|
test('object with RexExp', (t) => {
|
|
t.plan(3)
|
|
|
|
const schema = {
|
|
title: 'object with RegExp',
|
|
type: 'object',
|
|
properties: {
|
|
reg: {
|
|
type: 'string'
|
|
}
|
|
}
|
|
}
|
|
|
|
const obj = {
|
|
reg: /"([^"]|\\")*"/
|
|
}
|
|
|
|
const stringify = build(schema)
|
|
const validate = validator(schema)
|
|
const output = stringify(obj)
|
|
|
|
try {
|
|
JSON.parse(output)
|
|
t.pass()
|
|
} catch (e) {
|
|
t.fail()
|
|
}
|
|
|
|
t.equal(obj.reg.source, new RegExp(JSON.parse(output).reg).source)
|
|
t.ok(validate(JSON.parse(output)), 'valid schema')
|
|
})
|