mirror of https://github.com/pelias/docker.git
Julian Simioni
6 years ago
1 changed files with 88 additions and 0 deletions
@ -0,0 +1,88 @@ |
|||||||
|
{ |
||||||
|
"name": "/v1/search address", |
||||||
|
"description": "addresses in Portland, OR", |
||||||
|
"priorityThresh": 1, |
||||||
|
"normalizers": { |
||||||
|
"name": [ |
||||||
|
"toUpperCase", |
||||||
|
"removeOrdinals", |
||||||
|
"stripPunctuation", |
||||||
|
"abbreviateDirectionals", |
||||||
|
"abbreviateStreetSuffixes" |
||||||
|
] |
||||||
|
}, |
||||||
|
"tests": [ |
||||||
|
{ |
||||||
|
"id": 1, |
||||||
|
"status": "pass", |
||||||
|
"in": { |
||||||
|
"text": "900 park street, tshwane, south africa" |
||||||
|
}, |
||||||
|
"expected": { |
||||||
|
"properties": [ |
||||||
|
{ |
||||||
|
"name": "900 Park Street", |
||||||
|
"locality": "Tshwane", |
||||||
|
"country_a": "ZAF" |
||||||
|
} |
||||||
|
] |
||||||
|
} |
||||||
|
}, |
||||||
|
{ |
||||||
|
"id": 2, |
||||||
|
"status": "pass", |
||||||
|
"in": { |
||||||
|
"text": "200 Smit Street, Hillbrow" |
||||||
|
}, |
||||||
|
"expected": { |
||||||
|
"properties": [ |
||||||
|
{ |
||||||
|
"match_type": "interpolated", |
||||||
|
"name": "200 Smit Street", |
||||||
|
"locality": "Hillbrow", |
||||||
|
"region": "Gauteng", |
||||||
|
"country_a": "ZAF" |
||||||
|
} |
||||||
|
] |
||||||
|
} |
||||||
|
}, |
||||||
|
{ |
||||||
|
"id": 3, |
||||||
|
"status": "fail", |
||||||
|
"in": { |
||||||
|
"text": "Marshall Street, Johannesburg" |
||||||
|
}, |
||||||
|
"expected": { |
||||||
|
"properties": [ |
||||||
|
{ |
||||||
|
"match_type": "exact", |
||||||
|
"layer": "street", |
||||||
|
"name": "Marshall Street", |
||||||
|
"locality": "Johannesburg", |
||||||
|
"region": "Gauteng", |
||||||
|
"country_a": "ZAF" |
||||||
|
} |
||||||
|
] |
||||||
|
} |
||||||
|
}, |
||||||
|
{ |
||||||
|
"id": 3.1, |
||||||
|
"status": "fail", |
||||||
|
"in": { |
||||||
|
"text": "Marshall Street, Hillbrow" |
||||||
|
}, |
||||||
|
"expected": { |
||||||
|
"properties": [ |
||||||
|
{ |
||||||
|
"match_type": "exact", |
||||||
|
"layer": "street", |
||||||
|
"name": "Marshall Street", |
||||||
|
"locality": "Hillbrow", |
||||||
|
"region": "Gauteng", |
||||||
|
"country_a": "ZAF" |
||||||
|
} |
||||||
|
] |
||||||
|
} |
||||||
|
} |
||||||
|
] |
||||||
|
} |
Loading…
Reference in new issue