/* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ package org.opentripplanner.routing.core; import org.junit.Test; import org.onebusaway.gtfs.model.Agency; import org.onebusaway.gtfs.model.AgencyAndId; import org.onebusaway.gtfs.model.Route; import org.onebusaway.gtfs.model.Trip; import org.opentripplanner.common.model.GenericLocation; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertTrue; import static org.opentripplanner.routing.core.TraverseMode.CAR; public class RoutingRequestTest { private GenericLocation randomLocation() { return new GenericLocation(Math.random(), Math.random()); } @Test public void testRequest() { RoutingRequest request = new RoutingRequest(); request.addMode(CAR); assertTrue(request.modes.getCar()); request.removeMode(CAR); assertFalse(request.modes.getCar()); request.setModes(new TraverseModeSet("BICYCLE,WALK")); assertFalse(request.modes.getCar()); assertTrue(request.modes.getBicycle()); assertTrue(request.modes.getWalk()); } @Test public void testIntermediatePlaces() { RoutingRequest req = new RoutingRequest(); assertFalse(req.hasIntermediatePlaces()); req.clearIntermediatePlaces(); assertFalse(req.hasIntermediatePlaces()); req.addIntermediatePlace(randomLocation()); assertTrue(req.hasIntermediatePlaces()); req.clearIntermediatePlaces(); assertFalse(req.hasIntermediatePlaces()); req.addIntermediatePlace(randomLocation()); req.addIntermediatePlace(randomLocation()); assertTrue(req.hasIntermediatePlaces()); } @Test public void testPreferencesPenaltyForRoute() { AgencyAndId agencyAndId = new AgencyAndId(); Agency agency = new Agency(); Route route = new Route(); Trip trip = new Trip(); RoutingRequest routingRequest = new RoutingRequest(); trip.setRoute(route); route.setId(agencyAndId); route.setAgency(agency); assertEquals(0, routingRequest.preferencesPenaltyForRoute(trip.getRoute())); } }