osrm-backend/features/testbot/load.feature

64 lines
1.5 KiB
Gherkin
Raw Normal View History

@routing @load @testbot
Feature: Ways of loading data
# Several scenarios that change between direct/datastore makes
# it easier to check that the test framework behaves as expected.
Background:
Given the profile "testbot"
Scenario: Load data with datastore - ab
Given data is loaded with datastore
Given the node map
| a | b |
And the ways
| nodes |
| ab |
When I route I should get
| from | to | route |
2016-03-31 20:25:37 -04:00
| a | b | ab,ab |
| b | a | ab,ab |
Scenario: Load data directly - st
Given data is loaded directly
Given the node map
| s | t |
And the ways
| nodes |
| st |
When I route I should get
| from | to | route |
2016-03-31 20:25:37 -04:00
| s | t | st,st |
| t | s | st,st |
2016-03-04 15:11:05 -05:00
Scenario: Load data datastore - xy
Given data is loaded with datastore
Given the node map
| x | y |
And the ways
| nodes |
| xy |
When I route I should get
| from | to | route |
2016-03-31 20:25:37 -04:00
| x | y | xy,xy |
| y | x | xy,xy |
Scenario: Load data directly - cd
Given data is loaded directly
Given the node map
| c | d |
And the ways
| nodes |
| cd |
When I route I should get
| from | to | route |
2016-03-31 20:25:37 -04:00
| c | d | cd,cd |
| d | c | cd,cd |