ajv/spec/issues/50_refs_with_definitions.sp...

50 lines
1.1 KiB
JavaScript

'use strict';
var Ajv = require('../ajv');
var should = require('../chai').should();
describe('issue #50: references with "definitions"', function () {
it('should be supported by addSchema', spec('addSchema'));
it('should be supported by compile', spec('addSchema'));
function spec(method) {
return function() {
var result;
var ajv = new Ajv;
ajv[method]({
$id: 'http://example.com/test/person.json#',
definitions: {
name: { type: 'string' }
},
type: 'object',
properties: {
name: { $ref: '#/definitions/name'}
}
});
ajv[method]({
$id: 'http://example.com/test/employee.json#',
type: 'object',
properties: {
person: { $ref: '/test/person.json#' },
role: { type: 'string' }
}
});
result = ajv.validate('http://example.com/test/employee.json#', {
person: {
name: 'Alice'
},
role: 'Programmer'
});
result. should.equal(true);
should.equal(ajv.errors, null);
};
}
});