@DB Feature: Import and search of names Tests all naming related issues: normalisation, abbreviations, internationalisation, etc. Scenario: Case-insensitivity of search Given the places | osm | class | type | name | | N1 | place | locality | FooBar | When importing Then placex contains | object | class | type | name+name | | N1 | place | locality | FooBar | When searching for "FooBar" Then results contain | ID | osm_type | osm_id | | 0 | N | 1 | When searching for "foobar" Then results contain | ID | osm_type | osm_id | | 0 | N | 1 | When searching for "fOObar" Then results contain | ID | osm_type | osm_id | | 0 | N | 1 | When searching for "FOOBAR" Then results contain | ID | osm_type | osm_id | | 0 | N | 1 | Scenario: Multiple spaces in name Given the places | osm | class | type | name | | N1 | place | locality | one two three | When importing When searching for "one two three" Then results contain | ID | osm_type | osm_id | | 0 | N | 1 | When searching for "one two three" Then results contain | ID | osm_type | osm_id | | 0 | N | 1 | When searching for "one two three" Then results contain | ID | osm_type | osm_id | | 0 | N | 1 | When searching for " one two three" Then results contain | ID | osm_type | osm_id | | 0 | N | 1 | Scenario: Special characters in name Given the places | osm | class | type | name | | N1 | place | locality | Jim-Knopf-Str | | N2 | place | locality | Smith/Weston | | N3 | place | locality | space mountain | | N4 | place | locality | space | | N5 | place | locality | mountain | When importing When searching for "Jim-Knopf-Str" Then results contain | ID | osm_type | osm_id | | 0 | N | 1 | When searching for "Jim Knopf-Str" Then results contain | ID | osm_type | osm_id | | 0 | N | 1 | When searching for "Jim Knopf Str" Then results contain | ID | osm_type | osm_id | | 0 | N | 1 | When searching for "Jim/Knopf-Str" Then results contain | ID | osm_type | osm_id | | 0 | N | 1 | When searching for "Jim-Knopfstr" Then results contain | ID | osm_type | osm_id | | 0 | N | 1 | When searching for "Smith/Weston" Then results contain | ID | osm_type | osm_id | | 0 | N | 2 | When searching for "Smith Weston" Then results contain | ID | osm_type | osm_id | | 0 | N | 2 | When searching for "Smith-Weston" Then results contain | ID | osm_type | osm_id | | 0 | N | 2 | When searching for "space mountain" Then results contain | ID | osm_type | osm_id | | 0 | N | 3 | When searching for "space-mountain" Then results contain | ID | osm_type | osm_id | | 0 | N | 3 | When searching for "space/mountain" Then results contain | ID | osm_type | osm_id | | 0 | N | 3 | When searching for "space\mountain" Then results contain | ID | osm_type | osm_id | | 0 | N | 3 | When searching for "space(mountain)" Then results contain | ID | osm_type | osm_id | | 0 | N | 3 | Scenario: Landuse with name are found Given the places | osm | class | type | name | geometry | | R1 | natural | meadow | landuse1 | (0 0, 1 0, 1 1, 0 1, 0 0) | | R2 | landuse | industrial | landuse2 | (0 0, -1 0, -1 -1, 0 -1, 0 0) | When importing When searching for "landuse1" Then results contain | ID | osm_type | osm_id | | 0 | R | 1 | When searching for "landuse2" Then results contain | ID | osm_type | osm_id | | 0 | R | 2 | Scenario: Postcode boundaries without ref Given the places | osm | class | type | postcode | geometry | | R1 | boundary | postal_code | 12345 | (0 0, 1 0, 1 1, 0 1, 0 0) | When importing When searching for "12345" Then results contain | ID | osm_type | osm_id | | 0 | R | 1 | Scenario: Unprintable characters in postcodes are ignored Given the named places | osm | class | type | address | | N234 | amenity | prison | 'postcode' : u'1234\u200e' | When importing And searching for "1234" Then results contain | ID | osm_type | | 0 | P | Scenario Outline: Housenumbers with special characters are found Given the grid | 1 | | | | 2 | | | | 9 | | | And the places | osm | class | type | name | geometry | | W1 | highway | primary | Main St | 1,2 | And the places | osm | class | type | housenr | geometry | | N1 | building | yes | | 9 | When importing And searching for "Main St " Then results contain | osm_type | osm_id | name | | N | 1 | , Main St | Examples: | nr | | 1 | | 3456 | | 1 a | | 56b | | 1 A | | 2號 | | 1Б | | 1 к1 | | 23-123 | Scenario Outline: Housenumbers in lists are found Given the grid | 1 | | | | 2 | | | | 9 | | | And the places | osm | class | type | name | geometry | | W1 | highway | primary | Main St | 1,2 | And the places | osm | class | type | housenr | geometry | | N1 | building | yes | | 9 | When importing And searching for "Main St " Then results contain | osm_type | osm_id | name | | N | 1 | , Main St | Examples: | nr-list | nr | | 1,2,3 | 1 | | 1,2,3 | 2 | | 1, 2, 3 | 3 | | 45 ;67;3 | 45 | | 45 ;67;3 | 67 | | 1a;1k | 1a | | 1a;1k | 1k | | 34/678 | 34 | | 34/678 | 678 | | 34/678 | 34/678 |