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.
105 lines
2.2 KiB
105 lines
2.2 KiB
const _ = require('lodash'); |
|
const is_request_sources_only_whosonfirst = require('../../../../controller/predicates/is_request_sources_only_whosonfirst'); |
|
|
|
module.exports.tests = {}; |
|
|
|
module.exports.tests.interface = (test, common) => { |
|
test('valid interface', (t) => { |
|
t.ok(_.isFunction(is_request_sources_only_whosonfirst), 'is_request_sources_only_whosonfirst is a function'); |
|
t.end(); |
|
}); |
|
}; |
|
|
|
module.exports.tests.true_conditions = (test, common) => { |
|
test('sources only \'whosonfirst\' should return true', (t) => { |
|
const req = { |
|
clean: { |
|
sources: [ |
|
'whosonfirst' |
|
] |
|
} |
|
}; |
|
|
|
t.ok(is_request_sources_only_whosonfirst(req)); |
|
t.end(); |
|
|
|
}); |
|
|
|
}; |
|
|
|
module.exports.tests.false_conditions = (test, common) => { |
|
test('undefined req should return false', (t) => { |
|
t.notOk(is_request_sources_only_whosonfirst(undefined)); |
|
t.end(); |
|
|
|
}); |
|
|
|
test('undefined req.clean should return false', (t) => { |
|
const req = {}; |
|
|
|
t.notOk(is_request_sources_only_whosonfirst(req)); |
|
t.end(); |
|
|
|
}); |
|
|
|
test('undefined req.clean.sources should return false', (t) => { |
|
const req = { |
|
clean: {} |
|
}; |
|
|
|
t.notOk(is_request_sources_only_whosonfirst(req)); |
|
t.end(); |
|
|
|
}); |
|
|
|
test('empty req.clean.sources should return false', (t) => { |
|
const req = { |
|
clean: { |
|
sources: [] |
|
} |
|
}; |
|
|
|
t.notOk(is_request_sources_only_whosonfirst(req)); |
|
t.end(); |
|
|
|
}); |
|
|
|
test('sources not \'whosonfirst\' should return false', (t) => { |
|
const req = { |
|
clean: { |
|
sources: [ |
|
'not whosonfirst' |
|
] |
|
} |
|
}; |
|
|
|
t.notOk(is_request_sources_only_whosonfirst(req)); |
|
t.end(); |
|
|
|
}); |
|
|
|
test('sources other than \'whosonfirst\' should return false', (t) => { |
|
const req = { |
|
clean: { |
|
sources: [ |
|
'whosonfirst', 'not whosonfirst' |
|
] |
|
} |
|
}; |
|
|
|
t.notOk(is_request_sources_only_whosonfirst(req)); |
|
t.end(); |
|
|
|
}); |
|
|
|
}; |
|
|
|
module.exports.all = (tape, common) => { |
|
function test(name, testFunction) { |
|
return tape(`GET /is_request_sources_only_whosonfirst ${name}`, testFunction); |
|
} |
|
|
|
for( const testCase in module.exports.tests ){ |
|
module.exports.tests[testCase](test, common); |
|
} |
|
};
|
|
|