mirror of https://github.com/pelias/api.git
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.
62 lines
2.0 KiB
62 lines
2.0 KiB
8 years ago
|
var sanitize = require('../../../sanitizer/_size');
|
||
9 years ago
|
|
||
|
module.exports.tests = {};
|
||
|
|
||
|
module.exports.tests.sanitize_size = function(test, common) {
|
||
|
test('size=0', function(t) {
|
||
|
var raw = { size: 0 };
|
||
|
var clean = {};
|
||
9 years ago
|
var res = sanitize(/*defaults*/)(raw, clean);
|
||
9 years ago
|
t.equal(res.errors.length, 0, 'should return no errors');
|
||
|
t.equal(res.warnings.length, 1, 'should return warning');
|
||
|
t.equal(res.warnings[0], 'out-of-range integer \'size\', using MIN_SIZE', 'check warning text');
|
||
|
t.equal(clean.size, 1, 'default to 1');
|
||
|
t.end();
|
||
|
});
|
||
|
|
||
|
test('size=10000', function(t) {
|
||
|
var raw = { size: 10000 };
|
||
|
var clean = {};
|
||
9 years ago
|
var res = sanitize(/*defaults*/)(raw, clean);
|
||
9 years ago
|
t.equal(res.errors.length, 0, 'should return no errors');
|
||
|
t.equal(res.warnings.length, 1, 'should return warning');
|
||
|
t.equal(res.warnings[0], 'out-of-range integer \'size\', using MAX_SIZE', 'check warning text');
|
||
|
t.equal(clean.size, 40, 'default to 40');
|
||
|
t.end();
|
||
|
});
|
||
|
|
||
|
test('size not set', function(t) {
|
||
|
var raw = {};
|
||
|
var clean = {};
|
||
9 years ago
|
var res = sanitize(/*defaults*/)(raw, clean);
|
||
9 years ago
|
t.equal(res.errors.length, 0, 'should return no errors');
|
||
|
t.equal(res.warnings.length, 0, 'should return no warning');
|
||
|
t.equal(clean.size, 10, 'default to 10');
|
||
|
t.end();
|
||
|
});
|
||
|
|
||
|
|
||
|
var valid_sizes = [5, '5', 5.5, '5.5'];
|
||
|
valid_sizes.forEach(function (size) {
|
||
|
test('size=' + size, function (t) {
|
||
|
var raw = {size: size};
|
||
|
var clean = {};
|
||
9 years ago
|
var res = sanitize(/*defaults*/)(raw, clean);
|
||
9 years ago
|
t.equal(res.errors.length, 0, 'should return no errors');
|
||
|
t.equal(res.warnings.length, 0, 'should return warning');
|
||
|
t.equal(clean.size, 5, 'set to correct integer');
|
||
|
t.end();
|
||
|
});
|
||
|
});
|
||
|
};
|
||
|
|
||
|
module.exports.all = function (tape, common) {
|
||
|
function test(name, testFunction) {
|
||
|
return tape('SANTIZE _size ' + name, testFunction);
|
||
|
}
|
||
|
|
||
|
for( var testCase in module.exports.tests ){
|
||
|
module.exports.tests[testCase](test, common);
|
||
|
}
|
||
|
};
|