improve cuke process management, support OSRM_PORT

This commit is contained in:
Emil Tin
2012-12-15 12:34:53 +01:00
parent 29344f55ae
commit ae106a3a90
9 changed files with 122 additions and 57 deletions
+34
View File
@@ -0,0 +1,34 @@
@stress @launch
Feature: Launching and shutting down
Background:
Given the speedprofile "testbot"
Scenario: Repeated launch and shutdown
Given a grid size of 10000 meters
Given the node map
| h | a | b |
| g | x | c |
| f | e | d |
And the ways
| nodes | highway |
| xa | primary |
| xb | primary |
| xc | primary |
| xd | primary |
| xe | primary |
| xf | primary |
| xg | primary |
| xh | primary |
When I route 100 times I should get
| from | to | route |
| x | a | xa |
| x | b | xb |
| x | c | xc |
| x | d | xd |
| x | e | xe |
| x | f | xf |
| x | g | xg |
| x | h | xh |