ajv/spec/coercion.spec.js

339 lines
8.7 KiB
JavaScript
Raw Normal View History

2016-01-17 04:05:06 +03:00
'use strict';
var Ajv = require('./ajv')
, should = require('./chai').should();
var coercionRules = {
'string': {
'number': [
{ from: 1, to: '1' },
{ from: 1.5, to: '1.5' },
{ from: 2e100, to: '2e+100' }
],
'boolean': [
{ from: false, to: 'false' },
{ from: true, to: 'true' }
],
'null': [
{ from: null, to: '' }
],
'object': [
{ from: {}, to: undefined }
],
'array': [
{ from: [], to: undefined }
2016-01-17 04:05:06 +03:00
]
},
'number': {
'string': [
{ from: '1', to: 1 },
{ from: '1.5', to: 1.5 },
{ from: '2e10', to: 2e10 },
{ from: '1a', to: undefined },
{ from: 'abc', to: undefined },
{ from: '', to: undefined }
],
'boolean': [
{ from: false, to: 0 },
{ from: true, to: 1 }
],
'null': [
{ from: null, to: 0 }
],
'object': [
{ from: {}, to: undefined }
],
'array': [
{ from: [], to: undefined }
2016-01-17 04:05:06 +03:00
]
},
'integer': {
'string': [
{ from: '1', to: 1 },
{ from: '1.5', to: undefined },
{ from: '2e10', to: 2e10 },
{ from: '1a', to: undefined },
{ from: 'abc', to: undefined },
{ from: '', to: undefined }
],
'boolean': [
{ from: false, to: 0 },
{ from: true, to: 1 }
],
'null': [
{ from: null, to: 0 }
],
'object': [
{ from: {}, to: undefined }
],
'array': [
{ from: [], to: undefined }
2016-01-17 04:05:06 +03:00
]
},
'boolean': {
'string': [
{ from: 'false', to: false },
{ from: 'true', to: true },
{ from: '', to: undefined },
{ from: 'abc', to: undefined },
],
'number': [
{ from: 0, to: false },
{ from: 1, to: true },
{ from: 2, to: undefined },
{ from: 2.5, to: undefined }
],
'null': [
{ from: null, to: false }
],
'object': [
{ from: {}, to: undefined }
],
'array': [
{ from: [], to: undefined }
2016-01-17 04:05:06 +03:00
]
},
'null': {
'string': [
{ from: '', to: null },
{ from: 'abc', to: undefined },
{ from: 'null', to: undefined }
2016-01-17 04:05:06 +03:00
],
'number': [
{ from: 0, to: null },
{ from: 1, to: undefined }
2016-01-17 04:05:06 +03:00
],
'boolean': [
{ from: false, to: null },
{ from: true, to: undefined }
],
'object': [
{ from: {}, to: undefined }
],
'array': [
{ from: [], to: undefined }
]
},
'object': {
'all': [
{ type: 'string', from: 'abc', to: undefined },
{ type: 'number', from: 1, to: undefined },
{ type: 'boolean', from: true, to: undefined },
{ type: 'null', from: null, to: undefined },
{ type: 'array', from: [], to: undefined }
]
},
'array': {
'all': [
{ type: 'string', from: 'abc', to: undefined },
{ type: 'number', from: 1, to: undefined },
{ type: 'boolean', from: true, to: undefined },
{ type: 'null', from: null, to: undefined },
{ type: 'object', from: {}, to: undefined }
2016-01-17 04:05:06 +03:00
]
}
};
describe('Type coercion', function () {
var ajv, fullAjv, instances;
beforeEach(function() {
ajv = Ajv({ coerceTypes: true, verbose: true });
fullAjv = Ajv({ coerceTypes: true, verbose: true, allErrors: true });
instances = [ ajv, fullAjv ];
});
it('should coerce scalar values', function() {
testRules(function (test, schema, canCoerce, toType, fromType) {
instances.forEach(function (ajv) {
var valid = ajv.validate(schema, test.from);
// if (valid !== canCoerce) console.log(toType, fromType, test, ajv.errors);
valid. should.equal(canCoerce);
});
})
});
it('should coerce values in objects/arrays and update properties/items', function() {
testRules(function (test, schema, canCoerce, toType, fromType) {
var schemaObject = {
type: 'object',
properties: {
foo: schema
}
};
var schemaArray = {
type: 'array',
items: schema
};
var schemaArrObj = {
type: 'array',
items: schemaObject
};
instances.forEach(function (ajv) {
testCoercion(schemaArray, [ test.from ], [ test.to ]);
testCoercion(schemaObject, { foo: test.from }, { foo: test.to });
testCoercion(schemaArrObj, [ { foo: test.from } ], [ { foo: test.to } ]);
});
function testCoercion(schema, fromData, toData) {
var valid = ajv.validate(schema, fromData);
// if (valid !== canCoerce) console.log(schema, fromData, toData);
valid. should.equal(canCoerce);
if (valid) fromData .should.eql(toData);
}
})
});
it('should coerce to multiple types in order', function() {
var schema = {
type: 'object',
properties: {
foo: {
type: [ 'number', 'boolean', 'null' ]
}
}
};
instances.forEach(function (ajv) {
var data;
ajv.validate(schema, data = { foo: '1' }) .should.equal(true);
data .should.eql({ foo: 1 });
ajv.validate(schema, data = { foo: '1.5' }) .should.equal(true);
data .should.eql({ foo: 1.5 });
ajv.validate(schema, data = { foo: 'false' }) .should.equal(true);
data .should.eql({ foo: false });
ajv.validate(schema, data = { foo: 1 }) .should.equal(true);
data .should.eql({ foo: 1 }); // no coercion
ajv.validate(schema, data = { foo: true }) .should.equal(true);
data .should.eql({ foo: true }); // no coercion
ajv.validate(schema, data = { foo: null }) .should.equal(true);
data .should.eql({ foo: null }); // no coercion
ajv.validate(schema, data = { foo: 'abc' }) .should.equal(false);
data .should.eql({ foo: 'abc' }); // can't coerce
ajv.validate(schema, data = { foo: {} }) .should.equal(false);
data .should.eql({ foo: {} }); // can't coerce
ajv.validate(schema, data = { foo: [] }) .should.equal(false);
data .should.eql({ foo: [] }); // can't coerce
});
});
it('should fail to coerce non-number if multiple properties/items are coerced (issue #152)', function() {
var schema = {
type: 'object',
properties: {
foo: { type: 'number' },
bar: { type: 'number' }
}
};
instances.forEach(function (ajv) {
var data = { foo: '123', bar: 'bar' };
ajv.validate(schema, data) .should.equal(false);
data .should.eql({ foo: 123, bar: 'bar' });
});
});
it('should update data if the schema is in ref that is not inlined', function () {
instances.push(Ajv({ coerceTypes: true, inlineRefs: false }));
var schema = {
type: 'object',
definitions: {
foo: { type: 'number' }
},
properties: {
foo: { $ref: '#/definitions/foo' }
}
};
var schema2 = {
type: 'object',
definitions: {
foo: {
// allOf is needed to make sure that "foo" is compiled to a separate function
// and not simply passed through (as it would be if it were only $ref)
allOf: [{ $ref: '#/definitions/bar' }]
},
bar: { type: 'number' }
},
properties: {
foo: { $ref: '#/definitions/foo' }
}
};
var schemaRecursive = {
type: [ 'object', 'number' ],
properties: {
foo: { $ref: '#' }
}
};
var schemaRecursive2 = {
id: 'http://e.com/schema.json#',
definitions: {
foo: {
id: 'http://e.com/foo.json#',
type: [ 'object', 'number' ],
properties: {
foo: { $ref: '#' }
}
}
},
properties: {
foo: { $ref: 'http://e.com/foo.json#' }
}
};
instances.forEach(function (_ajv) {
testCoercion(schema, { foo: '1' }, { foo: 1 });
testCoercion(schema2, { foo: '1' }, { foo: 1 });
testCoercion(schemaRecursive, { foo: { foo: '1' } }, { foo: { foo: 1 } });
testCoercion(schemaRecursive2, { foo: { foo: { foo: '1' } } },
{ foo: { foo: { foo: 1 } } });
function testCoercion(schema, fromData, toData) {
var valid = _ajv.validate(schema, fromData);
// if (!valid) console.log(schema, fromData, toData);
valid. should.equal(true);
fromData .should.eql(toData);
}
});
});
function testRules(cb) {
2016-01-17 04:05:06 +03:00
for (var toType in coercionRules) {
for (var fromType in coercionRules[toType]) {
var tests = coercionRules[toType][fromType];
tests.forEach(function (test) {
var canCoerce = test.to !== undefined;
var schema = canCoerce
2016-01-17 04:05:06 +03:00
? { type: toType, enum: [ test.to ] }
: { type: toType };
cb(test, schema, canCoerce, toType, fromType);
2016-01-17 04:05:06 +03:00
});
}
}
}
2016-01-17 04:05:06 +03:00
});