-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Emil Tin
committed
Jan 10, 2013
1 parent
2e3947c
commit 7d7baa7
Showing
1 changed file
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
@routing @testbot @routes @todo | ||
Feature: OSM Route Relation | ||
|
||
Background: | ||
Given the profile "testbot" | ||
|
||
Scenario: Prioritize ways that are part of route relations | ||
This scenario assumes that the testbot uses an impedance of 0.5 for ways that are part of 'testbot' routes. | ||
|
||
Given the node map | ||
| s | | | t | | | | | ||
| a | | | b | | | c | | ||
| | | | | | | | | ||
| | | | u | | | v | | ||
|
||
And the ways | ||
| nodes | | ||
| ab | | ||
| bc | | ||
| as | | ||
| stb | | ||
| bu | | ||
| uvc | | ||
|
||
And the relations | ||
| type | route | way:route | | ||
| route | testbot | as,stb | | ||
| route | testbot | bu,uvc | | ||
|
||
When I route I should get | ||
| from | to | route | distance | time | | ||
| b | c | bc | 300m +-1 | 30s +-1 | | ||
| c | b | bc | 300m +-1 | 30s +-1 | | ||
| a | b | as,stb | 500m +-1 | 50s +-1 | | ||
| b | a | stb,as | 500m +-1 | 50s +-1 | |