From 6260fef2e8bfc4038a1d3435044130b82ae4db3d Mon Sep 17 00:00:00 2001 From: Sarah Hoffmann Date: Tue, 10 Nov 2020 16:00:19 +0100 Subject: [PATCH] add test for placex from addr tags --- test/bdd/db/import/addressing.feature | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/test/bdd/db/import/addressing.feature b/test/bdd/db/import/addressing.feature index 52f966d8..e7d60c30 100644 --- a/test/bdd/db/import/addressing.feature +++ b/test/bdd/db/import/addressing.feature @@ -298,3 +298,26 @@ Feature: Address computation | object | address | | W1 | W2 | + Scenario: addr:* tags are honored even when the place is outside + Given the grid + | 1 | | 2 | | | 5 | + | | | | 8 | 9 | | + | 4 | | 3 | | | 6 | + And the places + | osm | class | type | admin | name | geometry | + | R1 | boundary | administrative | 8 | Left | (1,2,3,4,1) | + | R2 | boundary | administrative | 8 | Right | (2,3,6,5,2) | + And the places + | osm | class | type | addr+city | geometry | + | W1 | highway | primary | Left | 8,9 | + | W2 | highway | primary | Right | 8,9 | + When importing + Then place_addressline contains + | object | address | isaddress | + | W1 | R1 | True | + | W1 | R2 | False | + | W2 | R2 | True | + And place_addressline doesn't contain + | object | address | + | W2 | R1 | + -- 2.45.2