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.
246 lines
5.4 KiB
246 lines
5.4 KiB
var confidenceScore = require('../../../middleware/confidenceScore')(); |
|
|
|
module.exports.tests = {}; |
|
|
|
module.exports.tests.confidenceScore = function(test, common) { |
|
|
|
test('empty res and req should not throw exception', function(t) { |
|
function testIt() { |
|
confidenceScore({}, {}, function() {}); |
|
} |
|
|
|
t.doesNotThrow(testIt, 'an exception should not have been thrown'); |
|
t.end(); |
|
}); |
|
|
|
test('res.results without parsed_text should not throw exception', function(t) { |
|
var req = {}; |
|
var res = { |
|
data: [{ |
|
name: 'foo' |
|
}], |
|
meta: [10] |
|
}; |
|
|
|
function testIt() { |
|
confidenceScore(req, res, function() {}); |
|
} |
|
|
|
t.doesNotThrow(testIt, 'an exception should not have been thrown'); |
|
t.end(); |
|
}); |
|
|
|
test('hit without address should not error', function(t) { |
|
var req = { |
|
clean: { |
|
text: 'test name3', |
|
parsed_text: { |
|
postalcode: 12345 |
|
} |
|
} |
|
}; |
|
var res = { |
|
data: [{ |
|
name: { |
|
default: 'foo' |
|
} |
|
}], |
|
meta: { |
|
scores: [10], |
|
query_type: 'original' |
|
} |
|
}; |
|
|
|
function testIt() { |
|
confidenceScore(req, res, function() {}); |
|
} |
|
|
|
t.doesNotThrow(testIt, 'an exception should not have been thrown with no address'); |
|
t.end(); |
|
}); |
|
|
|
|
|
test('res.results without parsed_text should not throw exception', function(t) { |
|
var req = { |
|
clean: { text: 'test name1' } |
|
}; |
|
var res = { |
|
data: [{ |
|
_score: 10, |
|
found: true, |
|
value: 1, |
|
center_point: { lat: 100.1, lon: -50.5 }, |
|
name: { default: 'test name1' }, |
|
parent: { |
|
country: ['country1'], |
|
region: ['state1'], |
|
county: ['city1'] |
|
} |
|
}, { |
|
_score: 20, |
|
value: 2, |
|
center_point: { lat: 100.2, lon: -51.5 }, |
|
name: { default: 'test name2' }, |
|
parent: { |
|
country: ['country2'], |
|
region: ['state2'], |
|
county: ['city2'] |
|
} |
|
}], |
|
meta: { |
|
scores: [10], |
|
query_type: 'original' |
|
} |
|
}; |
|
|
|
confidenceScore(req, res, function() {}); |
|
t.equal(res.data[0].confidence, 0.6, 'score was set'); |
|
t.end(); |
|
}); |
|
|
|
test('undefined region fields should be handled gracefully', function(t) { |
|
var req = { |
|
clean: { |
|
text: '123 Main St, City, NM', |
|
parsed_text: { |
|
number: 123, |
|
street: 'Main St', |
|
state: 'NM' |
|
} |
|
} |
|
}; |
|
var res = { |
|
data: [{ |
|
_score: 10, |
|
found: true, |
|
value: 1, |
|
center_point: { lat: 100.1, lon: -50.5 }, |
|
name: { default: 'test name1' }, |
|
parent: { |
|
country: ['country1'], |
|
region: undefined, |
|
region_a: undefined, |
|
county: ['city1'] |
|
} |
|
}], |
|
meta: { |
|
scores: [10], |
|
query_type: 'original' |
|
} |
|
}; |
|
|
|
confidenceScore(req, res, function() {}); |
|
t.equal(res.data[0].confidence, 0.28, 'score was set'); |
|
t.end(); |
|
}); |
|
|
|
test('should only work for original query_type', function(t) { |
|
var req = { |
|
clean: { |
|
text: '123 Main St, City, NM', |
|
parsed_text: { |
|
number: 123, |
|
street: 'Main St', |
|
state: 'NM' |
|
} |
|
} |
|
}; |
|
var res = { |
|
data: [{ |
|
_score: 10, |
|
found: true, |
|
value: 1, |
|
center_point: { lat: 100.1, lon: -50.5 }, |
|
name: { default: 'test name1' }, |
|
parent: { |
|
country: ['country1'], |
|
region: undefined, |
|
region_a: undefined, |
|
county: ['city1'] |
|
} |
|
}], |
|
meta: { |
|
scores: [10], |
|
query_type: 'fallback' |
|
} |
|
}; |
|
|
|
confidenceScore(req, res, function() {}); |
|
t.false(res.data[0].hasOwnProperty('confidence'), 'score was not set'); |
|
t.end(); |
|
}); |
|
|
|
test('missing parent object should not throw an exception', function(t) { |
|
var req = { |
|
clean: { |
|
text: '123 Main St, City, NM', |
|
parsed_text: { |
|
number: 123, |
|
street: 'Main St', |
|
state: 'NM' |
|
} |
|
} |
|
}; |
|
var res = { |
|
data: [{ |
|
_score: 10, |
|
found: true, |
|
value: 1, |
|
center_point: { lat: 100.1, lon: -50.5 }, |
|
name: { default: 'test name1' }, |
|
}], |
|
meta: { |
|
scores: [10], |
|
query_type: 'original' |
|
} |
|
}; |
|
|
|
t.doesNotThrow(() => { |
|
confidenceScore(req, res, () => {}); |
|
}); |
|
t.equal(res.data[0].confidence, 0.28, 'score was set'); |
|
t.end(); |
|
}); |
|
|
|
test('works with name aliases', function(t) { |
|
var req = { |
|
clean: { |
|
text: 'example', |
|
parsed_text: { |
|
number: 123, |
|
street: 'example', |
|
state: 'EG' |
|
} |
|
} |
|
}; |
|
var res = { |
|
data: [{ |
|
_score: 10, |
|
found: true, |
|
value: 1, |
|
center_point: { lat: 100.1, lon: -50.5 }, |
|
name: { default: ['test name1', 'test name2'] }, // note the array |
|
}], |
|
meta: { |
|
scores: [10], |
|
query_type: 'original' |
|
} |
|
}; |
|
|
|
t.doesNotThrow(() => { |
|
confidenceScore(req, res, () => {}); |
|
}); |
|
t.equal(res.data[0].confidence, 0.28, 'score was set'); |
|
t.end(); |
|
}); |
|
}; |
|
|
|
module.exports.all = function (tape, common) { |
|
function test(name, testFunction) { |
|
return tape('[middleware] confidenceScore: ' + name, testFunction); |
|
} |
|
|
|
for( var testCase in module.exports.tests ){ |
|
module.exports.tests[testCase](test, common); |
|
} |
|
};
|
|
|