added clean test cases for bing and duckduckgo

This commit is contained in:
Nikolai Tschacher
2019-01-31 15:36:27 +01:00
parent 7441c57a43
commit d35a602994
5 changed files with 358 additions and 13 deletions

View File

@ -6,12 +6,6 @@ var assert = require('chai').assert;
* https://mochajs.org/#installation
*/
function sleep(ms) {
return new Promise(resolve => {
setTimeout(resolve, ms)
})
}
const normal_search_keywords = ['apple tree', 'weather tomorrow'];
async function normal_search_test() {
@ -55,7 +49,7 @@ function normal_search_test_case(err, response) {
let obj = response.results[query][page_number];
assert.containsAllKeys(obj, ['results', 'time', 'no_results', 'num_results'], 'not all keys are in the object');
assert.containsAllKeys(obj, ['results', 'time', 'no_results', 'num_results', 'effective_query'], 'not all keys are in the object');
assert.isAtLeast(obj.results.length, 8, 'results must have at least 8 SERP objects');
assert.equal(obj.no_results, false, 'no results should be false');
@ -65,12 +59,16 @@ function normal_search_test_case(err, response) {
for (let res of obj.results) {
assert.containsAllKeys(res, ['link', 'title', 'rank'], 'not all keys are in the SERP object');
assert.containsAllKeys(res, ['link', 'title', 'rank', 'visible_link', 'rank'], 'not all keys are in the SERP object');
assert.isOk(res.link, 'link must be ok');
assert.typeOf(res.link, 'string', 'link must be string');
assert.isAtLeast(res.link.length, 5, 'link must have at least 5 chars');
assert.isOk(res.visible_link, 'visible_link must be ok');
assert.typeOf(res.visible_link, 'string', 'visible_link must be string');
assert.isAtLeast(res.visible_link.length, 5, 'visible_link must have at least 5 chars');
assert.isOk(res.title, 'title must be ok');
assert.typeOf(res.title, 'string', 'title must be string');
assert.isAtLeast(res.title.length, 10, 'title must have at least 10 chars');
@ -87,7 +85,6 @@ function normal_search_test_case(err, response) {
}
}
const keywords_no_results = ['fgskl34440abJAksafkl34a44dsflkjaQQuBBdfk',];
async function no_results_test() {
@ -127,7 +124,7 @@ function test_case_no_results(err, response) {
let obj = response.results[query][page_number];
assert.containsAllKeys(obj, ['results', 'time', 'no_results', 'num_results'], 'not all keys are in the object');
assert.containsAllKeys(obj, ['results', 'time', 'no_results', 'num_results', 'effective_query'], 'not all keys are in the object');
assert(obj.results.length === 0, 'results must have 0 SERP objects');
assert.equal(obj.no_results, true, 'no results should be true');
@ -180,7 +177,7 @@ function test_case_effective_query(err, response) {
let obj = response.results[query][page_number];
assert.containsAllKeys(obj, ['results', 'time', 'no_results', 'num_results'], 'not all keys are in the object');
assert.containsAllKeys(obj, ['results', 'time', 'no_results', 'num_results', 'effective_query'], 'not all keys are in the object');
// effective query must be different to the original keyword
assert.isOk(obj.effective_query, 'effective query must be ok');
@ -197,7 +194,6 @@ function test_case_effective_query(err, response) {
}
}
(async () => {
await normal_search_test();
await no_results_test();