X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/e871fabd5ffccb9b6db16a813c3addc89683d4e6..211fe96d04ae26a24b884fe2f5e9b7f13f821022:/test/bdd/db/import/search_name.feature diff --git a/test/bdd/db/import/search_name.feature b/test/bdd/db/import/search_name.feature index 30c430a6..d393b8f3 100644 --- a/test/bdd/db/import/search_name.feature +++ b/test/bdd/db/import/search_name.feature @@ -2,6 +2,29 @@ Feature: Creation of search terms Tests that search_name table is filled correctly + Scenario Outline: Comma- and semicolon separated names appear as full names + Given the places + | osm | class | type | name+alt_name | + | N1 | place | city | New YorkBig Apple | + When importing + Then search_name contains + | object | name_vector | + | N1 | #New York, #Big Apple | + + Examples: + | sep | + | , | + | ; | + + Scenario Outline: Name parts before brackets appear as full names + Given the places + | osm | class | type | name+name | + | N1 | place | city | Halle (Saale) | + When importing + Then search_name contains + | object | name_vector | + | N1 | #Halle Saale, #Halle | + Scenario: Unnamed POIs have no search entry Given the scene roads-with-pois And the places @@ -23,12 +46,20 @@ Feature: Creation of search terms | W1 | highway | residential | Rose Street | :w-north | When importing Then search_name contains - | object | name_vector | nameaddress_vector | - | N1 | #23 | Rose Street, Walltown | - When searching for "23 Rose Street, Walltown" + | object | nameaddress_vector | + | N1 | #Rose Street, Walltown | + When sending search query "23 Rose Street, Walltown" Then results contain - | osm_type | osm_id | name | - | N | 1 | 23, Rose Street | + | osm | display_name | + | N1 | 23, Rose Street | + When sending search query "Walltown, Rose Street 23" + Then results contain + | osm | display_name | + | N1 | 23, Rose Street | + When sending search query "Rose Street 23, Walltown" + Then results contain + | osm | display_name | + | N1 | 23, Rose Street | Scenario: Searching for unknown addr: tags also works for multiple words Given the scene roads-with-pois @@ -40,12 +71,20 @@ Feature: Creation of search terms | W1 | highway | residential | Rose Street | :w-north | When importing Then search_name contains - | object | name_vector | nameaddress_vector | - | N1 | #23 | Rose Street, Little, Big, Town | - When searching for "23 Rose Street, Little Big Town" + | object | nameaddress_vector | + | N1 | #Rose Street, rose, Little, Big, Town | + When sending search query "23 Rose Street, Little Big Town" + Then results contain + | osm | display_name | + | N1 | 23, Rose Street | + When sending search query "Rose Street 23, Little Big Town" + Then results contain + | osm | display_name | + | N1 | 23, Rose Street | + When sending search query "Little big Town, Rose Street 23" Then results contain - | osm_type | osm_id | name | - | N | 1 | 23, Rose Street | + | osm | display_name | + | N1 | 23, Rose Street | Scenario: Unnamed POI has no search entry when it has known addr: tags Given the scene roads-with-pois @@ -57,10 +96,10 @@ Feature: Creation of search terms | W1 | highway | residential | Rose Street | Walltown | :w-north | When importing Then search_name has no entry for N1 - When searching for "23 Rose Street, Walltown" + When sending search query "23 Rose Street, Walltown" Then results contain - | osm_type | osm_id | name | - | N | 1 | 23, Rose Street | + | osm | display_name | + | N1 | 23, Rose Street | Scenario: Unnamed POI must have a house number to get a search entry Given the scene roads-with-pois @@ -88,16 +127,80 @@ Feature: Creation of search terms | N1 | N2 | Then search_name contains | object | name_vector | nameaddress_vector | - | N1 | #23 | Walltown, Strange, Town | - When searching for "23 Rose Street" + | N1 | #Walltown | Strange, Town | + When sending search query "23 Rose Street" Then exactly 1 results are returned And results contain - | osm_type | osm_id | name | - | W | 1 | Rose Street, Strange Town | - When searching for "23 Walltown, Strange Town" + | osm | display_name | + | W1 | Rose Street, Strange Town | + When sending search query "23 Walltown, Strange Town" Then results contain - | osm_type | osm_id | name | - | N | 1 | 23, Walltown, Strange Town | + | osm | display_name | + | N1 | 23, Walltown, Strange Town | + When sending search query "Walltown 23, Strange Town" + Then results contain + | osm | display_name | + | N1 | 23, Walltown, Strange Town | + When sending search query "Strange Town, Walltown 23" + Then results contain + | osm | display_name | + | N1 | 23, Walltown, Strange Town | + + Scenario: Named POIs can be searched by housenumber when unknown addr:place is present + Given the scene roads-with-pois + And the places + | osm | class | type | name | housenr | addr+place | geometry | + | N1 | place | house | Blue house | 23 | Walltown | :p-N1 | + And the places + | osm | class | type | name+name | geometry | + | W1 | highway | residential | Rose Street | :w-north | + | N2 | place | city | Strange Town | :p-N1 | + When importing + Then search_name contains + | object | name_vector | nameaddress_vector | + | N1 | #Walltown, #Blue house | Walltown, Strange, Town | + When sending search query "23 Walltown, Strange Town" + Then results contain + | osm | display_name | + | N1 | Blue house, 23, Walltown, Strange Town | + When sending search query "Walltown 23, Strange Town" + Then results contain + | osm | display_name | + | N1 | Blue house, 23, Walltown, Strange Town | + When sending search query "Strange Town, Walltown 23" + Then results contain + | osm | display_name | + | N1 | Blue house, 23, Walltown, Strange Town | + When sending search query "Strange Town, Walltown 23, Blue house" + Then results contain + | osm | display_name | + | N1 | Blue house, 23, Walltown, Strange Town | + When sending search query "Strange Town, Walltown, Blue house" + Then results contain + | osm | display_name | + | N1 | Blue house, 23, Walltown, Strange Town | + + Scenario: Named POIs can be found when unknown multi-word addr:place is present + Given the scene roads-with-pois + And the places + | osm | class | type | name | housenr | addr+place | geometry | + | N1 | place | house | Blue house | 23 | Moon sun | :p-N1 | + And the places + | osm | class | type | name+name | geometry | + | W1 | highway | residential | Rose Street | :w-north | + | N2 | place | city | Strange Town | :p-N1 | + When importing + Then search_name contains + | object | name_vector | nameaddress_vector | + | N1 | #Moon sun, #Blue house | Moon, Sun, Strange, Town | + When sending search query "23 Moon Sun, Strange Town" + Then results contain + | osm | display_name | + | N1 | Blue house, 23, Moon sun, Strange Town | + When sending search query "Blue house, Moon Sun, Strange Town" + Then results contain + | osm | display_name | + | N1 | Blue house, 23, Moon sun, Strange Town | Scenario: Unnamed POIs doesn't inherit parent name when addr:place is present only in parent address Given the scene roads-with-pois @@ -111,17 +214,17 @@ Feature: Creation of search terms When importing Then search_name contains | object | name_vector | nameaddress_vector | - | N1 | #23 | Walltown | - When searching for "23 Rose Street, Walltown" + | N1 | #Walltown | Strange, Town | + When sending search query "23 Rose Street, Walltown" Then exactly 1 result is returned And results contain - | osm_type | osm_id | name | - | W | 1 | Rose Street, Strange Town | - When searching for "23 Walltown" + | osm | display_name | + | W1 | Rose Street, Strange Town | + When sending search query "23 Walltown" Then exactly 1 result is returned And results contain - | osm_type | osm_id | name | - | N | 1 | 23, Walltown, Strange Town | + | osm | display_name | + | N1 | 23, Walltown, Strange Town | Scenario: Unnamed POIs does inherit parent name when unknown addr:place and addr:street is present Given the scene roads-with-pois @@ -133,11 +236,11 @@ Feature: Creation of search terms | W1 | highway | residential | Rose Street | :w-north | When importing Then search_name has no entry for N1 - When searching for "23 Rose Street" + When sending search query "23 Rose Street" Then results contain - | osm_type | osm_id | name | - | N | 1 | 23, Rose Street | - When searching for "23 Lily Street" + | osm | display_name | + | N1 | 23, Rose Street | + When sending search query "23 Lily Street" Then exactly 0 results are returned Scenario: An unknown addr:street is ignored @@ -150,29 +253,45 @@ Feature: Creation of search terms | W1 | highway | residential | Rose Street | :w-north | When importing Then search_name has no entry for N1 - When searching for "23 Rose Street" + When sending search query "23 Rose Street" Then results contain - | osm_type | osm_id | name | - | N | 1 | 23, Rose Street | - When searching for "23 Lily Street" + | osm | display_name | + | N1 | 23, Rose Street | + When sending search query "23 Lily Street" Then exactly 0 results are returned - Scenario: Named POIs have unknown address tags added in the search_name table + Scenario: Named POIs get unknown address tags added in the search_name table Given the scene roads-with-pois And the places - | osm | class | type | name+name | addr+city | geometry | - | N1 | place | house | Green Moss | Walltown | :p-N1 | + | osm | class | type | name+name | housenr | addr+city | geometry | + | N1 | place | house | Green Moss | 26 | Walltown | :p-N1 | And the places | osm | class | type | name+name | geometry | | W1 | highway | residential | Rose Street | :w-north | When importing Then search_name contains | object | name_vector | nameaddress_vector | - | N1 | #Green Moss | Rose Street, Walltown | - When searching for "Green Moss, Rose Street, Walltown" + | N1 | #Green Moss | #Rose Street, Walltown | + When sending search query "Green Moss, Rose Street, Walltown" + Then results contain + | osm | display_name | + | N1 | Green Moss, 26, Rose Street | + When sending search query "Green Moss, 26, Rose Street, Walltown" + Then results contain + | osm | display_name | + | N1 | Green Moss, 26, Rose Street | + When sending search query "26, Rose Street, Walltown" + Then results contain + | osm | display_name | + | N1 | Green Moss, 26, Rose Street | + When sending search query "Rose Street 26, Walltown" + Then results contain + | osm | display_name | + | N1 | Green Moss, 26, Rose Street | + When sending search query "Walltown, Rose Street 26" Then results contain - | osm_type | osm_id | name | - | N | 1 | Green Moss, Rose Street | + | osm | display_name | + | N1 | Green Moss, 26, Rose Street | Scenario: Named POI doesn't inherit parent name when addr:place is present only in parent address Given the scene roads-with-pois @@ -187,12 +306,12 @@ Feature: Creation of search terms Then search_name contains | object | name_vector | nameaddress_vector | | N1 | #Green Moss | Walltown | - When searching for "Green Moss, Rose Street, Walltown" + When sending search query "Green Moss, Rose Street, Walltown" Then exactly 0 result is returned - When searching for "Green Moss, Walltown" + When sending search query "Green Moss, Walltown" Then results contain - | osm_type | osm_id | name | - | N | 1 | Green Moss, Walltown, Strange Town | + | osm | display_name | + | N1 | Green Moss, Walltown, Strange Town | Scenario: Named POIs inherit address from parent Given the scene roads-with-pois @@ -203,7 +322,7 @@ Feature: Creation of search terms When importing Then search_name contains | object | name_vector | nameaddress_vector | - | N1 | foo | the road | + | N1 | foo | #the road | Scenario: Some addr: tags are added to address Given the scene roads-with-pois