|
|
|
var sanitizeAll = require('../../../sanitizer/sanitizeAll');
|
|
|
|
|
|
|
|
module.exports.tests = {};
|
|
|
|
|
|
|
|
module.exports.tests.all = function(test, common) {
|
|
|
|
test('req.clean/errors/warnings should be initialized when they are not', function(t) {
|
|
|
|
var req = {};
|
|
|
|
var sanitizers = {
|
|
|
|
'first': {
|
|
|
|
sanitize: function(){
|
|
|
|
req.clean.a = 'first sanitizer';
|
|
|
|
return {
|
|
|
|
errors: ['error 1', 'error 2'],
|
|
|
|
warnings: ['warning 1', 'warning 2']
|
|
|
|
};
|
|
|
|
}
|
|
|
|
},
|
|
|
|
'second': {
|
|
|
|
sanitize: function() {
|
|
|
|
req.clean.b = 'second sanitizer';
|
|
|
|
return {
|
|
|
|
errors: ['error 3'],
|
|
|
|
warnings: ['warning 3']
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
var expected_req = {
|
|
|
|
clean: {
|
|
|
|
a: 'first sanitizer',
|
|
|
|
b: 'second sanitizer'
|
|
|
|
},
|
|
|
|
errors: ['error 1', 'error 2', 'error 3'],
|
|
|
|
warnings: ['warning 1', 'warning 2', 'warning 3']
|
|
|
|
};
|
|
|
|
|
|
|
|
sanitizeAll.sanitize(req, sanitizers, function (){
|
|
|
|
t.deepEquals(req, expected_req);
|
|
|
|
t.end();
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
test('req.clean/errors/warnings should not be initialized when they already have been', function(t) {
|
|
|
|
var req = {
|
|
|
|
clean: {
|
|
|
|
alreadyInitialized: true
|
|
|
|
},
|
|
|
|
errors: ['pre-existing error'],
|
|
|
|
warnings: ['pre-existing warning']
|
|
|
|
};
|
|
|
|
|
|
|
|
var sanitizers = {
|
|
|
|
'first': {
|
|
|
|
sanitize: function(){
|
|
|
|
req.clean.a = 'first sanitizer';
|
|
|
|
return {
|
|
|
|
errors: ['error 1', 'error 2'],
|
|
|
|
warnings: ['warning 1', 'warning 2']
|
|
|
|
};
|
|
|
|
}
|
|
|
|
},
|
|
|
|
'second': {
|
|
|
|
sanitize: function() {
|
|
|
|
req.clean.b = 'second sanitizer';
|
|
|
|
return {
|
|
|
|
errors: ['error 3'],
|
|
|
|
warnings: ['warning 3']
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
var expected_req = {
|
|
|
|
clean: {
|
|
|
|
alreadyInitialized: true,
|
|
|
|
a: 'first sanitizer',
|
|
|
|
b: 'second sanitizer'
|
|
|
|
},
|
|
|
|
errors: ['pre-existing error', 'error 1', 'error 2', 'error 3'],
|
|
|
|
warnings: ['pre-existing warning', 'warning 1', 'warning 2', 'warning 3']
|
|
|
|
};
|
|
|
|
|
|
|
|
sanitizeAll.sanitize(req, sanitizers, function () {
|
|
|
|
t.deepEquals(req, expected_req);
|
|
|
|
t.end();
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
test('req.query should be passed to individual sanitizers when available', function(t) {
|
|
|
|
var req = {
|
|
|
|
query: {
|
|
|
|
value: 'query'
|
|
|
|
}
|
|
|
|
};
|
|
|
|
var sanitizers = {
|
|
|
|
'first': {
|
|
|
|
sanitize: function(params) {
|
|
|
|
req.clean.query = params;
|
|
|
|
return {
|
|
|
|
errors: [],
|
|
|
|
warnings: []
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
var expected_req = {
|
|
|
|
query: {
|
|
|
|
value: 'query'
|
|
|
|
},
|
|
|
|
clean: {
|
|
|
|
query: {
|
|
|
|
value: 'query'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
errors: [],
|
|
|
|
warnings: []
|
|
|
|
};
|
|
|
|
|
|
|
|
sanitizeAll.sanitize(req, sanitizers, function () {
|
|
|
|
t.deepEquals(req, expected_req);
|
|
|
|
t.end();
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
test('an empty object should be passed to individual sanitizers when req.query is unavailable', function(t) {
|
|
|
|
var req = {};
|
|
|
|
var sanitizers = {
|
|
|
|
'first': {
|
|
|
|
sanitize: function(params) {
|
|
|
|
if (Object.keys(params).length === 0) {
|
|
|
|
req.clean.empty_object_was_passed = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return {
|
|
|
|
errors: [],
|
|
|
|
warnings: []
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
var expected_req = {
|
|
|
|
clean: {
|
|
|
|
empty_object_was_passed: true
|
|
|
|
},
|
|
|
|
errors: [],
|
|
|
|
warnings: []
|
|
|
|
};
|
|
|
|
|
|
|
|
sanitizeAll.sanitize(req, sanitizers, function () {
|
|
|
|
t.deepEquals(req, expected_req);
|
|
|
|
t.end();
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
test('unexpected parameters should throw warning', function(t) {
|
|
|
|
var req = {
|
|
|
|
query: {
|
|
|
|
unknown_value: 'query value'
|
|
|
|
},
|
|
|
|
errors: [],
|
|
|
|
warnings: []
|
|
|
|
};
|
|
|
|
var sanitizers = {
|
|
|
|
'first': {
|
|
|
|
expected: function _expected () {
|
|
|
|
// add value as a valid parameter
|
|
|
|
return [{
|
|
|
|
name: 'value'
|
|
|
|
}];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
sanitizeAll.checkParameters(req, sanitizers, function () {
|
|
|
|
t.equals(req.errors.length, 0);
|
|
|
|
t.deepEquals(req.warnings[0], 'Invalid Parameter: unknown_value');
|
|
|
|
t.end();
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
test('expected parameters should not throw warning', function(t) {
|
|
|
|
var req = {
|
|
|
|
query: {
|
|
|
|
value: 'query value'
|
|
|
|
},
|
|
|
|
errors: [],
|
|
|
|
warnings: []
|
|
|
|
};
|
|
|
|
var sanitizers = {
|
|
|
|
'first': {
|
|
|
|
expected: function _expected () {
|
|
|
|
// add value as a valid parameter
|
|
|
|
return [{
|
|
|
|
name: 'value'
|
|
|
|
}];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
sanitizeAll.checkParameters(req, sanitizers, function () {
|
|
|
|
t.equals(req.errors.length, 0);
|
|
|
|
t.equals(req.warnings.length, 0);
|
|
|
|
t.end();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
test('runAllChecks calls both sanitize and expectedParameters function', function(t) {
|
|
|
|
var req = {
|
|
|
|
query: {
|
|
|
|
value: 'query'
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
var sanitizers = {
|
|
|
|
'first': {
|
|
|
|
sanitize: function(params) {
|
|
|
|
req.clean.query = params;
|
|
|
|
return {
|
|
|
|
errors: [],
|
|
|
|
warnings: ['warning 1']
|
|
|
|
};
|
|
|
|
},
|
|
|
|
expected: function _expected () {
|
|
|
|
// add value as a valid parameter
|
|
|
|
return [{
|
|
|
|
name: 'value'
|
|
|
|
}];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
var expected_req = {
|
|
|
|
query: {
|
|
|
|
value: 'query'
|
|
|
|
},
|
|
|
|
clean: {
|
|
|
|
query: {
|
|
|
|
value: 'query'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
errors: [],
|
|
|
|
warnings: ['warning 1']
|
|
|
|
};
|
|
|
|
|
|
|
|
sanitizeAll.runAllChecks(req, sanitizers, function () {
|
|
|
|
t.deepEquals(req, expected_req);
|
|
|
|
t.end();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
module.exports.all = function (tape, common) {
|
|
|
|
|
|
|
|
function test(name, testFunction) {
|
|
|
|
return tape('SANITIZE sanitizeAll ' + name, testFunction);
|
|
|
|
}
|
|
|
|
|
|
|
|
for( var testCase in module.exports.tests ){
|
|
|
|
module.exports.tests[testCase](test, common);
|
|
|
|
}
|
|
|
|
};
|