use of org.onebusaway.transit_data_federation.impl.transit_graph.BlockEntryImpl in project onebusaway-application-modules by camsys.
the class BlockConfigurationEntryImplTest method test.
@Test
public void test() {
ServiceIdActivation serviceIds = serviceIds(lsids("sA"), lsids("sB"));
StopEntryImpl stopA = stop("stopA", 47.0, -122.0);
StopEntryImpl stopB = stop("stopB", 47.1, -122.0);
BlockEntryImpl block = block("blockA");
TripEntryImpl tripA = trip("tripA", 1000);
TripEntryImpl tripB = trip("tripB", 2000);
TripEntryImpl tripC = trip("tripB", 1500);
List<TripEntry> trips = Arrays.asList((TripEntry) tripA, tripB, tripC);
StopTimeEntryImpl st1 = stopTime(1, stopA, tripA, time(6, 30), time(6, 35), 200);
StopTimeEntryImpl st2 = stopTime(2, stopB, tripA, time(7, 00), time(7, 10), 800);
StopTimeEntryImpl st3 = stopTime(3, stopB, tripB, time(7, 30), time(7, 35), 400);
StopTimeEntryImpl st4 = stopTime(4, stopA, tripB, time(8, 00), time(8, 07), 1600);
StopTimeEntryImpl st5 = stopTime(5, stopA, tripC, time(8, 30), time(8, 35), 300);
StopTimeEntryImpl st6 = stopTime(6, stopB, tripC, time(9, 00), time(9, 02), 1200);
Builder builder = BlockConfigurationEntryImpl.builder();
builder.setBlock(block);
builder.setTrips(trips);
builder.setServiceIds(serviceIds);
builder.setTripGapDistances(new double[] { 10.0, 20.0, 0.0 });
BlockConfigurationEntry entry = builder.create();
assertSame(block, entry.getBlock());
assertSame(serviceIds, entry.getServiceIds());
assertEquals(4530.0, entry.getTotalBlockDistance(), 0.0);
/**
**
* Trips
***
*/
List<BlockTripEntry> blockTrips = entry.getTrips();
assertEquals(3, blockTrips.size());
BlockTripEntry blockTrip = blockTrips.get(0);
assertEquals(0, blockTrip.getSequence());
assertEquals(0, blockTrip.getAccumulatedStopTimeIndex());
assertEquals(0, blockTrip.getAccumulatedSlackTime());
assertEquals(0.0, blockTrip.getDistanceAlongBlock(), 0.0);
assertSame(blockTrips.get(1), blockTrip.getNextTrip());
assertNull(blockTrip.getPreviousTrip());
blockTrip = blockTrips.get(1);
assertEquals(1, blockTrip.getSequence());
assertEquals(2, blockTrip.getAccumulatedStopTimeIndex());
assertEquals(15 * 60, blockTrip.getAccumulatedSlackTime());
assertEquals(1010.0, blockTrip.getDistanceAlongBlock(), 0.0);
assertSame(blockTrips.get(2), blockTrip.getNextTrip());
assertSame(blockTrips.get(0), blockTrip.getPreviousTrip());
blockTrip = blockTrips.get(2);
assertEquals(2, blockTrip.getSequence());
assertEquals(4, blockTrip.getAccumulatedStopTimeIndex());
assertEquals(35 * 60, blockTrip.getAccumulatedSlackTime());
assertEquals(3030.0, blockTrip.getDistanceAlongBlock(), 0.0);
assertNull(blockTrip.getNextTrip());
assertSame(blockTrips.get(1), blockTrip.getPreviousTrip());
/**
**
* Stop Times
***
*/
List<BlockStopTimeEntry> stopTimes = entry.getStopTimes();
assertEquals(6, stopTimes.size());
BlockStopTimeEntry bst = stopTimes.get(0);
assertEquals(0, bst.getAccumulatedSlackTime());
assertEquals(0, bst.getBlockSequence());
assertEquals(200, bst.getDistanceAlongBlock(), 0.0);
assertSame(st1, bst.getStopTime());
assertSame(blockTrips.get(0), bst.getTrip());
bst = stopTimes.get(1);
assertEquals(300, bst.getAccumulatedSlackTime());
assertEquals(1, bst.getBlockSequence());
assertEquals(800, bst.getDistanceAlongBlock(), 0.0);
assertSame(st2, bst.getStopTime());
assertSame(blockTrips.get(0), bst.getTrip());
bst = stopTimes.get(2);
assertEquals(15 * 60, bst.getAccumulatedSlackTime());
assertEquals(2, bst.getBlockSequence());
assertEquals(1410, bst.getDistanceAlongBlock(), 0.0);
assertSame(st3, bst.getStopTime());
assertSame(blockTrips.get(1), bst.getTrip());
bst = stopTimes.get(3);
assertEquals(20 * 60, bst.getAccumulatedSlackTime());
assertEquals(3, bst.getBlockSequence());
assertEquals(2610, bst.getDistanceAlongBlock(), 0.0);
assertSame(st4, bst.getStopTime());
assertSame(blockTrips.get(1), bst.getTrip());
bst = stopTimes.get(4);
assertEquals(35 * 60, bst.getAccumulatedSlackTime());
assertEquals(4, bst.getBlockSequence());
assertEquals(3330, bst.getDistanceAlongBlock(), 0.0);
assertSame(st5, bst.getStopTime());
assertSame(blockTrips.get(2), bst.getTrip());
bst = stopTimes.get(5);
assertEquals(40 * 60, bst.getAccumulatedSlackTime());
assertEquals(5, bst.getBlockSequence());
assertEquals(4230, bst.getDistanceAlongBlock(), 0.0);
assertSame(st6, bst.getStopTime());
assertSame(blockTrips.get(2), bst.getTrip());
}
use of org.onebusaway.transit_data_federation.impl.transit_graph.BlockEntryImpl in project onebusaway-application-modules by camsys.
the class FrequenciesEntriesFactoryTest method testTripsWithMismatchedFrequencies.
@Test
public void testTripsWithMismatchedFrequencies() {
BlockEntryImpl block = block("block");
TripEntryImpl tripEntryA = trip("trip").setRoute(_routeEntry).setServiceId(_lsid).setBlock(block);
_graph.putTripEntry(tripEntryA);
addStopTime(tripEntryA, stopTime().setStop(_stopA).setTime(time(7, 00)));
Trip trip = new Trip();
trip.setId(tripEntryA.getId());
Frequency freqA = new Frequency();
freqA.setTrip(trip);
freqA.setStartTime(time(8, 00));
freqA.setEndTime(time(10, 00));
freqA.setHeadwaySecs(10 * 60);
freqA.setExactTimes(0);
Frequency freqB = new Frequency();
freqB.setTrip(trip);
freqB.setStartTime(time(10, 00));
freqB.setEndTime(time(12, 00));
freqB.setHeadwaySecs(10 * 60);
/**
* We don't allow a mix of trips with exactTimes=0 and exactTimes=1
*/
freqB.setExactTimes(1);
Mockito.when(_dao.getAllFrequencies()).thenReturn(Arrays.asList(freqA, freqB));
_graph.initialize();
try {
_factory.processFrequencies(_graph);
fail();
} catch (IllegalStateException ex) {
}
}
use of org.onebusaway.transit_data_federation.impl.transit_graph.BlockEntryImpl in project onebusaway-application-modules by camsys.
the class FrequenciesEntriesFactoryTest method testSingleTripWithFrequencies.
@Test
public void testSingleTripWithFrequencies() {
BlockEntryImpl block = block("block");
TripEntryImpl tripEntryA = trip("trip").setRoute(_routeEntry).setServiceId(_lsid).setBlock(block);
_graph.putTripEntry(tripEntryA);
addStopTime(tripEntryA, stopTime().setStop(_stopA).setTime(time(7, 00)));
BlockConfigurationEntry blockConfig = blockConfiguration(block, serviceIds("serviceId"), tripEntryA);
Trip trip = new Trip();
trip.setId(tripEntryA.getId());
Frequency freqA = new Frequency();
freqA.setTrip(trip);
freqA.setStartTime(time(8, 00));
freqA.setEndTime(time(10, 00));
freqA.setHeadwaySecs(10 * 60);
freqA.setExactTimes(0);
Frequency freqB = new Frequency();
freqB.setTrip(trip);
freqB.setStartTime(time(10, 00));
freqB.setEndTime(time(12, 00));
freqB.setHeadwaySecs(10 * 60);
freqB.setExactTimes(0);
Mockito.when(_dao.getAllFrequencies()).thenReturn(Arrays.asList(freqA, freqB));
_graph.initialize();
_factory.processFrequencies(_graph);
blockConfig = block.getConfigurations().get(0);
List<FrequencyEntry> frequencies = blockConfig.getFrequencies();
assertEquals(2, frequencies.size());
FrequencyEntry frequency = frequencies.get(0);
assertEquals(freqA.getStartTime(), frequency.getStartTime());
assertEquals(freqA.getEndTime(), frequency.getEndTime());
assertEquals(freqA.getHeadwaySecs(), frequency.getHeadwaySecs());
assertEquals(freqA.getExactTimes(), frequency.getExactTimes());
}
Aggregations