/* * Geotoolkit - An Open Source Java GIS Toolkit * http://www.geotoolkit.org * * (C) 2008, Open Source Geospatial Foundation (OSGeo) * (C) 2009, Geomatys * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; * version 2.1 of the License. * * This library 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 * Lesser General Public License for more details. */ package org.geotoolkit.temporal.object; import java.util.HashMap; import java.util.Map; import org.apache.sis.referencing.CommonCRS; import org.apache.sis.util.iso.SimpleInternationalString; import org.geotoolkit.metadata.Citations; import org.apache.sis.referencing.NamedIdentifier; import org.geotoolkit.temporal.reference.DefaultTemporalReferenceSystem; import org.junit.After; import org.junit.Before; import org.junit.Test; import org.opengis.temporal.CalendarDate; import org.opengis.temporal.TemporalReferenceSystem; import static org.junit.Assert.*; import org.opengis.referencing.IdentifiedObject; import org.opengis.referencing.datum.TemporalDatum; import org.opengis.util.InternationalString; /** * * @author Mehdi Sidhoum (Geomatys) * @module */ public class DefaultCalendarDateTest extends org.geotoolkit.test.TestBase { private CalendarDate calendarDate1; private CalendarDate calendarDate2; @Before public void setUp() { NamedIdentifier name = new NamedIdentifier(Citations.CRS, "Gregorian calendar"); final Map<String, Object> properties = new HashMap<>(); properties.put(IdentifiedObject.NAME_KEY, name); TemporalDatum tempdat = CommonCRS.Temporal.UNIX.datum(); TemporalReferenceSystem frame = new DefaultTemporalReferenceSystem(properties); // TemporalReferenceSystem frame = new DefaultTemporalReferenceSystem(name, null); int[] cal1 = {1981, 6, 25}; int[] cal2 = {2000, 1, 1}; InternationalString cal_era = new SimpleInternationalString("Cenozoic"); calendarDate1 = new DefaultCalendarDate(frame, null, cal_era, cal1); calendarDate2 = new DefaultCalendarDate(frame, null, cal_era, cal2); } @After public void tearDown() { calendarDate1 = null; calendarDate2 = null; } /** * Test of getCalendarEraName method, of class DefaultCalendarDate. */ @Test public void testGetCalendarEraName() { InternationalString result = calendarDate1.getCalendarEraName(); assertTrue(calendarDate2.getCalendarEraName().equals(result)); } /** * Test of getCalendarDate method, of class DefaultCalendarDate. */ @Test public void testGetCalendarDate() { int[] result = calendarDate1.getCalendarDate(); assertFalse(calendarDate2.getCalendarDate().equals(result)); } /** * Test of setCalendarEraName method, of class DefaultCalendarDate. */ @Test public void testSetCalendarEraName() { InternationalString result = calendarDate1.getCalendarEraName(); ((DefaultCalendarDate) calendarDate1).setCalendarEraName(new SimpleInternationalString("new Era")); assertFalse(calendarDate1.getCalendarEraName().equals(result)); } /** * Test of setCalendarDate method, of class DefaultCalendarDate. */ @Test public void testSetCalendarDate() { int[] result = calendarDate1.getCalendarDate(); int[] caldate = {1995, 5, 5}; ((DefaultCalendarDate) calendarDate1).setCalendarDate(caldate); assertFalse(calendarDate1.getCalendarDate().equals(result)); } /** * Test of equals method, of class DefaultCalendarDate. */ @Test public void testEquals() { assertFalse(calendarDate1.equals(null)); assertEquals(calendarDate1, calendarDate1); } /** * Test of hashCode method, of class DefaultCalendarDate. */ @Test public void testHashCode() { int result = calendarDate1.hashCode(); assertFalse(calendarDate2.hashCode() == result); } /** * Test of toString method, of class DefaultCalendarDate. */ @Test public void testToString() { String result = calendarDate1.toString(); assertFalse(calendarDate2.toString().equals(result)); } }