]> git.openstreetmap.org Git - nominatim.git/blobdiff - test/bdd/api/search/postcode.feature
Merge remote-tracking branch 'upstream/master'
[nominatim.git] / test / bdd / api / search / postcode.feature
index 6033f7cca5978ca105960579d0bcfc3fbc852cb3..e70495f63890f15c958bb75a86ec072963fca68f 100644 (file)
@@ -25,3 +25,23 @@ Feature: Searches with postcodes
         Then result addresses contain
             | country_code |
             | li           |
+
+    Scenario: Postcode search with bounded viewbox restriction
+        When sending json search query "9486" with address
+          | bounded | viewbox |
+          | 1       | 9.55,47.20,9.58,47.22 |
+        Then result addresses contain
+            | postcode |
+            | 9486     |
+        When sending json search query "9486" with address
+          | bounded | viewbox                 |
+          | 1       | 5.00,20.00,6.00,21.00 |
+        Then exactly 0 results are returned
+
+    Scenario: Postcode search with structured query
+        When sending json search query "" with address
+            | postalcode | country |
+            | 9490       | li |
+        Then result addresses contain
+            | country_code | postcode |
+            | li           | 9490     |