]> git.openstreetmap.org Git - nominatim.git/commitdiff
add test case for bad update
authorSarah Hoffmann <lonvia@denofr.de>
Fri, 25 Aug 2023 06:45:47 +0000 (08:45 +0200)
committerSarah Hoffmann <lonvia@denofr.de>
Fri, 25 Aug 2023 12:22:49 +0000 (14:22 +0200)
test/bdd/osm2pgsql/update/tags.feature

index 3d0830405082fc9d6087e747da4813a41355e173..e2fd665aa34799517536dc669124aec70aa6e5b6 100644 (file)
@@ -488,3 +488,26 @@ Feature: Tag evaluation
         Then placex contains exactly
           | object       | type     | admin_level |
           | R10:boundary | informal | 4           |
+
+
+    Scenario: Main tag and geometry is changed
+        When loading osm data
+          """
+          n1 x40 y40
+          n2 x40.0001 y40
+          n3 x40.0001 y40.0001
+          n4 x40 y40.0001
+          w5 Tbuilding=house,name=Foo Nn1,n2,n3,n4,n1
+          """
+        Then place contains exactly
+          | object      | type  |
+          | W5:building | house |
+
+        When updating osm data
+          """
+          n1 x39.999 y40
+          w5 Tbuilding=terrace,name=Bar Nn1,n2,n3,n4,n1
+          """
+        Then place contains exactly
+          | object      | type    |
+          | W5:building | terrace |