Status fixes

This commit is contained in:
Lauren Budorick
2016-03-29 18:30:37 -07:00
committed by Patrick Niklaus
parent 4b6a85aae0
commit c7f3645fe2
3 changed files with 14 additions and 14 deletions
+8 -8
View File
@@ -14,8 +14,8 @@ Feature: Status messages
When I route I should get
| from | to | route | status | message |
| a | b | ab | 200 | Found route between points |
| b | a | ab | 200 | Found route between points |
| a | b | ab | 200 | |
| b | a | ab | 200 | |
Scenario: No route found
Given the node map
@@ -30,10 +30,10 @@ Feature: Status messages
When I route I should get
| from | to | route | status | message |
| a | b | ab | 200 | Found route between points |
| c | d | cd | 200 | Found route between points |
| a | c | | 207 | Impossible route between points |
| b | d | | 207 | Impossible route between points |
| a | b | ab | 200 | |
| c | d | cd | 200 | |
| a | c | | 400 | Impossible route between points |
| b | d | | 400 | Impossible route between points |
Scenario: Malformed requests
Given the node locations
@@ -47,7 +47,7 @@ Feature: Status messages
When I route I should get
| request | status | message |
| viaroute?loc=1,1&loc=1.01,1 | 200 | Found route between points |
| viaroute?loc=1,1&loc=1.01,1 | 200 | |
| nonsense | 400 | Service not found |
| nonsense?loc=1,1&loc=1.01,1 | 400 | Service not found |
| | 400 | Query string malformed close to position 0 |
@@ -61,7 +61,7 @@ Feature: Status messages
| viaroute?loc=x,y | 400 | Query string malformed close to position 9 |
| viaroute?loc=1,1&loc= | 400 | Query string malformed close to position 17 |
| viaroute?loc=1,1&loc=1 | 400 | Query string malformed close to position 17 |
| viaroute?loc=1,1&loc=1,1 | 200 | Found route between points |
| viaroute?loc=1,1&loc=1,1 | 200 | |
| viaroute?loc=1,1&loc=1,1,1 | 400 | Query string malformed close to position 25 |
| viaroute?loc=1,1&loc=x | 400 | Query string malformed close to position 17 |
| viaroute?loc=1,1&loc=x,y | 400 | Query string malformed close to position 17 |