mirror of
https://gitlab.com/oeffi/public-transport-enabler.git
synced 2025-07-05 13:18:47 +00:00
197 lines
6.3 KiB
Java
197 lines
6.3 KiB
Java
/*
|
|
* Copyright 2018 the original author or authors.
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU 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 <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
package de.schildbach.pte.live;
|
|
|
|
import static org.junit.Assert.assertTrue;
|
|
|
|
import org.junit.Test;
|
|
|
|
import de.schildbach.pte.PlNavitiaProvider;
|
|
import de.schildbach.pte.dto.Point;
|
|
|
|
/**
|
|
* @author Michel Le Bihan
|
|
*/
|
|
public class PlNavitiaProviderLiveTest extends AbstractNavitiaProviderLiveTest {
|
|
public PlNavitiaProviderLiveTest() {
|
|
super(new PlNavitiaProvider(secretProperty("navitia.authorization")));
|
|
}
|
|
|
|
@Test
|
|
public void nearbyStationsAddress() throws Exception {
|
|
// stations close to those coordinates (lat, lon)
|
|
// no decimal point, has to include 6 decimal places
|
|
nearbyStationsAddress(52231160, 21010740);
|
|
}
|
|
|
|
@Test
|
|
public void nearbyStationsAddress2() throws Exception {
|
|
// different test case for stations close to coordinates (lat, lon)
|
|
// no decimal point, has to include 6 decimal places
|
|
nearbyStationsAddress(52244700, 21001260);
|
|
}
|
|
|
|
@Test
|
|
public void nearbyStationsStation() throws Exception {
|
|
// station to find other stations around
|
|
// look in NTFS file for a stop_id (that contains "SP") and append to "stop_point:"
|
|
nearbyStationsStation("stop_point:OWW:SP:ctr");
|
|
}
|
|
|
|
@Test
|
|
public void nearbyStationsPoi() throws Exception {
|
|
// POI to find stations around
|
|
// search OSM for a node, use identifier after
|
|
// "https://www.openstreetmap.org/node/" and append it to "poi:n"
|
|
nearbyStationsPoi("poi:n35121252");
|
|
}
|
|
|
|
@Test
|
|
public void nearbyStationsAny() throws Exception {
|
|
// coordinates to find stations around
|
|
nearbyStationsAny(52231160, 21010740);
|
|
}
|
|
|
|
@Test
|
|
public void nearbyStationsInvalidStation() throws Exception {
|
|
// station that does not exist?
|
|
nearbyStationsInvalidStation("stop_point:RTP:SP:392");
|
|
}
|
|
|
|
@Test
|
|
public void queryDeparturesEquivsFalse() throws Exception {
|
|
// what is it for??
|
|
queryDeparturesEquivsFalse("stop_point:OWW:SP:ctr");
|
|
}
|
|
|
|
@Test
|
|
public void queryDeparturesStopArea() throws Exception {
|
|
// what is it for??
|
|
// has to be an existing stop area (i.e. ID contains "SA")
|
|
queryDeparturesStopArea("stop_area:OWW:SA:709003");
|
|
}
|
|
|
|
@Test
|
|
public void queryDeparturesEquivsTrue() throws Exception {
|
|
// what is it for??
|
|
// can be the same to queryDeparturesEquivsFalse
|
|
queryDeparturesEquivsTrue("stop_point:OWW:SP:709003");
|
|
}
|
|
|
|
@Test
|
|
public void queryDeparturesInvalidStation() throws Exception {
|
|
// station that does not exist
|
|
queryDeparturesInvalidStation("stop_point:OBO:SP:999999");
|
|
}
|
|
|
|
@Test
|
|
public void suggestLocations() throws Exception {
|
|
// start of a place name that should return something
|
|
suggestLocationsFromName("Pałac");
|
|
}
|
|
|
|
@Test
|
|
public void suggestLocationsFromAddress() throws Exception {
|
|
// start of an address that should return something
|
|
suggestLocationsFromAddress("Radarowa 1");
|
|
}
|
|
|
|
@Test
|
|
public void suggestLocationsNoLocation() throws Exception {
|
|
// fake place that will not return results
|
|
suggestLocationsNoLocation("quinconcesadasdjkaskd");
|
|
}
|
|
|
|
@Test
|
|
public void queryTripAddresses() throws Exception {
|
|
// two existing addresses to define a trip
|
|
queryTrip("Radarowa 1, Warszawa", "Nowowiejska 37a, Warszawa");
|
|
}
|
|
|
|
@Test
|
|
public void queryTripAddressStation() throws Exception {
|
|
// one existing address and one existing station to define a trip
|
|
queryTrip("Nowowiejska 37a, Warszawa", "Centrum 01, Warszawa");
|
|
}
|
|
|
|
@Test
|
|
public void queryTripStations() throws Exception {
|
|
// two existing stops to define a trip
|
|
queryTrip("Radarowa 01", "Centrum 01");
|
|
}
|
|
|
|
@Test
|
|
public void queryTripStations2() throws Exception {
|
|
// two existing stations for a trip, second test case
|
|
queryTrip("Ratuszowa - ZOO 01", "Nowowiejska 01");
|
|
}
|
|
|
|
@Test
|
|
public void queryTripStations3() throws Exception {
|
|
// two existing stations for a trip, third test case
|
|
queryTrip("Warszawa Zoo", "Politechnika");
|
|
}
|
|
|
|
@Test
|
|
public void queryTripStationsRapidTransit() throws Exception {
|
|
// two existing stations for "rapid transit"... ?
|
|
queryTrip("Politechnika", "Centrum");
|
|
}
|
|
|
|
@Test
|
|
public void queryTripNoSolution() throws Exception {
|
|
// two existing stations that are not connected
|
|
queryTripNoSolution("Centrum", "Sródmiescie SKM");
|
|
}
|
|
|
|
@Test
|
|
public void queryTripUnknownFrom() throws Exception {
|
|
// existing station for end of trip, don't know where from
|
|
queryTripUnknownFrom("Centrum");
|
|
}
|
|
|
|
@Test
|
|
public void queryTripUnknownTo() throws Exception {
|
|
// existing station to start from, don't know where to
|
|
queryTripUnknownTo("Politechnika");
|
|
}
|
|
|
|
@Test
|
|
public void queryTripSlowWalk() throws Exception {
|
|
// two addresses for a "slow walk"
|
|
queryTripSlowWalk("Nowowiejska 37a, Warszawa", "Centrum 01, Warszawa");
|
|
}
|
|
|
|
@Test
|
|
public void queryTripFastWalk() throws Exception {
|
|
// two addresses for a "fast walk", can be same as above
|
|
queryTripFastWalk("Nowowiejska 37a, Warszawa", "Centrum 01, Warszawa");
|
|
}
|
|
|
|
@Test
|
|
public void queryMoreTrips() throws Exception {
|
|
// two addresses to show more trip options, can be same as above
|
|
queryMoreTrips("Nowowiejska 37a, Warszawa", "Centrum 01, Warszawa");
|
|
}
|
|
|
|
@Test
|
|
public void getArea() throws Exception {
|
|
final Point[] polygon = provider.getArea();
|
|
assertTrue(polygon.length > 0);
|
|
}
|
|
}
|