]> git.openstreetmap.org Git - nominatim.git/blob - test/bdd/db/import/country.feature
bdd: allow to set an origin of the grid
[nominatim.git] / test / bdd / db / import / country.feature
1 @DB
2 Feature: Country handling
3     Tests for import and use of country information
4
5     Scenario: Country names from OSM country relations are added
6         Given the places
7             | osm  | class    | type           | admin | name+name:xy | country | geometry |
8             | R1   | boundary | administrative | 2     | Loudou       | de      | (9 52, 9 53, 10 52, 9 52) |
9         Given the places
10             | osm  | class    | type          | name  | geometry   |
11             | N1   | place    | town          | Wenig | country:de |
12         When importing
13         When sending search query "Wenig, Loudou"
14         Then results contain
15             | osm | display_name |
16             | N1  | Wenig, Deutschland |
17         When sending search query "Wenig"
18             | accept-language |
19             | xy,en |
20         Then results contain
21             | osm | display_name |
22             | N1  | Wenig, Loudou |
23     Scenario: OSM country relations outside expected boundaries are ignored
24         Given the places
25             | osm  | class    | type           | admin | name+name:xy | country | geometry |
26             | R1   | boundary | administrative | 2     | Loudou       | de      | poly-area:0.1 |
27         Given the places
28             | osm  | class    | type          | name  | geometry   |
29             | N1   | place    | town          | Wenig | country:de |
30         When importing
31         When sending search query "Wenig"
32             | accept-language |
33             | xy,en |
34         Then results contain
35             | osm | display_name |
36             | N1  | Wenig, Germany |
37     Scenario: Pre-defined country names are used
38         Given the grid with origin CH
39             | 1 |
40         Given the places
41             | osm  | class    | type          | name  | geometry   |
42             | N1   | place    | town          | Ingb  | 1          |
43         When importing
44         And sending search query "Ingb"
45             | accept-language |
46             | en,de |
47         Then results contain
48             | osm | display_name |
49             | N1  | Ingb, Switzerland |