X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/ac29f8bc91ec69cf6695ffc8118292b1cccce1e4..dc3b1abfe2d06c790317bb66e51abfd9334e08f8:/test/bdd/db/import/parenting.feature?ds=sidebyside diff --git a/test/bdd/db/import/parenting.feature b/test/bdd/db/import/parenting.feature index a3648539..62d65cef 100644 --- a/test/bdd/db/import/parenting.feature +++ b/test/bdd/db/import/parenting.feature @@ -224,7 +224,7 @@ Feature: Parenting of objects When importing Then placex contains | object | parent_place_id | - | W1 | W3 | + | W1 | W2 | Scenario: Building with addr:street tags Given the scene building-on-street-corner @@ -374,7 +374,7 @@ Feature: Parenting of objects | W1 | N4 | 3 | | N1 | W2 | None | | N2 | W3 | 4 | - | N3 | W2 | None | + | N3 | N4 | None | Scenario: POIs parent a road if they are attached to it Given the scene points-on-roads @@ -460,3 +460,23 @@ Feature: Parenting of objects Then placex contains | object | parent_place_id | | N10 | W1 | + + Scenario: place=square may be parented via addr:place + Given the grid + | | | 9 | | | + | | 5 | | 6 | | + | | 8 | | 7 | | + And the places + | osm | class | type | name+name | geometry | + | W2 | place | square | Foo pl | (5, 6, 7, 8, 5) | + And the places + | osm | class | type | name+name | housenr | addr_place | geometry | + | N10 | shop | grocery | le shop | 5 | Foo pl | 9 | + When importing + Then placex contains + | object | rank_address | + | W2 | 25 | + Then placex contains + | object | parent_place_id | + | N10 | W2 | +