mirror of
https://github.com/osm-search/Nominatim.git
synced 2025-01-06 04:33:15 +03:00
39 lines
1.2 KiB
Gherkin
39 lines
1.2 KiB
Gherkin
@APIDB
|
|
Feature: Structured search queries
|
|
Testing correctness of results with
|
|
structured queries
|
|
|
|
Scenario: Country only
|
|
When sending json search query "" with address
|
|
| country |
|
|
| Liechtenstein |
|
|
Then address of result 0 is
|
|
| type | value |
|
|
| country | Liechtenstein |
|
|
| country_code | li |
|
|
|
|
Scenario: Postcode only
|
|
When sending json search query "" with address
|
|
| postalcode |
|
|
| 22547 |
|
|
Then results contain
|
|
| type |
|
|
| postcode |
|
|
And result addresses contain
|
|
| postcode |
|
|
| 22547 |
|
|
|
|
Scenario: Street, postcode and country
|
|
When sending xml search query "" with address
|
|
| street | postalcode | country |
|
|
| Old Palace Road | GU2 7UP | United Kingdom |
|
|
Then result header contains
|
|
| attr | value |
|
|
| querystring | Old Palace Road, GU2 7UP, United Kingdom |
|
|
|
|
Scenario: gihub #176
|
|
When sending json search query "" with address
|
|
| city |
|
|
| Mercedes |
|
|
Then at least 1 result is returned
|