Then there are duplicates
Scenario: Search with bounded viewbox in right area
- When sending json search query "restaurant" with address
+ When sending json search query "bar" with address
| bounded | viewbox |
- | 1 | 9.93027,53.61634,10.10073,53.54500 |
+ | 1 | -56.16786,-34.84061,-56.12525,-34.86526 |
Then result addresses contain
- | state |
- | Hamburg |
+ | city |
+ | Montevideo |
Scenario: Search with bounded viewboxlbrt in right area
- When sending json search query "restaurant" with address
+ When sending json search query "bar" with address
| bounded | viewboxlbrt |
- | 1 | 9.93027,53.54500,10.10073,53.61634 |
+ | 1 | -56.16786,-34.86526,-56.12525,-34.84061 |
Then result addresses contain
- | state |
- | Hamburg |
+ | city |
+ | Montevideo |
Scenario: No POI search with unbounded viewbox
When sending json search query "restaurant"
| ID | state |
| 0 | Florida |
+ Scenario: viewboxes cannot be points
+ When sending json search query "foo"
+ | viewbox |
+ | 1.01,34.6,1.01,34.6 |
+ Then a HTTP 400 is returned
+
+ Scenario Outline: viewbox must have four coordinate numbers
+ When sending json search query "foo"
+ | viewbox |
+ | <viewbox> |
+ Then a HTTP 400 is returned
+
+ Examples:
+ | viewbox |
+ | 34 |
+ | 0.003,-84.4 |
+ | 5.2,4.5542,12.4 |
+ | 23.1,-6,0.11,44.2,9.1 |
+
+ Scenario Outline: viewboxlbrt must have four coordinate numbers
+ When sending json search query "foo"
+ | viewboxlbrt |
+ | <viewbox> |
+ Then a HTTP 400 is returned
+
+ Examples:
+ | viewbox |
+ | 34 |
+ | 0.003,-84.4 |
+ | 5.2,4.5542,12.4 |
+ | 23.1,-6,0.11,44.2,9.1 |
+
Scenario: Overly large limit number for search results
When sending json search query "restaurant"
| limit |
| xml | geojson |
| json | geojson |
| jsonv2 | geojson |
+
+ Scenario: Search along a route
+ When sending json search query "restaurant" with address
+ | bounded | routewidth | route |
+ | 1 | 0.1 | -103.23255,44.08198,-103.22516,44.08079 |
+ Then result addresses contain
+ | city |
+ | Rapid City |