]> git.openstreetmap.org Git - nominatim.git/blob - test/bdd/db/import/simple.feature
rename and add basic tests
[nominatim.git] / test / bdd / db / import / simple.feature
1 @DB
2 Feature: Import of simple objects
3     Testing simple stuff
4
5     @wip
6     Scenario: Import place node
7         Given the places
8           | osm | class | type    | name           | geometry   |
9           | N1  | place | village | 'name' : 'Foo' | 10.0 -10.0 |
10         And the named places
11           | osm | class | type    | housenumber |
12           | N2  | place | village |             |
13         When importing
14         Then table placex contains
15           | object | class  | type    | name           | centroid         |
16           | N1     | place  | village | 'name' : 'Foo' | 10.0,-10.0 +- 1m |
17         When sending query "Foo"
18         Then results contain
19          | ID | osm_type | osm_id |
20          | 0  | N        | 1      |