chai-json-schema-ajv
一个用于验证 JSON Schema 的 Chai 插件。
它基于 ajv,一个 JSON Schema 验证器。
| 版本 | ajv 版本 | JSON Schema 版本 | 
|---|---|---|
| v1 | 4.11.8 | JSON Schema 草案 4 | 
| v2 | 5.5.2 | JSON Schema 草案-06 | 
| v3 | ^6.7.0 | JSON Schema 草案-07 | 
| v4 | >=4 <7 | |
| v5 | >=4 <7 | 与 v4 相同,但消息格式不同 | 
| v5.2 | >=4 | 
安装
npm i ajv --save-dev # Or any version you prefer `npm i ajv@4 --save-dev`
npm i chai-json-schema-ajv --save-dev
使用
验证数据 (jsonSchema)
const chai = require('chai')
chai.use(require('chai-json-schema-ajv'))
const expect = chai.expect
const assert = chai.assert
const apple = {
  name: 'foo',
  color: ['red', 'green', 'yellow'],
  value: 10
}
const car = {
  name: 'bar',
  speed: 1.1
}
const schema = {
  title: 'fruit schema v0.1',
  type: 'object',
  required: ['name', 'color', 'value'],
  properties: {
    name: {
      type: 'string',
      minLength: 3
    },
    color: {
      type: 'array',
      minItems: 1,
      uniqueItems: true,
      items: {
        type: 'string'
      }
    },
    value: {
      type: 'integer',
      minimum: 5
    }
  }
}
expect(apple).to.be.jsonSchema(schema, 'custom flag')
expect(car).to.not.be.jsonSchema(schema, 'custom flag')
assert.jsonSchema(apple, schema, 'custom flag')
assert.notJsonSchema(car, schema, 'custom flag')
验证 Schema (validJsonSchema)
const chai = require('chai')
chai.use(require('chai-json-schema-ajv'))
const expect = chai.expect
const assert = chai.assert
const schema = {
  title: 'valid schema',
  type: 'object',
  required: ['name'],
  properties: {
    name: {
      type: 'string',
      minLength: 3
    }
  }
}
expect(schema, 'custom flag').to.be.validJsonSchema
expect({ type: '__invalid__' }, 'custom flag').to.not.be.validJsonSchema
assert.validJsonSchema(schema, 'custom flag')
assert.notValidJsonSchema({ type: '__invalid__' }, 'custom flag')
自定义选项
选项也会传递给 ajv
...
const options = { ... }
chai.use(
  require('chai-json-schema-ajv').create(options)
)
...
// Basically, it's same as `new Ajv(options)`
选项 verbose
默认错误消息由 ajv.errorsText 解析。
...
chai.use(
  require('chai-json-schema-ajv')
)
...
expected data to match json-schema
data should have required property 'color'
如果你使用选项 {verbose: true},它将打印完整的错误。
...
chai.use(
  require('chai-json-schema-ajv').create({
    verbose: true
  })
)
...
expected { name: 'bar', speed: 1.1 } to match json-schema
[ { keyword: 'required',
    dataPath: '',
    schemaPath: '#/required',
    params: { missingProperty: 'color' },
    message: 'should have required property \'color\'',
    schema: 
     { name: { type: 'string', minLength: 3 },
       color: 
        { type: 'array',
          minItems: 1,
          uniqueItems: true,
          items: { type: 'string' } },
       value: { type: 'integer', minimum: 5 } },
    parentSchema: 
     { title: 'fruit schema v0.1',
       type: 'object',
       required: [ 'name', 'color', 'value' ],
       properties: 
        { name: { type: 'string', minLength: 3 },
          color: 
           { type: 'array',
             minItems: 1,
             uniqueItems: true,
             items: { type: 'string' } },
          value: { type: 'integer', minimum: 5 } } },
    data: { name: 'bar', speed: 1.1 } } ]
选项 ajv
如果你想重用 ajv 实例,你可以
const ajv = new Ajv
...
chai.use(
  require('chai-json-schema-ajv').create({
    ajv
  })
)
...
assert.ok(ajv === chai.ajv)
访问 ajv 实例
...
chai.use(
  require('chai-json-schema-ajv')
)
...
assert.ok(chai.ajv instanceof Ajv)
TODO
- 支持浏览器端
- 迁移到 es2017 async/await
- 添加 linter
- 将选项发送给 ajv(感谢 @dimac)
许可证
MIT