mirror of https://github.com/pelias/api.git
Diana Shkolnikov
8 years ago
5 changed files with 9 additions and 65 deletions
@ -1,32 +0,0 @@
|
||||
|
||||
var _ = require('lodash'), |
||||
check = require('check-types'); |
||||
|
||||
var DEFAULT_DETAILS_BOOL = true; |
||||
|
||||
// validate inputs, convert types and apply defaults
|
||||
function sanitize( raw, clean ){ |
||||
|
||||
// error & warning messages
|
||||
var messages = { errors: [], warnings: [] }; |
||||
|
||||
if( !check.undefined( raw.details ) ){ |
||||
clean.details = isTruthy( raw.details ); |
||||
} else { |
||||
clean.details = DEFAULT_DETAILS_BOOL; |
||||
} |
||||
|
||||
return messages; |
||||
} |
||||
|
||||
// be lenient with 'truthy' values
|
||||
function isTruthy(val) { |
||||
if( check.string( val ) ){ |
||||
return _.includes( ['true', '1'], val ); |
||||
} |
||||
|
||||
return val === 1 || val === true; |
||||
} |
||||
|
||||
// export function
|
||||
module.exports = sanitize; |
@ -1,31 +0,0 @@
|
||||
var isTruthy = require('../../../sanitizer/_truthy'); |
||||
|
||||
module.exports.tests = {}; |
||||
|
||||
module.exports.tests.sanitize_truthy = function(test, common) { |
||||
var valid_values = ['true', true, 1, '1', 'yes', 'y']; |
||||
valid_values.forEach(function(value) { |
||||
test('truthy value ' + value, function(t) { |
||||
t.equal(isTruthy(value), true, 'returns 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('falsey value ' + value, function(t) { |
||||
t.equal(isTruthy(value), false, 'returns false'); |
||||
t.end(); |
||||
}); |
||||
}); |
||||
}; |
||||
|
||||
module.exports.all = function (tape, common) { |
||||
function test(name, testFunction) { |
||||
return tape('SANTIZE _truthy ' + name, testFunction); |
||||
} |
||||
|
||||
for( var testCase in module.exports.tests ){ |
||||
module.exports.tests[testCase](test, common); |
||||
} |
||||
}; |
Loading…
Reference in new issue