X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/4c593fa859f0ffa8d3bac817e7954e28bc8a840a..a338ba695b67a65aaa5102a0cfe2bd7da398a0b3:/test/bdd/api/search/queries.feature diff --git a/test/bdd/api/search/queries.feature b/test/bdd/api/search/queries.feature index e0f58466..fea4da41 100644 --- a/test/bdd/api/search/queries.feature +++ b/test/bdd/api/search/queries.feature @@ -19,12 +19,10 @@ Feature: Search queries When sending json search query "Schellingstr 86, Hamburg" with address | accept-language | | de | - Then address of result 0 is + Then address of result 0 contains | type | value | | house_number | 86 | | road | Schellingstraße | - | neighbourhood | Auenviertel | - | suburb | Eilbek | | postcode | 22089 | | city | Hamburg | | country | Deutschland | @@ -34,12 +32,10 @@ Feature: Search queries When sending json search query "Schellingstr 73, Hamburg" with address | accept-language | | de | - Then address of result 0 is + Then address of result 0 contains | type | value | | house_number | 73 | | road | Schellingstraße | - | neighbourhood | Auenviertel | - | suburb | Eilbek | | postcode | 22089 | | city | Hamburg | | country | Deutschland | @@ -164,3 +160,31 @@ Feature: Search queries | 0 | 6395 | | 1 | 6395 BIS | + Scenario Outline: Same Searches with white spaces + When sending json search query "" + Then exactly 1 result is returned + And results contain + | class | + | building | + + Examples: + | data | + | amerlugalpe, N 47.15739° E 9.61264° | + | amerlugalpe, N 47.15739° E 9.61264° | + | amerlugalpe , N 47.15739° E 9.61264° | + | amerlugalpe, N 47.15739° E 9.61264° | + | amerlugalpe , N 47.15739° E 9.61264° | + + Scenario: Searched with white spaces + When sending json search query "22nd Street Southwest , Huron" + Then results contain + | class | type | + | highway | residential | + + + # github #1949 + Scenario: Addressdetails always return the place type + When sending json search query "Rotherbaum" with address + Then result addresses contain + | ID | suburb | + | 0 | Rotherbaum |