]> git.openstreetmap.org Git - nominatim.git/commitdiff
add forgotten BDD test
authorSarah Hoffmann <lonvia@denofr.de>
Tue, 30 Jul 2024 15:42:09 +0000 (17:42 +0200)
committerSarah Hoffmann <lonvia@denofr.de>
Wed, 31 Jul 2024 09:16:49 +0000 (11:16 +0200)
test/bdd/db/query/reverse.feature [new file with mode: 0644]

diff --git a/test/bdd/db/query/reverse.feature b/test/bdd/db/query/reverse.feature
new file mode 100644 (file)
index 0000000..1294110
--- /dev/null
@@ -0,0 +1,23 @@
+@DB
+Feature: Reverse searches
+    Test results of reverse queries
+
+    @v1-api-python-only
+    Scenario: POI in POI area
+        Given the 0.0001 grid with origin 1,1
+          | 1 |   |  |  |  |  |  |  | 2 |
+          |   | 9 |  |  |  |  |  |  |   |
+          | 4 |   |  |  |  |  |  |  | 3 |
+        And the places
+          | osm | class   | type       | geometry    |
+          | W1  | aeroway | terminal   | (1,2,3,4,1) |
+          | N1  | amenity | restaurant | 9           |
+        When importing
+        And sending v1/reverse at 1.0001,1.0001
+        Then results contain
+         | osm |
+         | N1  |
+        When sending v1/reverse at 1.0003,1.0001
+        Then results contain
+         | osm |
+         | W1  |