mirror of https://github.com/pelias/api.git
Stephen Hess
8 years ago
4 changed files with 105 additions and 1 deletions
@ -0,0 +1,13 @@ |
|||||||
|
const _ = require('lodash'); |
||||||
|
|
||||||
|
// returns a function that returns true if any result.layer is in any of the
|
||||||
|
// supplied layers using array intersection
|
||||||
|
|
||||||
|
// example usage: determining if the response contains only admin results
|
||||||
|
|
||||||
|
module.exports = (property) => { |
||||||
|
return (request, response) => { |
||||||
|
return _.has(request, ['clean', 'parsed_text', property]); |
||||||
|
}; |
||||||
|
|
||||||
|
}; |
@ -0,0 +1,82 @@ |
|||||||
|
'use strict'; |
||||||
|
|
||||||
|
const _ = require('lodash'); |
||||||
|
const has_parsed_text_property = require('../../../../controller/predicates/has_parsed_text_property'); |
||||||
|
|
||||||
|
module.exports.tests = {}; |
||||||
|
|
||||||
|
module.exports.tests.interface = (test, common) => { |
||||||
|
test('valid interface', (t) => { |
||||||
|
t.equal(typeof has_parsed_text_property, 'function', 'has_parsed_text_property is a function'); |
||||||
|
t.end(); |
||||||
|
}); |
||||||
|
}; |
||||||
|
|
||||||
|
module.exports.tests.true_conditions = (test, common) => { |
||||||
|
test('defined request.clean.parsed_text.property should return true', (t) => { |
||||||
|
const req = { |
||||||
|
clean: { |
||||||
|
parsed_text: { |
||||||
|
property: 'value' |
||||||
|
} |
||||||
|
} |
||||||
|
}; |
||||||
|
const res = {}; |
||||||
|
|
||||||
|
t.ok(has_parsed_text_property('property')(req, res)); |
||||||
|
t.end(); |
||||||
|
|
||||||
|
}); |
||||||
|
|
||||||
|
}; |
||||||
|
|
||||||
|
module.exports.tests.false_conditions = (test, common) => { |
||||||
|
test('undefined request should return false', (t) => { |
||||||
|
const req = {}; |
||||||
|
|
||||||
|
t.notOk(has_parsed_text_property('property')(req, undefined)); |
||||||
|
t.end(); |
||||||
|
|
||||||
|
}); |
||||||
|
|
||||||
|
test('undefined request.clean should return false', (t) => { |
||||||
|
const req = {}; |
||||||
|
|
||||||
|
t.notOk(has_parsed_text_property('property')(req, undefined)); |
||||||
|
t.end(); |
||||||
|
|
||||||
|
}); |
||||||
|
|
||||||
|
test('undefined request.clean.parsed_text should return false', (t) => { |
||||||
|
const req = { |
||||||
|
clean: {} |
||||||
|
}; |
||||||
|
|
||||||
|
t.notOk(has_parsed_text_property('property')(req, undefined)); |
||||||
|
t.end(); |
||||||
|
|
||||||
|
}); |
||||||
|
|
||||||
|
test('undefined request.clean.parsed_text.property should return false', (t) => { |
||||||
|
const req = { |
||||||
|
clean: { |
||||||
|
parsed_text: {} |
||||||
|
} |
||||||
|
}; |
||||||
|
|
||||||
|
t.notOk(has_parsed_text_property('property')(req, undefined)); |
||||||
|
t.end(); |
||||||
|
|
||||||
|
}); |
||||||
|
|
||||||
|
}; |
||||||
|
|
||||||
|
module.exports.all = (tape, common) => { |
||||||
|
function test(name, testFunction) { |
||||||
|
return tape(`GET /has_parsed_text_property ${name}`, testFunction); |
||||||
|
} |
||||||
|
|
||||||
|
for( const testCase in module.exports.tests ){ |
||||||
|
module.exports.tests[testCase](test, common); |
||||||
|
} |
||||||
|
}; |
Loading…
Reference in new issue