diff --git a/sanitizer/_city_name_standardizer.js b/sanitizer/_city_name_standardizer.js index 236c0df7..e4604474 100644 --- a/sanitizer/_city_name_standardizer.js +++ b/sanitizer/_city_name_standardizer.js @@ -1,20 +1,18 @@ const _ = require('lodash'); -// matches 'ft', 'mt', 'saint', and 'sainte' on word boundary -const mountSaintFort = /\b([fm]t|ste?)\b/g; +// matches 'ft', 'mt' on word boundary +const mountFort = /\b([fm]t)\b/g; const transliterations = { 'mt': 'mount', - 'ft': 'fort', - 'st': 'saint', - 'ste': 'sainte' + 'ft': 'fort' }; function transliterate(match) { return _.get(transliterations, match); } -// transliterate ft/mt/saint/sainte to fort/mount/st/ste, respectively +// transliterate ft/mt to fort/mount, respectively function _sanitize(raw, clean) { // error & warning messages // this function doesn't add any error or warning messages @@ -24,14 +22,14 @@ function _sanitize(raw, clean) { if (!_.isEmpty(_.get(clean, 'parsed_text.city'))) { // eg input: Ft. st Louis // after 1. ft st louis - // after 2. fort saint louis - // after 3. fort saint louis + // after 2. fort st louis + // after 3. fort st louis // 1. remove '.' that could abbreviate ft and mt (makes transliteration regex easier) const periods_removed = _.toLower(clean.parsed_text.city).replace(/\b(mt|ft)\./g, '$1 '); - // 2. transliterate 'st'->'saint', etc - const transliterated = periods_removed.replace(mountSaintFort, transliterate); + // 2. transliterate 'ft'->'fort', etc + const transliterated = periods_removed.replace(mountFort, transliterate); // 3. reduce whitespace sequences that can occur when removing periods down to a single space const whitespace_normalized = _.trimEnd(transliterated.replace(/\s+/, ' ')); diff --git a/test/unit/sanitizer/_city_name_standardizer.js b/test/unit/sanitizer/_city_name_standardizer.js index 9ae5917e..9e168085 100644 --- a/test/unit/sanitizer/_city_name_standardizer.js +++ b/test/unit/sanitizer/_city_name_standardizer.js @@ -48,82 +48,6 @@ module.exports.tests.text_parser = function(test, common) { }); - test('\'st\' should be expanded to \'saint\' wherever it appears in the city', function(t) { - const raw = {}; - - const clean = { - parsed_text: { - query: 'saint query value', - neighbourhood: 'saint neighbourhood value', - borough: 'saint borough value', - city: 'st city ST value St', - county: 'saint county value', - state: 'saint state value', - postalcode: 'saint postalcode value', - country: 'saint country value' - } - }; - - const expected_clean = { - parsed_text: { - query: 'saint query value', - neighbourhood: 'saint neighbourhood value', - borough: 'saint borough value', - city: 'saint city saint value saint', - county: 'saint county value', - state: 'saint state value', - postalcode: 'saint postalcode value', - country: 'saint country value' - } - }; - - const messages = sanitizer.sanitize(raw, clean); - - t.deepEquals(clean, expected_clean); - t.deepEquals(messages.errors, [], 'no errors'); - t.deepEquals(messages.warnings, [], 'no warnings'); - t.end(); - - }); - - test('\'ste\' should be expanded to \'sainte\' wherever it appears in the city', function(t) { - const raw = {}; - - const clean = { - parsed_text: { - query: 'sainte query value', - neighbourhood: 'sainte neighbourhood value', - borough: 'sainte borough value', - city: 'ste city STE value StE', - county: 'sainte county value', - state: 'sainte state value', - postalcode: 'sainte postalcode value', - country: 'sainte country value' - } - }; - - const expected_clean = { - parsed_text: { - query: 'sainte query value', - neighbourhood: 'sainte neighbourhood value', - borough: 'sainte borough value', - city: 'sainte city sainte value sainte', - county: 'sainte county value', - state: 'sainte state value', - postalcode: 'sainte postalcode value', - country: 'sainte country value' - } - }; - - const messages = sanitizer.sanitize(raw, clean); - - t.deepEquals(clean, expected_clean); - t.deepEquals(messages.errors, [], 'no errors'); - t.deepEquals(messages.warnings, [], 'no warnings'); - t.end(); - - }); - test('\'ft\' should be expanded to \'fort\' wherever it appears in the city', function(t) { const raw = {}; @@ -200,18 +124,18 @@ module.exports.tests.text_parser = function(test, common) { }); - test('mixture of \'mt\', \'ft\', \'st\', and \'st\' should be expanded', function(t) { + test('mixture of \'mt\', \'ft\' should be expanded', function(t) { const raw = {}; const clean = { parsed_text: { - city: 'mt. ft st ste mt ft.' + city: 'mt. ft mt ft.' } }; const expected_clean = { parsed_text: { - city: 'mount fort saint sainte mount fort' + city: 'mount fort mount fort' } };