]> git.openstreetmap.org Git - nominatim.git/blob - test/bdd/db/import/search_name.feature
Merge remote-tracking branch 'upstream/master'
[nominatim.git] / test / bdd / db / import / search_name.feature
1 @DB
2 Feature: Creation of search terms
3     Tests that search_name table is filled correctly
4
5     Scenario Outline: Comma- and semicolon separated names appear as full names
6         Given the places
7          | osm | class   | type | name+alt_name |
8          | N1  | place   | city | New York<sep>Big Apple |
9         When importing
10         Then search_name contains
11          | object | name_vector |
12          | N1     | #New York, #Big Apple |
13
14     Examples:
15          | sep |
16          | ,   |
17          | ;   |
18
19     Scenario Outline: Name parts before brackets appear as full names
20         Given the places
21          | osm | class   | type | name+name |
22          | N1  | place   | city | Halle (Saale) |
23         When importing
24         Then search_name contains
25          | object | name_vector |
26          | N1     | #Halle Saale, #Halle |
27
28     Scenario: Unnamed POIs have no search entry
29         Given the scene roads-with-pois
30         And the places
31          | osm | class   | type        | geometry |
32          | N1  | place   | house       | :p-N1 |
33         And the named places
34          | osm | class   | type        | geometry |
35          | W1  | highway | residential | :w-north |
36         When importing
37         Then search_name has no entry for N1
38
39     Scenario: Unnamed POI has a search entry when it has unknown addr: tags
40         Given the scene roads-with-pois
41         And the places
42          | osm | class   | type        | housenr | addr+city | geometry |
43          | N1  | place   | house       | 23      | Walltown  | :p-N1 |
44         And the places
45          | osm | class   | type        | name+name   | geometry |
46          | W1  | highway | residential | Rose Street | :w-north |
47         When importing
48         Then search_name contains
49          | object | nameaddress_vector |
50          | N1     | #Rose Street, Walltown |
51         When sending search query "23 Rose Street, Walltown"
52         Then results contain
53          | osm | display_name |
54          | N1  | 23, Rose Street |
55         When sending search query "Walltown, Rose Street 23"
56         Then results contain
57          | osm | display_name |
58          | N1  | 23, Rose Street |
59         When sending search query "Rose Street 23, Walltown"
60         Then results contain
61          | osm | display_name |
62          | N1  | 23, Rose Street |
63
64     Scenario: Searching for unknown addr: tags also works for multiple words
65         Given the scene roads-with-pois
66         And the places
67          | osm | class   | type        | housenr | addr+city        | geometry |
68          | N1  | place   | house       | 23      | Little Big Town  | :p-N1 |
69         And the places
70          | osm | class   | type        | name+name   | geometry |
71          | W1  | highway | residential | Rose Street | :w-north |
72         When importing
73         Then search_name contains
74          | object | nameaddress_vector |
75          | N1     | #Rose Street, rose, Little, Big, Town |
76         When sending search query "23 Rose Street, Little Big Town"
77         Then results contain
78          | osm | display_name |
79          | N1  | 23, Rose Street |
80         When sending search query "Rose Street 23, Little Big Town"
81         Then results contain
82          | osm | display_name |
83          | N1  | 23, Rose Street |
84         When sending search query "Little big Town, Rose Street 23"
85         Then results contain
86          | osm | display_name |
87          | N1  | 23, Rose Street |
88
89      Scenario: Unnamed POI has no search entry when it has known addr: tags
90         Given the scene roads-with-pois
91         And the places
92          | osm | class   | type        | housenr | addr+city | geometry |
93          | N1  | place   | house       | 23      | Walltown  | :p-N1 |
94         And the places
95          | osm | class   | type        | name+name   | addr+city | geometry |
96          | W1  | highway | residential | Rose Street | Walltown | :w-north |
97         When importing
98         Then search_name has no entry for N1
99         When sending search query "23 Rose Street, Walltown"
100         Then results contain
101          | osm | display_name |
102          | N1  | 23, Rose Street |
103
104     Scenario: Unnamed POI must have a house number to get a search entry
105         Given the scene roads-with-pois
106         And the places
107          | osm | class   | type   | addr+city | geometry |
108          | N1  | place   | house  | Walltown  | :p-N1 |
109         And the places
110          | osm | class   | type        | name+name   | geometry |
111          | W1  | highway | residential | Rose Street | :w-north |
112         When importing
113         Then search_name has no entry for N1
114
115     Scenario: Unnamed POIs inherit parent name when unknown addr:place is present
116         Given the scene roads-with-pois
117         And the places
118          | osm | class   | type        | housenr | addr+place | geometry |
119          | N1  | place   | house       | 23      | Walltown   | :p-N1 |
120         And the places
121          | osm | class   | type        | name+name    | geometry |
122          | W1  | highway | residential | Rose Street  | :w-north |
123          | N2  | place   | city        | Strange Town | :p-N1 |
124         When importing
125         Then placex contains
126          | object | parent_place_id |
127          | N1     | N2              |
128         Then search_name contains
129          | object | name_vector | nameaddress_vector |
130          | N1     | #Walltown   | Strange, Town |
131         When sending search query "23 Rose Street"
132         Then exactly 1 results are returned
133         And results contain
134          | osm | display_name |
135          | W1  | Rose Street, Strange Town |
136         When sending search query "23 Walltown, Strange Town"
137         Then results contain
138          | osm | display_name |
139          | N1  | 23, Walltown, Strange Town |
140         When sending search query "Walltown 23, Strange Town"
141         Then results contain
142          | osm | display_name |
143          | N1  | 23, Walltown, Strange Town |
144         When sending search query "Strange Town, Walltown 23"
145         Then results contain
146          | osm | display_name |
147          | N1  | 23, Walltown, Strange Town |
148
149     Scenario: Named POIs can be searched by housenumber when unknown addr:place is present
150         Given the scene roads-with-pois
151         And the places
152          | osm | class   | type  | name       | housenr | addr+place | geometry |
153          | N1  | place   | house | Blue house | 23      | Walltown   | :p-N1 |
154         And the places
155          | osm | class   | type        | name+name    | geometry |
156          | W1  | highway | residential | Rose Street  | :w-north |
157          | N2  | place   | city        | Strange Town | :p-N1 |
158         When importing
159         Then search_name contains
160          | object | name_vector      | nameaddress_vector      |
161          | N1     | #Walltown, #Blue house | Walltown, Strange, Town |
162         When sending search query "23 Walltown, Strange Town"
163         Then results contain
164          | osm | display_name |
165          | N1  | Blue house, 23, Walltown, Strange Town |
166         When sending search query "Walltown 23, Strange Town"
167         Then results contain
168          | osm | display_name |
169          | N1  | Blue house, 23, Walltown, Strange Town |
170         When sending search query "Strange Town, Walltown 23"
171         Then results contain
172          | osm | display_name |
173          | N1  | Blue house, 23, Walltown, Strange Town |
174         When sending search query "Strange Town, Walltown 23, Blue house"
175         Then results contain
176          | osm | display_name |
177          | N1  | Blue house, 23, Walltown, Strange Town |
178         When sending search query "Strange Town, Walltown, Blue house"
179         Then results contain
180          | osm | display_name |
181          | N1  | Blue house, 23, Walltown, Strange Town |
182
183     Scenario: Named POIs can be found when unknown multi-word addr:place is present
184         Given the scene roads-with-pois
185         And the places
186          | osm | class   | type  | name       | housenr | addr+place | geometry |
187          | N1  | place   | house | Blue house | 23      | Moon sun   | :p-N1 |
188         And the places
189          | osm | class   | type        | name+name    | geometry |
190          | W1  | highway | residential | Rose Street  | :w-north |
191          | N2  | place   | city        | Strange Town | :p-N1 |
192         When importing
193         Then search_name contains
194          | object | name_vector      | nameaddress_vector      |
195          | N1     | #Moon sun, #Blue house | Moon, Sun, Strange, Town |
196         When sending search query "23 Moon Sun, Strange Town"
197         Then results contain
198          | osm | display_name |
199          | N1  | Blue house, 23, Moon sun, Strange Town |
200         When sending search query "Blue house, Moon Sun, Strange Town"
201         Then results contain
202          | osm | display_name |
203          | N1  | Blue house, 23, Moon sun, Strange Town |
204
205     Scenario: Unnamed POIs doesn't inherit parent name when addr:place is present only in parent address
206         Given the scene roads-with-pois
207         And the places
208          | osm | class   | type        | housenr | addr+place | geometry |
209          | N1  | place   | house       | 23      | Walltown   | :p-N1 |
210         And the places
211          | osm | class   | type        | name+name    | addr+city | geometry |
212          | W1  | highway | residential | Rose Street  | Walltown  | :w-north |
213          | N2  | place   | suburb      | Strange Town | Walltown  | :p-N1 |
214         When importing
215         Then search_name contains
216          | object | name_vector | nameaddress_vector |
217          | N1     | #Walltown   | Strange, Town      |
218         When sending search query "23 Rose Street, Walltown"
219         Then exactly 1 result is returned
220         And results contain
221          | osm | display_name |
222          | W1  | Rose Street, Strange Town |
223         When sending search query "23  Walltown"
224         Then exactly 1 result is returned
225         And results contain
226          | osm | display_name |
227          | N1  | 23, Walltown, Strange Town |
228
229     Scenario: Unnamed POIs does inherit parent name when unknown addr:place and addr:street is present
230         Given the scene roads-with-pois
231         And the places
232          | osm | class   | type   | housenr | addr+place | addr+street | geometry |
233          | N1  | place   | house  | 23      | Walltown   | Lily Street | :p-N1 |
234         And the places
235          | osm | class   | type        | name+name   | geometry |
236          | W1  | highway | residential | Rose Street | :w-north |
237         When importing
238         Then search_name has no entry for N1
239         When sending search query "23 Rose Street"
240         Then results contain
241          | osm | display_name |
242          | N1  | 23, Rose Street |
243         When sending search query "23 Lily Street"
244         Then exactly 0 results are returned
245
246     Scenario: An unknown addr:street is ignored
247         Given the scene roads-with-pois
248         And the places
249          | osm | class   | type   | housenr |  addr+street | geometry |
250          | N1  | place   | house  | 23      |  Lily Street | :p-N1 |
251         And the places
252          | osm | class   | type        | name+name   | geometry |
253          | W1  | highway | residential | Rose Street | :w-north |
254         When importing
255         Then search_name has no entry for N1
256         When sending search query "23 Rose Street"
257         Then results contain
258          | osm | display_name |
259          | N1  | 23, Rose Street |
260         When sending search query "23 Lily Street"
261         Then exactly 0 results are returned
262
263     Scenario: Named POIs get unknown address tags added in the search_name table
264         Given the scene roads-with-pois
265         And the places
266          | osm | class   | type        | name+name  | housenr | addr+city | geometry |
267          | N1  | place   | house       | Green Moss | 26      | Walltown  | :p-N1 |
268         And the places
269          | osm | class   | type        | name+name   | geometry |
270          | W1  | highway | residential | Rose Street | :w-north |
271         When importing
272         Then search_name contains
273          | object | name_vector | nameaddress_vector |
274          | N1     | #Green Moss | #Rose Street, Walltown |
275         When sending search query "Green Moss, Rose Street, Walltown"
276         Then results contain
277          | osm | display_name |
278          | N1  | Green Moss, 26, Rose Street |
279         When sending search query "Green Moss, 26, Rose Street, Walltown"
280         Then results contain
281          | osm | display_name |
282          | N1  | Green Moss, 26, Rose Street |
283         When sending search query "26, Rose Street, Walltown"
284         Then results contain
285          | osm | display_name |
286          | N1  | Green Moss, 26, Rose Street |
287         When sending search query "Rose Street 26, Walltown"
288         Then results contain
289          | osm | display_name |
290          | N1  | Green Moss, 26, Rose Street |
291         When sending search query "Walltown, Rose Street 26"
292         Then results contain
293          | osm | display_name |
294          | N1  | Green Moss, 26, Rose Street |
295
296     Scenario: Named POI doesn't inherit parent name when addr:place is present only in parent address
297         Given the scene roads-with-pois
298         And the places
299          | osm | class   | type        | name+name  | addr+place | geometry |
300          | N1  | place   | house       | Green Moss | Walltown  | :p-N1 |
301         And the places
302          | osm | class   | type        | name+name    | geometry |
303          | W1  | highway | residential | Rose Street  | :w-north |
304          | N2  | place   | suburb      | Strange Town | :p-N1 |
305         When importing
306         Then search_name contains
307          | object | name_vector | nameaddress_vector |
308          | N1     | #Green Moss | Walltown |
309         When sending search query "Green Moss, Rose Street, Walltown"
310         Then exactly 0 result is returned
311         When sending search query "Green Moss, Walltown"
312         Then results contain
313          | osm | display_name |
314          | N1  | Green Moss, Walltown, Strange Town |
315
316     Scenario: Named POIs inherit address from parent
317         Given the scene roads-with-pois
318         And the places
319          | osm | class   | type        | name     | geometry |
320          | N1  | place   | house       | foo      | :p-N1 |
321          | W1  | highway | residential | the road | :w-north |
322         When importing
323         Then search_name contains
324          | object | name_vector | nameaddress_vector |
325          | N1     | foo         | #the road |
326
327     Scenario: Some addr: tags are added to address
328         Given the scene roads-with-pois
329         And the places
330          | osm | class   | type        | name     | geometry |
331          | N2  | place   | city        | bonn     | 81 81 |
332          | N3  | place   | suburb      | smalltown| 80 81 |
333         And the named places
334          | osm | class   | type    | addr+city | addr+municipality | addr+suburb | geometry |
335          | W1  | highway | service | bonn      | New York          | Smalltown   | :w-north |
336         When importing
337         Then search_name contains
338          | object | nameaddress_vector |
339          | W1     | bonn, new, york, smalltown |
340
341     Scenario: A known addr:* tag is added even if the name is unknown
342         Given the scene roads-with-pois
343         And the places
344          | osm | class   | type        | name | addr+city | geometry |
345          | W1  | highway | residential | Road | Nandu     | :w-north |
346         When importing
347         Then search_name contains
348          | object | nameaddress_vector |
349          | W1     | nandu |
350
351     Scenario: addr:postcode is not added to the address terms
352         Given the scene roads-with-pois
353         And the places
354          | osm | class   | type        | name+ref  | geometry |
355          | N1  | place   | state       | 12345     | 80 80 |
356         And the named places
357          | osm | class   | type        | addr+postcode | geometry |
358          | W1  | highway | residential | 12345 | :w-north |
359         When importing
360         Then search_name contains not
361          | object | nameaddress_vector |
362          | W1     | 12345 |
363
364     Scenario: a linked place does not show up in search name
365         Given the named places
366          | osm  | class    | type           | admin | geometry |
367          | R13  | boundary | administrative | 9     | poly-area:0.01 |
368         And the named places
369          | osm  | class    | type           | geometry |
370          | N2   | place    | city           | 0.1 0.1 |
371         And the relations
372          | id | members       | tags+type |
373          | 13 | N2:label      | boundary |
374         When importing
375         Then placex contains
376          | object | linked_place_id |
377          | N2     | R13             |
378         And search_name has no entry for N2
379
380     Scenario: a linked waterway does not show up in search name
381         Given the scene split-road
382         And the places
383          | osm | class    | type  | name  | geometry |
384          | W1  | waterway | river | Rhein | :w-2 |
385          | W2  | waterway | river | Rhein | :w-3 |
386          | R13 | waterway | river | Rhein | :w-1 + :w-2 + :w-3 |
387         And the relations
388          | id | members            | tags+type |
389          | 13 | W1,W2:main_stream  | waterway |
390         When importing
391         Then placex contains
392          | object | linked_place_id |
393          | W1     | R13 |
394          | W2     | R13 |
395         And search_name has no entry for W1
396         And search_name has no entry for W2