From df6bd50645adb90a4308f1851f78886cf0989cb0 Mon Sep 17 00:00:00 2001 From: Stephen Hess Date: Wed, 26 Oct 2016 11:58:37 -0400 Subject: [PATCH] unrolled loop tests --- test/unit/query/search.js | 143 ++++++++++++++++++++++++++++++++------ 1 file changed, 122 insertions(+), 21 deletions(-) diff --git a/test/unit/query/search.js b/test/unit/query/search.js index 1aae8df6..f16a79ae 100644 --- a/test/unit/query/search.js +++ b/test/unit/query/search.js @@ -305,41 +305,142 @@ module.exports.tests.city_state = function(test, common) { }); - test('city- OR state-only should return undefined', function(t) { - ['city', 'state'].forEach(function(placeType) { - var clean = { - parsed_text: {} - }; + test('city-only should return undefined', function(t) { + var clean = { + parsed_text: { + city: 'city value' + } + }; + + var query = generate(clean); + + t.equals(query, undefined, 'should have returned undefined'); + t.end(); + + }); + + test('state-only should return undefined', function(t) { + var clean = { + parsed_text: { + state: 'state value' + } + }; + + var query = generate(clean); + + t.equals(query, undefined, 'should have returned undefined'); + t.end(); + + }); + + test('city/state with query should return undefined', function(t) { + var clean = { + parsed_text: { + city: 'city value', + state: 'state value', + query: 'query value' + } + }; + + var query = generate(clean); - clean.parsed_text[placeType] = placeType + ' value'; + t.equals(query, undefined, 'should have returned undefined'); + t.end(); - var query = generate(clean); + }); - t.equals(query, undefined, 'should have returned undefined'); + test('city/state with category should return undefined', function(t) { + var clean = { + parsed_text: { + city: 'city value', + state: 'state value', + category: 'category value' + } + }; - }); + var query = generate(clean); + t.equals(query, undefined, 'should have returned undefined'); t.end(); }); - test('city and state with at least one other input: field should return undefined', function(t) { - ['query', 'category', 'number', 'neighbourhood', 'borough', 'postalcode', 'county'].forEach(function(placeType) { - var clean = { - parsed_text: { - 'city': 'city value', - 'state': 'state value' - } - }; + test('city/state with number should return undefined', function(t) { + var clean = { + parsed_text: { + city: 'city value', + state: 'state value', + number: 'number value' + } + }; - clean.parsed_text[placeType] = placeType + ' value'; + var query = generate(clean); - var query = generate(clean); + t.equals(query, undefined, 'should have returned undefined'); + t.end(); - t.equals(query, undefined, 'should have returned undefined'); + }); - }); + test('city/state with neighbourhood should return undefined', function(t) { + var clean = { + parsed_text: { + city: 'city value', + state: 'state value', + neighbourhood: 'neighbourhood value' + } + }; + + var query = generate(clean); + + t.equals(query, undefined, 'should have returned undefined'); + t.end(); + + }); + + test('city/state with borough should return undefined', function(t) { + var clean = { + parsed_text: { + city: 'city value', + state: 'state value', + borough: 'borough value' + } + }; + + var query = generate(clean); + + t.equals(query, undefined, 'should have returned undefined'); + t.end(); + + }); + + test('city/state with postalcode should return undefined', function(t) { + var clean = { + parsed_text: { + city: 'city value', + state: 'state value', + postalcode: 'postalcode value' + } + }; + + var query = generate(clean); + + t.equals(query, undefined, 'should have returned undefined'); + t.end(); + + }); + + test('city/state with county should return undefined', function(t) { + var clean = { + parsed_text: { + city: 'city value', + state: 'state value', + county: 'county value' + } + }; + + var query = generate(clean); + t.equals(query, undefined, 'should have returned undefined'); t.end(); });