]> git.openstreetmap.org Git - nominatim.git/blob - test/bdd/api/details/simple.feature
Merge remote-tracking branch 'upstream/master'
[nominatim.git] / test / bdd / api / details / simple.feature
1 @SQLITE
2 @APIDB
3 Feature: Object details
4     Check details page for correctness
5
6     Scenario Outline: Details via OSM id
7         When sending details query for <type><id>
8         Then the result is valid json
9         And results contain
10             | osm_type | osm_id |
11             | <type>   | <id> |
12
13     Examples:
14      | type | id |
15      | N    | 5484325405 |
16      | W    | 43327921 |
17      | R    | 123924 |
18
19
20     Scenario Outline: Details for different class types for the same OSM id
21         When sending details query for N300209696:<class>
22         Then the result is valid json
23         And results contain
24           | osm_type | osm_id    | category |
25           | N        | 300209696 | <class> |
26
27     Examples:
28      | class |
29      | tourism |
30      | natural |
31      | mountain_pass |
32
33
34     Scenario Outline: Details via unknown OSM id
35         When sending details query for <object>
36         Then a HTTP 404 is returned
37
38     Examples:
39       | object |
40       | 1 |
41       | R1 |
42       | N300209696:highway |
43
44
45      Scenario: Details for interpolation way return the interpolation
46         When sending details query for W1
47         Then the result is valid json
48         And results contain
49             | category | type   | osm_type | osm_id | admin_level |
50             | place    | houses | W        | 1      | 15          |
51
52
53      @Fail
54      Scenario: Details for interpolation way return the interpolation
55         When sending details query for 112871
56         Then the result is valid json
57         And results contain
58             | category | type   | admin_level |
59             | place    | houses | 15          |
60         And result has not attributes osm_type,osm_id
61
62
63      @Fail
64      Scenario: Details for interpolation way return the interpolation
65         When sending details query for 112820
66         Then the result is valid json
67         And results contain
68             | category | type     | admin_level |
69             | place    | postcode | 15          |
70         And result has not attributes osm_type,osm_id
71
72
73     Scenario Outline: Details debug output returns no errors
74         When sending debug details query for <feature>
75         Then the result is valid html
76
77         Examples:
78           | feature     |
79           | N5484325405 |
80           | W1          |
81           | 112820      |
82           | 112871      |