/* This file is part of RouteConverter. RouteConverter 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 2 of the License, or (at your option) any later version. RouteConverter 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 RouteConverter; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA Copyright (C) 2007 Christian Pesch. All Rights Reserved. */ package slash.navigation.kml; import org.junit.Test; import slash.common.type.CompactCalendar; import java.text.DateFormat; import static org.junit.Assert.assertEquals; import static slash.common.TestCase.assertDoubleEquals; import static slash.common.TestCase.calendar; public class TavellogTest { private Kml20Format format = new Kml20Format(); private static final String TAVELLOG_DESCRIPTION = "<description><![CDATA[<html><body>Time: 2009/02/07 21:45:55<BR>Altitude: 62.20<BR>Speed: 15.37<BR></body></html>]]></description>"; @Test public void testParseTime() { KmlPosition position = new KmlPosition(null, null, null, null, null, null); CompactCalendar expectedCal = calendar(2009, 2, 7, 21, 45, 55); format.parseTime(position, TAVELLOG_DESCRIPTION, null); CompactCalendar actualCal = position.getTime(); String expected = DateFormat.getDateTimeInstance().format(expectedCal.getTime()); String actual = DateFormat.getDateTimeInstance().format(actualCal.getTime()); assertEquals(expected, actual); assertEquals(expectedCal, actualCal); } @Test public void testParseSpeed() { assertDoubleEquals(15.37, format.parseSpeed(TAVELLOG_DESCRIPTION)); } @Test public void testParseElevation() { assertDoubleEquals(62.20, format.parseElevation(TAVELLOG_DESCRIPTION)); } }