/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/oneway_phantom.feature (2648B)
@routing @testbot @oneway Feature: Handle multiple phantom nodes in one-way segment # Check we handle routes where source and destination are # phantom nodes on the same one-way segment. # See: https://github.com/Project-OSRM/osrm-backend/issues/5788 Background: Given the profile "testbot" Scenario: One-way segment with adjacent phantom nodes Given the node map """ d c a12b """ And the ways | nodes | oneway | | ab | yes | | bc | no | | cd | no | | da | no | When I route I should get | from | to | route | time | distance | | 1 | 2 | ab,ab | 5s +-0.1 | 50m ~1% | | 1 | c | ab,bc,bc | 30s +-0.1 | 300m ~1% | | 2 | 1 | ab,bc,cd,da,ab | 65s +-0.1 | 650m ~1% | | 2 | c | ab,bc,bc | 25s +-0.1 | 250m ~1% | | c | 1 | cd,da,ab | 40s +-0.1 | 400m ~1% | | c | 2 | cd,da,ab | 45s +-0.1 | 450m ~1% | When I request a travel time matrix I should get | | 1 | 2 | c | | 1 | 0 | 5 +-0.1 | 30 +-0.1 | | 2 | 65 +-0.1 | 0 | 25 +-0.1 | | c | 40 +-0.1 | 45 +-0.1 | 0 | When I request a travel time matrix I should get | | 1 | 2 | c | | 1 | 0 | 5 +-0.1 | 30 +-0.1 | When I request a travel time matrix I should get | | 1 | 2 | c | | 2 | 65 +-0.1 | 0 | 25 +-0.1 | When I request a travel time matrix I should get | | 1 | | 1 | 0 | | 2 | 65 +-0.1 | | c | 40 +-0.1 | When I request a travel time matrix I should get | | 2 | | 1 | 5 +-0.1 | | 2 | 0 | | c | 45 +-0.1 | When I request a travel distance matrix I should get | | 1 | 2 | c | | 1 | 0 | 50 ~1% | 300 ~1% | | 2 | 650 ~1% | 0 | 250 ~1% | | c | 400 ~1% | 450 ~1% | 0 | When I request a travel distance matrix I should get | | 1 | 2 | c | | 1 | 0 | 50 ~1% | 300 ~1% | When I request a travel distance matrix I should get | | 1 | 2 | c | | 2 | 650 ~1% | 0 | 250 ~1% | When I request a travel distance matrix I should get | | 1 | | 1 | 0 | | 2 | 650 ~1% | | c | 400 ~1% | When I request a travel distance matrix I should get | | 2 | | 1 | 50 ~1% | | 2 | 0 | | c | 450 ~1% |