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.
152 lines
4.3 KiB
152 lines
4.3 KiB
9 years ago
|
var sanitize = require( '../../../sanitiser/_categories');
|
||
|
|
||
|
module.exports.tests = {};
|
||
|
|
||
|
module.exports.tests.no_categories = function(test, common) {
|
||
|
test('categories not set', function(t) {
|
||
|
var req = {
|
||
|
query: { },
|
||
|
clean: { }
|
||
|
};
|
||
|
|
||
|
var messages = sanitize(req.query, req.clean);
|
||
|
|
||
|
t.equal(req.clean.categories, undefined, 'no categories should be defined');
|
||
|
t.deepEqual(messages.errors, [], 'no error returned');
|
||
|
t.deepEqual(messages.warnings, [], 'no warnings returned');
|
||
|
t.end();
|
||
|
});
|
||
|
|
||
|
test('categories is empty string', function(t) {
|
||
|
var req = {
|
||
|
query: {
|
||
|
categories: ''
|
||
|
},
|
||
|
clean: { }
|
||
|
};
|
||
|
|
||
|
var expected_error = 'Categories parameter cannot be left blank. See documentation of service for valid options.';
|
||
|
|
||
|
var messages = sanitize(req.query, req.clean);
|
||
|
|
||
|
t.equal(req.clean.categories, undefined, 'no categories should be defined');
|
||
|
t.deepEqual(messages.errors.length, 1, 'error returned');
|
||
|
t.deepEqual(messages.errors[0], expected_error, 'error returned');
|
||
|
t.deepEqual(messages.warnings, [], 'no warnings returned');
|
||
|
t.end();
|
||
|
});
|
||
|
|
||
|
test('categories is an array of empty strings', function(t) {
|
||
|
var req = {
|
||
|
query: {
|
||
|
categories: ',,'
|
||
|
},
|
||
|
clean: { }
|
||
|
};
|
||
|
|
||
|
var expected_error = 'Invalid categories parameter value(s). See documentation of service for valid options.';
|
||
|
|
||
|
var messages = sanitize(req.query, req.clean);
|
||
|
|
||
|
t.equal(req.clean.categories, undefined, 'no categories should be defined');
|
||
|
t.deepEqual(messages.errors.length, 1, 'error returned');
|
||
|
t.deepEqual(messages.errors[0], expected_error, 'error returned');
|
||
|
t.deepEqual(messages.warnings, [], 'no warnings returned');
|
||
|
t.end();
|
||
|
});
|
||
|
};
|
||
|
|
||
|
module.exports.tests.valid_categories = function(test, common) {
|
||
|
var validCategories = ['food','health','financial','education','government'];
|
||
|
|
||
|
test('single category', function(t) {
|
||
|
var req = {
|
||
|
query: {
|
||
|
categories: 'food'
|
||
|
},
|
||
|
clean: { }
|
||
|
};
|
||
|
|
||
|
var messages = sanitize(req.query, req.clean, validCategories);
|
||
|
|
||
|
t.deepEqual(req.clean.categories, ['food'], 'categories should contain food');
|
||
|
t.deepEqual(messages.errors, [], 'no error returned');
|
||
|
t.deepEqual(messages.warnings, [], 'no warnings returned');
|
||
|
|
||
|
t.end();
|
||
|
});
|
||
|
|
||
|
test('multiple categories', function(t) {
|
||
|
var req = {
|
||
|
query: {
|
||
|
categories: 'food,health'
|
||
|
},
|
||
|
clean: { }
|
||
|
};
|
||
|
|
||
|
var messages = sanitize(req.query, req.clean, validCategories);
|
||
|
|
||
|
t.deepEqual(req.clean.categories, ['food', 'health'],
|
||
|
'clean.categories should be an array with proper values');
|
||
|
t.deepEqual(messages.errors, [], 'no error returned');
|
||
|
t.deepEqual(messages.warnings, [], 'no warnings returned');
|
||
|
t.end();
|
||
|
});
|
||
|
};
|
||
|
|
||
|
module.exports.tests.invalid_categories = function(test, common) {
|
||
|
var validCategories = ['food','health','financial','education','government'];
|
||
|
|
||
|
test('garbage category', function(t) {
|
||
|
var req = {
|
||
|
query: {
|
||
|
categories: 'barf'
|
||
|
},
|
||
|
clean: { }
|
||
|
};
|
||
|
var expected_messages = {
|
||
|
errors: [
|
||
|
'Invalid categories parameter value(s). See documentation of service for valid options.'
|
||
|
],
|
||
|
warnings: []
|
||
|
};
|
||
|
|
||
|
var messages = sanitize(req.query, req.clean, validCategories);
|
||
|
|
||
|
t.deepEqual(messages, expected_messages, 'error with message returned');
|
||
|
t.equal(req.clean.categories, undefined, 'clean.categories should remain empty');
|
||
|
t.end();
|
||
|
});
|
||
|
|
||
|
test('all garbage categories', function(t) {
|
||
|
var req = {
|
||
|
query: {
|
||
|
categories: 'barf,bleh'
|
||
|
},
|
||
|
clean: { }
|
||
|
};
|
||
|
var expected_messages = {
|
||
|
errors: [
|
||
|
'Invalid categories parameter value(s). See documentation of service for valid options.'
|
||
|
],
|
||
|
warnings: []
|
||
|
};
|
||
|
|
||
|
var messages = sanitize(req.query, req.clean);
|
||
|
|
||
|
t.deepEqual(messages, expected_messages, 'error with message returned');
|
||
|
t.equal(req.clean.categories, undefined, 'clean.categories should remain empty');
|
||
|
t.end();
|
||
|
});
|
||
|
};
|
||
|
|
||
|
module.exports.all = function (tape, common) {
|
||
|
function test(name, testFunction) {
|
||
|
return tape('SANTIZE _categories ' + name, testFunction);
|
||
|
}
|
||
|
|
||
|
for( var testCase in module.exports.tests ){
|
||
|
module.exports.tests[testCase](test, common);
|
||
|
}
|
||
|
};
|