mirror of https://github.com/pelias/api.git
Diana Shkolnikov
8 years ago
3 changed files with 88 additions and 3 deletions
@ -0,0 +1,29 @@ |
|||||||
|
|
||||||
|
'use strict'; |
||||||
|
|
||||||
|
const _ = require('lodash'); |
||||||
|
|
||||||
|
var DEFAULT_FORCE_LIBPOSTAL = false; |
||||||
|
|
||||||
|
// validate inputs, convert types and apply defaults
|
||||||
|
function sanitize( raw, clean ){ |
||||||
|
|
||||||
|
// error & warning messages
|
||||||
|
var messages = { errors: [], warnings: [] }; |
||||||
|
|
||||||
|
clean.force_libpostal = isTruthy(_.get(raw, 'debug:force_libpostal', false)); |
||||||
|
|
||||||
|
return messages; |
||||||
|
} |
||||||
|
|
||||||
|
// be lenient with 'truthy' values
|
||||||
|
function isTruthy(val) { |
||||||
|
if( _.isString( val ) ){ |
||||||
|
return _.includes( ['true', '1', 'yes', 'y'], val ); |
||||||
|
} |
||||||
|
|
||||||
|
return val === 1 || val === true; |
||||||
|
} |
||||||
|
|
||||||
|
// export function
|
||||||
|
module.exports = sanitize; |
@ -0,0 +1,50 @@ |
|||||||
|
var sanitize = require('../../../sanitizer/_debug'); |
||||||
|
|
||||||
|
module.exports.tests = {}; |
||||||
|
|
||||||
|
module.exports.tests.sanitize_force_libpostal = function(test, common) { |
||||||
|
|
||||||
|
test('force_libpostal(default)', function(t) { |
||||||
|
const raw = {}; |
||||||
|
const clean = {}; |
||||||
|
sanitize(raw, clean); |
||||||
|
t.equal(clean.force_libpostal, false, 'defaults to false'); |
||||||
|
t.end(); |
||||||
|
}); |
||||||
|
|
||||||
|
var valid_values = ['true', true, 1, '1', 'yes', 'y']; |
||||||
|
valid_values.forEach(function(value) { |
||||||
|
test('force_libpostal(true) ' + value, function(t) { |
||||||
|
const raw = { |
||||||
|
'debug:force_libpostal': value |
||||||
|
}; |
||||||
|
const clean = {}; |
||||||
|
sanitize(raw, clean); |
||||||
|
t.equal(clean.force_libpostal, true, 'set to true'); |
||||||
|
t.end(); |
||||||
|
}); |
||||||
|
}); |
||||||
|
|
||||||
|
var valid_false_values = ['false', false, 0, '0', 'no', 'n', null, -1, 123, NaN, 'abc']; |
||||||
|
valid_false_values.forEach(function(value) { |
||||||
|
test('force_libpostal(false) ' + value, function(t) { |
||||||
|
const raw = { |
||||||
|
'debug:force_libpostal': value |
||||||
|
}; |
||||||
|
const clean = {}; |
||||||
|
sanitize(raw, clean); |
||||||
|
t.equal(clean.force_libpostal, false, 'set to false'); |
||||||
|
t.end(); |
||||||
|
}); |
||||||
|
}); |
||||||
|
}; |
||||||
|
|
||||||
|
module.exports.all = function (tape, common) { |
||||||
|
function test(name, testFunction) { |
||||||
|
return tape('SANTIZE _debug ' + name, testFunction); |
||||||
|
} |
||||||
|
|
||||||
|
for( var testCase in module.exports.tests ){ |
||||||
|
module.exports.tests[testCase](test, common); |
||||||
|
} |
||||||
|
}; |
Loading…
Reference in new issue