Navitia: Add support for us-or region (Oregon).

This commit is contained in:
Clayton Craft 2016-05-23 15:56:01 -07:00 committed by Andreas Schildbach
parent ddd26c3799
commit e965593be9
3 changed files with 110 additions and 1 deletions

View file

@ -73,7 +73,7 @@ public enum NetworkId {
DUB,
// United States
SEPTA, RTACHICAGO,
SEPTA, RTACHICAGO, OREGON,
// Canada
ONTARIO, QUEBEC,

View file

@ -0,0 +1,41 @@
/*
* Copyright 2016 Clayton Craft.
*
* 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 <http://www.gnu.org/licenses/>.
*/
package de.schildbach.pte;
import okhttp3.HttpUrl;
public class OregonProvider extends AbstractNavitiaProvider {
private static String API_REGION = "us-or";
public OregonProvider(final HttpUrl apiBase, final String authorization) {
super(NetworkId.OREGON, apiBase, authorization);
setTimeZone("America/Los_Angeles");
}
public OregonProvider(final String authorization) {
super(NetworkId.OREGON, authorization);
setTimeZone("America/Los_Angeles");
}
@Override
public String region() {
return API_REGION;
}
}

View file

@ -0,0 +1,68 @@
/*
* Copyright 2016 Clayton Craft.
*
* 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 <http://www.gnu.org/licenses/>.
*/
package de.schildbach.pte.live;
import static org.junit.Assert.assertEquals;
import org.junit.Test;
import de.schildbach.pte.OregonProvider;
import de.schildbach.pte.dto.Location;
import de.schildbach.pte.dto.LocationType;
import de.schildbach.pte.dto.NearbyLocationsResult;
import de.schildbach.pte.dto.QueryDeparturesResult;
import de.schildbach.pte.dto.SuggestLocationsResult;
/**
* @author Stephane Berube
*/
public class OregonProviderLiveTest extends AbstractNavitiaProviderLiveTest {
public OregonProviderLiveTest() {
super(new OregonProvider(secretProperty("navitia.authorization")));
}
@Test
public void nearbyStations() throws Exception {
final NearbyLocationsResult result = queryNearbyStations(new Location(LocationType.STATION, "OTP:SP:5017"));
print(result);
}
@Test
public void nearbyStationsByCoordinate() throws Exception {
final NearbyLocationsResult result = queryNearbyStations(Location.coord(45514998, -122673334));
print(result);
}
@Test
public void queryDepartures() throws Exception {
final QueryDeparturesResult result = queryDepartures("OTP:SP:5017", false);
print(result);
}
@Test
public void queryDeparturesInvalidStation() throws Exception {
final QueryDeparturesResult result = queryDepartures("OTP:SP:xxxx", false);
assertEquals(QueryDeparturesResult.Status.INVALID_STATION, result.status);
}
@Test
public void suggestLocations() throws Exception {
final SuggestLocationsResult result = suggestLocations("Airport");
print(result);
}
}