mirror of https://github.com/pelias/api.git
Stephen Hess
8 years ago
5 changed files with 138 additions and 0 deletions
@ -0,0 +1,19 @@
|
||||
const _ = require('lodash'); |
||||
const iso3166 = require('iso3166-1'); |
||||
|
||||
// this sanitizer exists solely to convert an ISO2 country value to ISO3
|
||||
// eg - 'TH' -> 'THA'
|
||||
// this can go away once altnames imports ISO2 country values from WOF
|
||||
function sanitize( raw, clean ){ |
||||
// error & warning messages
|
||||
const messages = { errors: [], warnings: [] }; |
||||
|
||||
if (clean.hasOwnProperty('parsed_text') && iso3166.is2(_.toUpper(clean.parsed_text.country))) { |
||||
clean.parsed_text.country = iso3166.to3(_.toUpper(clean.parsed_text.country)); |
||||
} |
||||
|
||||
return messages; |
||||
} |
||||
|
||||
// export function
|
||||
module.exports = sanitize; |
@ -0,0 +1,112 @@
|
||||
const sanitizer = require('../../../sanitizer/_iso2_to_iso3'); |
||||
|
||||
module.exports.tests = {}; |
||||
|
||||
module.exports.tests.text_parser = function(test, common) { |
||||
test('clean without parsed_text should not throw exception', function(t) { |
||||
const raw = {}; |
||||
|
||||
const clean = { |
||||
}; |
||||
|
||||
const expected_clean = { |
||||
}; |
||||
|
||||
const messages = sanitizer(raw, clean); |
||||
|
||||
t.deepEquals(clean, expected_clean); |
||||
t.deepEquals(messages.errors, [], 'no errors'); |
||||
t.deepEquals(messages.warnings, [], 'no warnings'); |
||||
t.end(); |
||||
|
||||
}); |
||||
|
||||
test('country with known iso2 should be converted to iso3', function(t) { |
||||
const raw = {}; |
||||
|
||||
const clean = { |
||||
parsed_text: { |
||||
address: 'address value', |
||||
country: 'tH' |
||||
} |
||||
}; |
||||
|
||||
const expected_clean = { |
||||
parsed_text: { |
||||
address: 'address value', |
||||
country: 'THA' |
||||
} |
||||
}; |
||||
|
||||
const messages = sanitizer(raw, clean); |
||||
|
||||
t.deepEquals(clean, expected_clean); |
||||
t.deepEquals(messages.errors, [], 'no errors'); |
||||
t.deepEquals(messages.warnings, [], 'no warnings'); |
||||
t.end(); |
||||
|
||||
}); |
||||
|
||||
test('country with unknown iso2 should be unchanged', function(t) { |
||||
const raw = {}; |
||||
|
||||
const clean = { |
||||
parsed_text: { |
||||
address: 'address value', |
||||
country: 'TB' |
||||
} |
||||
}; |
||||
|
||||
const expected_clean = { |
||||
parsed_text: { |
||||
address: 'address value', |
||||
country: 'TB' |
||||
} |
||||
}; |
||||
|
||||
const messages = sanitizer(raw, clean); |
||||
|
||||
t.deepEquals(clean, expected_clean); |
||||
t.deepEquals(messages.errors, [], 'no errors'); |
||||
t.deepEquals(messages.warnings, [], 'no warnings'); |
||||
t.end(); |
||||
|
||||
}); |
||||
|
||||
test('undefined country should be unchanged', function(t) { |
||||
const raw = {}; |
||||
|
||||
const clean = { |
||||
parsed_text: { |
||||
address: 'address value', |
||||
country: undefined |
||||
} |
||||
}; |
||||
|
||||
const expected_clean = { |
||||
parsed_text: { |
||||
address: 'address value', |
||||
country: undefined |
||||
} |
||||
}; |
||||
|
||||
const messages = sanitizer(raw, clean); |
||||
|
||||
t.deepEquals(clean, expected_clean); |
||||
t.deepEquals(messages.errors, [], 'no errors'); |
||||
t.deepEquals(messages.warnings, [], 'no warnings'); |
||||
t.end(); |
||||
|
||||
}); |
||||
|
||||
}; |
||||
|
||||
module.exports.all = function (tape, common) { |
||||
function test(name, testFunction) { |
||||
return tape('sanitizer _iso2_to_iso3: ' + name, testFunction); |
||||
} |
||||
|
||||
for( const testCase in module.exports.tests ){ |
||||
module.exports.tests[testCase](test, common); |
||||
} |
||||
}; |
Loading…
Reference in new issue