X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/65500927c2955860d392f76fa9b2c318ccd716d2..c3238682a8867edfb3c052ca4d2d27b3926ad17a:/test/bdd/db/update/simple.feature diff --git a/test/bdd/db/update/simple.feature b/test/bdd/db/update/simple.feature index 0833c90c..ccaacad0 100644 --- a/test/bdd/db/update/simple.feature +++ b/test/bdd/db/update/simple.feature @@ -28,17 +28,20 @@ Feature: Update of simple objects Scenario: Do delete large features of low rank Given the named places - | osm | class | type | geometry | - | W1 | place | house | poly-area:5.0 | - | R1 | boundary | national_park | poly-area:5.0 | + | osm | class | type | geometry | + | W1 | place | house | poly-area:5.0 | + | R1 | natural | wood | poly-area:5.0 | + | R2 | highway | residential | poly-area:5.0 | When importing Then placex contains | object | rank_address | | R1 | 0 | + | R2 | 26 | | W1 | 30 | - When marking for delete R1,W1 + When marking for delete R1,R2,W1 Then placex has no entry for W1 Then placex has no entry for R1 + Then placex has no entry for R2 Scenario: type mutation Given the places @@ -69,3 +72,38 @@ Feature: Update of simple objects Then placex contains | object | class | type | | N3 | place | house | + + Scenario: remove boundary when changing from polygon to way + Given the grid + | 1 | 2 | + | 3 | 4 | + And the places + | osm | class | type | name | admin | geometry | + | W1 | boundary | administrative | Haha | 5 | (1, 2, 4, 3, 1) | + When importing + Then placex contains + | object | + | W1 | + When updating places + | osm | class | type | name | admin | geometry | + | W1 | boundary | administrative | Haha | 5 | 1, 2, 4, 3 | + Then placex has no entry for W1 + + #895 + Scenario: update rank when boundary is downgraded from admin to historic + Given the grid + | 1 | 2 | + | 3 | 4 | + And the places + | osm | class | type | name | admin | geometry | + | W1 | boundary | administrative | Haha | 5 | (1, 2, 4, 3, 1) | + When importing + Then placex contains + | object | rank_address | + | W1 | 10 | + When updating places + | osm | class | type | name | admin | geometry | + | W1 | boundary | historic | Haha | 5 | (1, 2, 4, 3, 1) | + Then placex contains + | object | rank_address | + | W1 | 0 |