mirror of https://github.com/pelias/api.git
Stephen K Hess
9 years ago
13 changed files with 160 additions and 4 deletions
@ -0,0 +1,23 @@ |
|||||||
|
|
||||||
|
var _ = require('lodash'), |
||||||
|
check = require('check-types'); |
||||||
|
|
||||||
|
// validate inputs
|
||||||
|
function sanitize( raw, clean ){ |
||||||
|
// error & warning messages
|
||||||
|
var messages = { errors: [], warnings: [] }; |
||||||
|
|
||||||
|
Object.keys(raw).forEach(function(key) { |
||||||
|
if (_.isArray(raw[key])) { |
||||||
|
messages.errors.push('\'' + key + '\' parameter can only have one value'); |
||||||
|
} else if (_.isObject(raw[key])) { |
||||||
|
messages.errors.push('\'' + key + '\' parameter must be a scalar'); |
||||||
|
} |
||||||
|
|
||||||
|
}); |
||||||
|
|
||||||
|
return messages; |
||||||
|
} |
||||||
|
|
||||||
|
// export function
|
||||||
|
module.exports = sanitize; |
@ -0,0 +1,30 @@ |
|||||||
|
|
||||||
|
#> set size |
||||||
|
path: '/v1/reverse?point.lat=1&point.lon=1¶m=value1¶m=value2' |
||||||
|
|
||||||
|
#? 200 ok |
||||||
|
response.statusCode.should.be.equal 200 |
||||||
|
response.should.have.header 'charset', 'utf8' |
||||||
|
response.should.have.header 'content-type', 'application/json; charset=utf-8' |
||||||
|
|
||||||
|
#? valid geocoding block |
||||||
|
should.exist json.geocoding |
||||||
|
should.exist json.geocoding.version |
||||||
|
should.exist json.geocoding.attribution |
||||||
|
should.exist json.geocoding.query |
||||||
|
should.exist json.geocoding.engine |
||||||
|
should.exist json.geocoding.engine.name |
||||||
|
should.exist json.geocoding.engine.author |
||||||
|
should.exist json.geocoding.engine.version |
||||||
|
should.exist json.geocoding.timestamp |
||||||
|
|
||||||
|
#? valid geojson |
||||||
|
json.type.should.be.equal 'FeatureCollection' |
||||||
|
json.features.should.be.instanceof Array |
||||||
|
|
||||||
|
#? expected warnings |
||||||
|
should.not.exist json.geocoding.warnings |
||||||
|
|
||||||
|
#? expected errors |
||||||
|
should.exist json.geocoding.errors |
||||||
|
json.geocoding.errors.should.eql [ '\'param\' parameter can only have one value' ] |
@ -0,0 +1,30 @@ |
|||||||
|
|
||||||
|
#> set size |
||||||
|
path: '/v1/reverse?point.lat=1&point.lon=1¶meter[idx]=value' |
||||||
|
|
||||||
|
#? 200 ok |
||||||
|
response.statusCode.should.be.equal 200 |
||||||
|
response.should.have.header 'charset', 'utf8' |
||||||
|
response.should.have.header 'content-type', 'application/json; charset=utf-8' |
||||||
|
|
||||||
|
#? valid geocoding block |
||||||
|
should.exist json.geocoding |
||||||
|
should.exist json.geocoding.version |
||||||
|
should.exist json.geocoding.attribution |
||||||
|
should.exist json.geocoding.query |
||||||
|
should.exist json.geocoding.engine |
||||||
|
should.exist json.geocoding.engine.name |
||||||
|
should.exist json.geocoding.engine.author |
||||||
|
should.exist json.geocoding.engine.version |
||||||
|
should.exist json.geocoding.timestamp |
||||||
|
|
||||||
|
#? valid geojson |
||||||
|
json.type.should.be.equal 'FeatureCollection' |
||||||
|
json.features.should.be.instanceof Array |
||||||
|
|
||||||
|
#? expected warnings |
||||||
|
should.not.exist json.geocoding.warnings |
||||||
|
|
||||||
|
#? expected errors |
||||||
|
should.exist json.geocoding.errors |
||||||
|
json.geocoding.errors.should.eql [ '\'parameter\' parameter must be a scalar' ] |
@ -0,0 +1,60 @@ |
|||||||
|
var sanitize = require('../../../sanitiser/_single_scalar_parameters'); |
||||||
|
|
||||||
|
module.exports.tests = {}; |
||||||
|
|
||||||
|
module.exports.tests.single_scalar_parameters = function(test, common) { |
||||||
|
test('all duplicate parameters should have error messages returned', function(t) { |
||||||
|
var raw = { |
||||||
|
arrayParameter1: ['value1', 'value2'], |
||||||
|
scalarParameter: 'value', |
||||||
|
arrayParameter2: ['value3'] |
||||||
|
}; |
||||||
|
var clean = {}; |
||||||
|
var errorsAndWarnings = sanitize(raw, clean); |
||||||
|
t.deepEquals(errorsAndWarnings, { |
||||||
|
errors: [ |
||||||
|
'\'arrayParameter1\' parameter can only have one value', |
||||||
|
'\'arrayParameter2\' parameter can only have one value', |
||||||
|
], |
||||||
|
warnings: [] |
||||||
|
}); |
||||||
|
t.end(); |
||||||
|
}); |
||||||
|
|
||||||
|
test('object parameters should have error messages returned', function(t) { |
||||||
|
var raw = { |
||||||
|
objectParameter1: { key1: 'value1', key2: 'value2'}, |
||||||
|
scalarParameter: 'value', |
||||||
|
objectParameter2: { } |
||||||
|
}; |
||||||
|
var clean = {}; |
||||||
|
var errorsAndWarnings = sanitize(raw, clean); |
||||||
|
t.deepEquals(errorsAndWarnings, { |
||||||
|
errors: [ |
||||||
|
'\'objectParameter1\' parameter must be a scalar', |
||||||
|
'\'objectParameter2\' parameter must be a scalar' |
||||||
|
], |
||||||
|
warnings: [] |
||||||
|
}); |
||||||
|
t.end(); |
||||||
|
}); |
||||||
|
|
||||||
|
test('request with all scalar parameters should return empty errors', function(t) { |
||||||
|
var raw = { scalarParameter1: 'value1', scalarParameter2: 2, scalarParameter3: true }; |
||||||
|
var clean = {}; |
||||||
|
var errorsAndWarnings = sanitize(raw, clean); |
||||||
|
t.deepEquals(errorsAndWarnings, { errors: [], warnings: [] }); |
||||||
|
t.end(); |
||||||
|
}); |
||||||
|
|
||||||
|
}; |
||||||
|
|
||||||
|
module.exports.all = function (tape, common) { |
||||||
|
function test(name, testFunction) { |
||||||
|
return tape('SANTIZE _single_scalar_parameters ' + name, testFunction); |
||||||
|
} |
||||||
|
|
||||||
|
for( var testCase in module.exports.tests ){ |
||||||
|
module.exports.tests[testCase](test, common); |
||||||
|
} |
||||||
|
}; |
Loading…
Reference in new issue