]> git.openstreetmap.org Git - nominatim.git/blob - test/bdd/api/details/simple.feature
Merge pull request #2032 from lonvia/remove-ui
[nominatim.git] / test / bdd / api / details / simple.feature
1 @APIDB
2 Feature: Object details
3     Check details page for correctness
4
5     Scenario Outline: Details via OSM id
6         When sending <format> details query for <object>
7         Then the result is valid <format>
8
9     Examples:
10      | format | object |
11      | json | 492887 |
12      | json | N4267356889 |
13      | json | W230804120 |
14      | json | R123924 |
15
16     Scenario Outline: Details via unknown OSM id
17         When sending <format> details query for <object>
18         Then a HTTP 400 is returned
19
20     Examples:
21       | format | object |
22       | json | 1 |
23       | json | R1 |
24
25     Scenario: Details with keywords
26         When sending details query for W78099902
27             | keywords |
28             | 1 |
29         Then the result is valid json
30
31     # ticket #1343
32     Scenario: Details of a country with keywords
33         When sending details query for R287072
34             | keywords |
35             | 1 |
36         Then the result is valid json
37