/srv/osrm/osrm-backend/features/testbot
NameSizeModeActions
64bit.feature8560644editdlrm
alternative.feature17340644editdlrm
alternative_loop.feature23280644editdlrm
annotations.feature38380644editdlrm
approaches.feature90110644editdlrm
bad.feature23350644editdlrm
basic.feature92620644editdlrm
bearing.feature82260644editdlrm
bearing_param.feature48810644editdlrm
compression.feature6370644editdlrm
continue_straight.feature25110644editdlrm
distance.feature69960644editdlrm
distance_matrix.feature235820644editdlrm
duration.feature13180644editdlrm
duration_matrix.feature231890644editdlrm
example.feature13000644editdlrm
exclude.feature38650644editdlrm
exclude_regressions.feature24070644editdlrm
fastest.feature11060644editdlrm
ferry.feature79350644editdlrm
fixed.feature51480644editdlrm
geometry.feature7120644editdlrm
graph.feature10380644editdlrm
impedance.feature33700644editdlrm
load.feature23630644editdlrm
loop.feature29130644editdlrm
matching.feature232250644editdlrm
maxspeed.feature13320644editdlrm
mode.feature110920644editdlrm
multi_level_routing.feature89160644editdlrm
nil.feature11000644editdlrm
oneway.feature10750644editdlrm
oneway_phantom.feature26480644editdlrm
opposite.feature5820644editdlrm
origin.feature26800644editdlrm
overlap.feature11000644editdlrm
penalty.feature51610644editdlrm
planetary.feature24740644editdlrm
projection.feature29830644editdlrm
routes.feature10740644editdlrm
snap.feature51310644editdlrm
snap_intersection.feature187840644editdlrm
speed.feature10050644editdlrm
status.feature38080644editdlrm
summary.feature23420644editdlrm
time.feature82400644editdlrm
traffic_speeds.feature68990644editdlrm
traffic_speeds_overflow.feature10600644editdlrm
traffic_turn_penalties.feature26330644editdlrm
trip.feature129810644editdlrm
turn_penalty.feature10310644editdlrm
utf.feature43030644editdlrm
via.feature122130644editdlrm
weight.feature136340644editdlrm
zero-speed-updates.feature49650644editdlrm
Edit: /srv/osrm/osrm-backend/features/testbot/exclude.feature (3865B)
@routing @testbot @exclude Feature: Testbot - Exclude flags Background: Given the profile "testbot" Given the node map """ a....b-----c-$-$-d $ $ : e.$.$.f.....g """ And the ways | nodes | highway | toll | # | | ab | primary | | always drivable | | bc | motorway | | not drivable for exclude=motorway and exclude=motorway,toll | | be | primary | yes | not drivable for exclude=toll and exclude=motorway,toll | | ef | primary | yes | not drivable for exclude=toll and exclude=motorway,toll | | fc | primary | yes | not drivable for exclude=toll and exclude=motorway,toll | | cd | motorway | yes | not drivable for exclude=motorway exclude=toll and exclude=motorway,toll | | fg | primary | | always drivable | | gd | primary | | always drivable | Scenario: Testbot - exclude nothing When I route I should get | from | to | route | | a | d | ab,bc,cd,cd | | a | g | ab,be,ef,fg,fg | | a | c | ab,bc,bc | | a | f | ab,be,ef,ef | When I match I should get | trace | matchings | duration | | ad | ad | 115 | When I request a travel time matrix I should get | | a | d | | a | 0 | 115 | | d | 115 | 0 | Scenario: Testbot - exclude motorway Given the query options | exclude | motorway | When I route I should get | from | to | route | | a | d | ab,be,ef,fg,gd,gd | | a | g | ab,be,ef,fg,fg | | a | c | ab,be,ef,fc,fc | | a | f | ab,be,ef,ef | When I match I should get | trace | matchings | duration | | ad | ad | 125 | When I request a travel time matrix I should get | | a | d | | a | 0 | 125 | | d | 125 | 0 | Scenario: Testbot - exclude toll Given the query options | exclude | toll | When I route I should get | from | to | route | | a | d | | | a | g | | | a | c | ab,bc,bc | | a | f | | | f | d | fg,gd,gd | Scenario: Testbot - exclude motorway and toll Given the query options | exclude | motorway,toll | When I route I should get | from | to | route | | a | d | | | a | g | | | a | c | | | a | f | | | f | d | fg,gd,gd | Scenario: Testbot - exclude with unsupported exclude combination Given the query options | exclude | TwoWords2 | When I route I should get | from | to | status | message | | a | d | 400 | Exclude flag combination is not supported. | Scenario: Testbot - exclude with invalid exclude class name Given the query options | exclude | foo | When I route I should get | from | to | status | message | | a | d | 400 | Exclude flag combination is not supported. |