mirror of
https://gitlab.com/oeffi/public-transport-enabler.git
synced 2025-07-17 08:29:50 +00:00

git-svn-id: https://public-transport-enabler.googlecode.com/svn/trunk@311 0924bc21-9374-b0fa-ee44-9ff1593b38f0
97 lines
2.9 KiB
Java
97 lines
2.9 KiB
Java
/*
|
|
* Copyright 2010 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 <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
package de.schildbach.pte;
|
|
|
|
import static junit.framework.Assert.assertTrue;
|
|
|
|
import java.util.regex.Matcher;
|
|
|
|
import org.junit.Test;
|
|
|
|
/**
|
|
* @author Andreas Schildbach
|
|
*/
|
|
public class BvgProviderTest
|
|
{
|
|
@Test
|
|
public void footwayWithLink()
|
|
{
|
|
assertFineConnectionDetails("" //
|
|
+ "<a href=\"/Stadtplan/index/mobil?language=d&location=,ADR,WGS84,13426558,52536061&label=10405 Bln Pankow, Christburger Str. 123\">10405 Bln Pankow, Christburger Str. 123</a>\n"
|
|
+ "<br />\n" //
|
|
+ "10 Min.\n" //
|
|
+ "Fussweg\n" //
|
|
+ "<br />\n" //
|
|
+ "<a href=\"/Fahrinfo/bin/stboard.bin/dox?ld=0.1&n=2&i=c6.0318411.1278336553&rt=0&input=9110017\">\n" //
|
|
+ "<strong>Prenzlauer Allee/Danziger Str. (Berlin)</strong>\n" //
|
|
+ "</a>\n" //
|
|
+ "<br />\n");
|
|
}
|
|
|
|
@Test
|
|
public void footwayWithoutLink()
|
|
{
|
|
assertFineConnectionDetails("" //
|
|
+ "18 Min.\n" //
|
|
+ "Fussweg\n" //
|
|
+ "<br />\n" //
|
|
+ "<strong>Berlin, Deutschlandhalle</strong>\n" //
|
|
+ "<br/>Messedamm 26; 14055 Berlin\n" //
|
|
+ "<br />\n");
|
|
}
|
|
|
|
@Test
|
|
public void footwayUebergang()
|
|
{
|
|
assertFineConnectionDetails("" //
|
|
+ "17 Min.\n" //
|
|
+ "Übergang\n" //
|
|
+ "<br />\n" //
|
|
+ "<a href=\"/Fahrinfo/bin/stboard.bin/dox?ld=0.1&n=2&i=fx.0101111.1283848693&rt=0&input=9025321\">\n" //
|
|
+ "<strong>S Olympiastadion (Berlin)</strong>\n" //
|
|
+ "</a>\n" //
|
|
+ "<br />\n");
|
|
}
|
|
|
|
@Test
|
|
public void trip()
|
|
{
|
|
assertFineConnectionDetails("" //
|
|
+ "<a href=\"/Fahrinfo/bin/stboard.bin/dox?ld=0.1&n=2&i=er.042611.1278315324&rt=0&input=9275402\">\n" //
|
|
+ "<strong>Brandenburg, Frhr.-v.-Thüngen-Str.</strong>\n" //
|
|
+ "</a>\n" //
|
|
+ "<br />\n" //
|
|
+ "ab 09:35\n" //
|
|
+ "<br/><strong>BusH/528</strong>\n" //
|
|
+ "Ri. Brandenburg, Potsdamer Str.\n" //
|
|
+ "<br />\n" //
|
|
+ "an 09:41\n" //
|
|
+ "<br />\n" //
|
|
+ "<a href=\"/Fahrinfo/bin/stboard.bin/dox?ld=0.1&n=2&i=er.042611.1278315324&rt=0&input=9275104\">\n" //
|
|
+ "<strong>Brandenburg, Plauer Str.</strong>\n" //
|
|
+ "</a>\n" //
|
|
+ "<br />\n");
|
|
}
|
|
|
|
private void assertFineConnectionDetails(String s)
|
|
{
|
|
Matcher m = BvgProvider.P_CONNECTION_DETAILS_FINE.matcher(s);
|
|
assertTrue(m.matches());
|
|
// ParserUtils.printGroups(m);
|
|
}
|
|
}
|