Browse Source

rewrote tests to proxyquire service/search to reduce complexity

added a few more tests for coverage, removed unused things from unit/mock/backend
pull/782/head
Stephen Hess 8 years ago
parent
commit
96f9d12ff5
  1. 12
      controller/search.js
  2. 438
      test/unit/controller/search.js
  3. 3
      test/unit/mock/backend.js

12
controller/search.js

@ -1,10 +1,10 @@
'use strict'; 'use strict';
var _ = require('lodash'); const _ = require('lodash');
var searchService = require('../service/search'); const searchService = require('../service/search');
var logger = require('pelias-logger').get('api'); const logger = require('pelias-logger').get('api');
var logging = require( '../helper/logging' ); const logging = require( '../helper/logging' );
const retry = require('retry'); const retry = require('retry');
function setup( apiConfig, esclient, query ){ function setup( apiConfig, esclient, query ){
@ -68,7 +68,7 @@ function setup( apiConfig, esclient, query ){
// (handles bookkeeping of maxRetries) // (handles bookkeeping of maxRetries)
// only consider for status 408 (request timeout) // only consider for status 408 (request timeout)
if (isRequestTimeout(err) && operation.retry(err)) { if (isRequestTimeout(err) && operation.retry(err)) {
logger.info('request timed out, retrying'); logger.info(`request timed out on attempt ${currentAttempt}, retrying`);
return; return;
} }
@ -94,7 +94,7 @@ function setup( apiConfig, esclient, query ){
res.meta.query_type = renderedQuery.type; res.meta.query_type = renderedQuery.type;
logger.info(`[controller:search] [queryType:${renderedQuery.type}] [es_result_count:` + logger.info(`[controller:search] [queryType:${renderedQuery.type}] [es_result_count:` +
(res.data && res.data.length ? res.data.length : 0) + ']'); _.get(res, 'data', []).length + ']');
} }
logger.debug('[ES response]', docs); logger.debug('[ES response]', docs);
next(); next();

438
test/unit/controller/search.js

@ -15,150 +15,286 @@ module.exports.tests.interface = function(test, common) {
}); });
}; };
// reminder: this is only the api subsection of the full config module.exports.tests.success = function(test, common) {
var fakeDefaultConfig = { test('successful request to search service should set data and meta', (t) => {
indexName: 'pelias' const config = {
}; indexName: 'indexName value'
};
const esclient = 'this is the esclient';
const query = () => {
return {
body: 'this is the query body',
type: 'this is the query type'
};
};
// request timeout messages willl be written here
const infoMesssages = [];
// a controller that validates the esclient and cmd that was passed to the search service
const controller = proxyquire('../../../controller/search', {
'../service/search': (esclient, cmd, callback) => {
t.equal(esclient, 'this is the esclient');
t.deepEqual(cmd, {
index: 'indexName value',
searchType: 'dfs_query_then_fetch',
body: 'this is the query body'
});
const docs = [{}, {}];
const meta = { key: 'value' };
callback(undefined, docs, meta);
},
'pelias-logger': {
get: (service) => {
t.equal(service, 'api');
return {
info: (msg) => {
infoMesssages.push(msg);
},
debug: () => {}
};
}
}
})(config, esclient, query);
const req = { clean: { }, errors: [], warnings: [] };
const res = {};
var next = function() {
t.deepEqual(req, {
clean: {},
errors: [],
warnings: []
});
t.deepEquals(res.data, [{}, {}]);
t.deepEquals(res.meta, { key: 'value', query_type: 'this is the query type' });
t.ok(infoMesssages.find((msg) => {
return msg === '[controller:search] [queryType:this is the query type] [es_result_count:2]';
}));
t.end();
};
controller(req, res, next);
});
test('undefined meta should set empty object into res', (t) => {
const config = {
indexName: 'indexName value'
};
const esclient = 'this is the esclient';
const query = () => {
return {
body: 'this is the query body',
type: 'this is the query type'
};
};
// request timeout messages willl be written here
const infoMesssages = [];
// a controller that validates the esclient and cmd that was passed to the search service
const controller = proxyquire('../../../controller/search', {
'../service/search': (esclient, cmd, callback) => {
t.equal(esclient, 'this is the esclient');
t.deepEqual(cmd, {
index: 'indexName value',
searchType: 'dfs_query_then_fetch',
body: 'this is the query body'
});
const docs = [{}, {}];
callback(undefined, docs, undefined);
},
'pelias-logger': {
get: (service) => {
t.equal(service, 'api');
return {
info: (msg) => {
infoMesssages.push(msg);
},
debug: () => {}
};
}
}
})(config, esclient, query);
const req = { clean: { }, errors: [], warnings: [] };
const res = {};
var next = function() {
t.deepEqual(req, {
clean: {},
errors: [],
warnings: []
});
t.deepEquals(res.data, [{}, {}]);
t.deepEquals(res.meta, { query_type: 'this is the query type' });
t.ok(infoMesssages.find((msg) => {
return msg === '[controller:search] [queryType:this is the query type] [es_result_count:2]';
}));
t.end();
};
controller(req, res, next);
});
test('undefined docs should log 0 results', (t) => {
const config = {
indexName: 'indexName value'
};
const esclient = 'this is the esclient';
const query = () => {
return {
body: 'this is the query body',
type: 'this is the query type'
};
};
// functionally test controller (backend success) // request timeout messages willl be written here
// module.exports.tests.functional_success = function(test, common) { const infoMesssages = [];
//
// // expected geojson features for 'client/suggest/ok/1' fixture // a controller that validates the esclient and cmd that was passed to the search service
// var expected = [{ const controller = proxyquire('../../../controller/search', {
// type: 'Feature', '../service/search': (esclient, cmd, callback) => {
// geometry: { t.equal(esclient, 'this is the esclient');
// type: 'Point', t.deepEqual(cmd, {
// coordinates: [-50.5, 100.1] index: 'indexName value',
// }, searchType: 'dfs_query_then_fetch',
// properties: { body: 'this is the query body'
// id: 'myid1', });
// layer: 'mytype1',
// text: 'test name1, city1, state1' const meta = { key: 'value' };
// }
// }, { callback(undefined, undefined, meta);
// type: 'Feature', },
// geometry: { 'pelias-logger': {
// type: 'Point', get: (service) => {
// coordinates: [-51.5, 100.2] t.equal(service, 'api');
// }, return {
// properties: { info: (msg) => {
// id: 'myid2', infoMesssages.push(msg);
// layer: 'mytype2', },
// text: 'test name2, city2, state2' debug: () => {}
// } };
// }]; }
// }
// var expectedMeta = { })(config, esclient, query);
// scores: [10, 20],
// query_type: 'mock' const req = { clean: { }, errors: [], warnings: [] };
// }; const res = {};
//
// var expectedData = [ var next = function() {
// { t.deepEqual(req, {
// _id: 'myid1', clean: {},
// _score: 10, errors: [],
// _type: 'mytype1', warnings: []
// _matched_queries: ['query 1', 'query 2'], });
// parent: { t.equals(res.data, undefined);
// country: ['country1'], t.deepEquals(res.meta, { key: 'value', query_type: 'this is the query type' });
// region: ['state1'],
// county: ['city1'] t.ok(infoMesssages.find((msg) => {
// }, return msg === '[controller:search] [queryType:this is the query type] [es_result_count:0]';
// center_point: { lat: 100.1, lon: -50.5 }, }));
// name: { default: 'test name1' }, t.end();
// value: 1 };
// },
// { controller(req, res, next);
// _id: 'myid2',
// _score: 20, });
// _type: 'mytype2',
// _matched_queries: ['query 3'], test('successful request on retry to search service should log info message', (t) => {
// parent: { const config = {
// country: ['country2'], indexName: 'indexName value'
// region: ['state2'], };
// county: ['city2'] const esclient = 'this is the esclient';
// }, const query = () => {
// center_point: { lat: 100.2, lon: -51.5 }, return {
// name: { default: 'test name2' }, body: 'this is the query body',
// value: 2 type: 'this is the query type'
// } };
// ]; };
//
// test('functional success', function (t) { let searchServiceCallCount = 0;
// var backend = mockBackend('client/search/ok/1', function (cmd) {
// t.deepEqual(cmd, { const timeoutError = {
// body: {a: 'b'}, status: 408,
// index: 'pelias', displayName: 'RequestTimeout',
// searchType: 'dfs_query_then_fetch' message: 'Request Timeout after 17ms'
// }, 'correct backend command'); };
// });
// var controller = setup(fakeDefaultConfig, backend, mockQuery()); // request timeout messages willl be written here
// var res = { const infoMesssages = [];
// status: function (code) {
// t.equal(code, 200, 'status set'); // a controller that validates the esclient and cmd that was passed to the search service
// return res; const controller = proxyquire('../../../controller/search', {
// }, '../service/search': (esclient, cmd, callback) => {
// json: function (json) { t.equal(esclient, 'this is the esclient');
// t.equal(typeof json, 'object', 'returns json'); t.deepEqual(cmd, {
// t.equal(typeof json.date, 'number', 'date set'); index: 'indexName value',
// t.equal(json.type, 'FeatureCollection', 'valid geojson'); searchType: 'dfs_query_then_fetch',
// t.true(Array.isArray(json.features), 'features is array'); body: 'this is the query body'
// t.deepEqual(json.features, expected, 'values correctly mapped'); });
// }
// }; if (searchServiceCallCount < 2) {
// var req = { clean: { a: 'b' }, errors: [], warnings: [] }; // note that the searchService got called
// var next = function next() { searchServiceCallCount++;
// t.equal(req.errors.length, 0, 'next was called without error'); callback(timeoutError);
// t.deepEqual(res.meta, expectedMeta, 'meta data was set'); } else {
// t.deepEqual(res.data, expectedData, 'data was set'); const docs = [{}, {}];
// t.end(); const meta = { key: 'value' };
// };
// controller(req, res, next); callback(undefined, docs, meta);
// }); }
//
// test('functional success with alternate index name', function(t) { },
// var fakeCustomizedConfig = { 'pelias-logger': {
// indexName: 'alternateindexname' get: (service) => {
// }; t.equal(service, 'api');
// return {
// var backend = mockBackend('client/search/ok/1', function (cmd) { info: (msg) => {
// t.deepEqual(cmd, { infoMesssages.push(msg);
// body: {a: 'b'}, },
// index: 'alternateindexname', debug: () => {}
// searchType: 'dfs_query_then_fetch' };
// }, 'correct backend command'); }
// }); }
// var controller = setup(fakeCustomizedConfig, backend, mockQuery()); })(config, esclient, query);
// var res = {
// status: function (code) { const req = { clean: { }, errors: [], warnings: [] };
// t.equal(code, 200, 'status set'); const res = {};
// return res;
// } var next = function() {
// }; t.deepEqual(req, {
// var req = { clean: { a: 'b' }, errors: [], warnings: [] }; clean: {},
// var next = function next() { errors: [],
// t.equal(req.errors.length, 0, 'next was called without error'); warnings: []
// t.end(); });
// }; t.deepEquals(res.data, [{}, {}]);
// controller(req, res, next); t.deepEquals(res.meta, { key: 'value', query_type: 'this is the query type' });
// });
// }; t.ok(infoMesssages.find((msg) => {
// return msg === '[controller:search] [queryType:this is the query type] [es_result_count:2]';
// // functionally test controller (backend failure) }));
// module.exports.tests.functional_failure = function(test, common) {
// test('functional failure', function(t) { t.ok(infoMesssages.find((msg) => {
// var backend = mockBackend( 'client/search/fail/1', function( cmd ){ return msg === 'succeeded on retry 2';
// t.deepEqual(cmd, { body: { a: 'b' }, index: 'pelias', searchType: 'dfs_query_then_fetch' }, 'correct backend command'); }));
// });
// var controller = setup( fakeDefaultConfig, backend, mockQuery() ); t.end();
// var req = { clean: { a: 'b' }, errors: [], warnings: [] }; };
// var next = function(){
// t.equal(req.errors[0],'an elasticsearch error occurred'); controller(req, res, next);
// t.end();
// }; });
// controller(req, undefined, next );
// }); };
// };
module.exports.tests.timeout = function(test, common) { module.exports.tests.timeout = function(test, common) {
test('default # of request timeout retries should be 3', (t) => { test('default # of request timeout retries should be 3', (t) => {
@ -214,11 +350,11 @@ module.exports.tests.timeout = function(test, common) {
var next = function() { var next = function() {
t.equal(searchServiceCallCount, 3+1); t.equal(searchServiceCallCount, 3+1);
t.deepEqual(
infoMesssages.filter((msg)=> { return msg === 'request timed out, retrying'; } ).length, t.ok(infoMesssages.indexOf('request timed out on attempt 1, retrying') !== -1);
3, t.ok(infoMesssages.indexOf('request timed out on attempt 2, retrying') !== -1);
'there should be 3 request timed out info messages' t.ok(infoMesssages.indexOf('request timed out on attempt 3, retrying') !== -1);
);
t.deepEqual(req, { t.deepEqual(req, {
clean: {}, clean: {},
errors: [timeoutError.message], errors: [timeoutError.message],
@ -365,7 +501,7 @@ module.exports.tests.existing_errors = function(test, common) {
var esclient = function() { var esclient = function() {
throw new Error('esclient should not have been called'); throw new Error('esclient should not have been called');
}; };
var controller = setup( fakeDefaultConfig, esclient, mockQuery() ); var controller = setup( {}, esclient, mockQuery() );
// the existence of `errors` means that a sanitizer detected an error, // the existence of `errors` means that a sanitizer detected an error,
// so don't call the esclient // so don't call the esclient
@ -385,10 +521,10 @@ module.exports.tests.existing_errors = function(test, common) {
module.exports.tests.existing_results = function(test, common) { module.exports.tests.existing_results = function(test, common) {
test('res with existing data should not call backend', function(t) { test('res with existing data should not call backend', function(t) {
var backend = function() { var esclient = function() {
throw new Error('backend should not have been called'); throw new Error('backend should not have been called');
}; };
var controller = setup( fakeDefaultConfig, backend, mockQuery() ); var controller = setup( {}, esclient, mockQuery() );
var req = { }; var req = { };
// the existence of `data` means that there are already results so // the existence of `data` means that there are already results so

3
test/unit/mock/backend.js

@ -1,8 +1,5 @@
var responses = {}; var responses = {};
responses['client/suggest/ok/1'] = function( cmd, cb ){
return cb( undefined, suggestEnvelope([ { score: 1, text: 'mocktype:mockid1' } ], [ { score: 2, text: 'mocktype:mockid2' } ]) );
};
responses['client/suggest/fail/1'] = function( cmd, cb ){ responses['client/suggest/fail/1'] = function( cmd, cb ){
return cb( 'an elasticsearch error occurred' ); return cb( 'an elasticsearch error occurred' );
}; };

Loading…
Cancel
Save