/* 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.common.type; import org.junit.Test; import java.util.Calendar; import java.util.TimeZone; import static org.junit.Assert.*; import static slash.common.TestCase.assertCalendarEquals; import static slash.common.type.CompactCalendar.UTC; import static slash.common.type.CompactCalendar.fromMillis; public class CompactCalendarTest { @Test public void testFromMillis() { Calendar calendar = Calendar.getInstance(UTC); calendar.setTimeInMillis(1000); assertEquals(1000, calendar.getTimeInMillis()); assertEquals(UTC, calendar.getTimeZone()); CompactCalendar compactCalendar = fromMillis(1000); assertEquals(compactCalendar.getCalendar().getTimeInMillis(), 1000); assertCalendarEquals(calendar, compactCalendar.getCalendar()); assertEquals(UTC, calendar.getTimeZone()); } @Test public void testBeforeAndAfter() { CompactCalendar early = fromMillis(1000); CompactCalendar late = fromMillis(2000); assertTrue(early.before(late)); assertFalse(late.before(early)); assertFalse(early.after(late)); assertTrue(late.after(early)); assertFalse(early.before(early)); assertFalse(early.after(early)); } @Test public void testAsUTCTimeInTimeZone() { CompactCalendar calendar = fromMillis(1000000); CompactCalendar inTimeZone = calendar.asUTCTimeInTimeZone(TimeZone.getTimeZone("GMT+2")); assertEquals(calendar.getCalendar().getTimeInMillis(), 1000000); assertEquals(inTimeZone.getCalendar().getTimeInMillis(), 1000000 - 2 * 60 * 60 * 1000); assertEquals("UTC", inTimeZone.getTimeZoneId()); } }