Remove old appc-common
[appc.git] / appc-common / src / test / java / org / onap / appc / util / TimeTest.java
diff --git a/appc-common/src/test/java/org/onap/appc/util/TimeTest.java b/appc-common/src/test/java/org/onap/appc/util/TimeTest.java
deleted file mode 100644 (file)
index 961a62c..0000000
+++ /dev/null
@@ -1,150 +0,0 @@
-/*
- * ============LICENSE_START=======================================================
- * ONAP : APPC
- * ================================================================================
- * Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
- * ================================================================================
- * Modifications Copyright (C) 2018 IBM
- * =============================================================================
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- * 
- *      http://www.apache.org/licenses/LICENSE-2.0
- * 
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- * 
- * ============LICENSE_END=========================================================
- */
-
-
-package org.onap.appc.util;
-
-import static org.junit.Assert.assertEquals;
-import static org.junit.Assert.assertNotNull;
-import static org.junit.Assert.assertTrue;
-
-import java.text.ParseException;
-import java.time.ZoneOffset;
-import java.time.ZonedDateTime;
-import java.util.Calendar;
-import java.util.Date;
-import java.util.Locale;
-import java.util.TimeZone;
-
-import javax.xml.datatype.XMLGregorianCalendar;
-
-import org.junit.Test;
-
-
-public class TimeTest {
-
-    @Test
-    public void testAddTime() {
-
-        final Date dateNow = new Date();
-        long dateNowMSec = dateNow.getTime();
-        Date dateSecLater = Time.addTime(dateNow, 0, 0, 0, 0, 1);
-        long dateSecLaterMSec = dateSecLater.getTime();
-        assertEquals(dateNowMSec + 1000, dateSecLaterMSec);
-
-    }
-
-    @Test
-    public void testDateOnly() {
-
-        final Date dateNow = new Date();
-        Calendar cal = Calendar.getInstance();
-        cal.setTime(dateNow);
-
-        Time.dateOnly(cal);
-
-        long msecFromBegin = cal.get(Calendar.HOUR_OF_DAY)*60*60*1000 +
-            cal.get(Calendar.MINUTE)*60*1000 +
-            cal.get(Calendar.SECOND)*1000 +
-            cal.get(Calendar.MILLISECOND);
-
-        assertEquals( msecFromBegin, 0);
-
-    }
-
-    @Test
-    public void testGetCurrentUTCDate() {
-
-        Date utcDate  = Time.getCurrentUTCDate();
-
-        ZonedDateTime utc = ZonedDateTime.now(ZoneOffset.UTC);
-
-        long epochSecs = utc.toEpochSecond();
-
-        long utcSecs = utcDate.getTime() / 1000;
-
-        assertEquals(epochSecs, utcSecs);
-    }
-
-    @Test
-    public void testEndOfDayLocal() {
-        final Date dateNow = new Date();
-        assertTrue(Time.endOfDayLocal(dateNow) instanceof Date);
-    }
-    
-    @Test
-    public void testGetDateByLocaleAndTimeZone() {
-       final Date dateNow = new Date("19-Jul-2018");
-       Locale locale = new Locale("fr"); 
-       TimeZone timeZone = TimeZone.getTimeZone("Europe/France");
-       assertNotNull(Time.getDateByLocaleAndTimeZone(dateNow,locale,timeZone));
-       assertTrue(Time.getDateByLocaleAndTimeZone(dateNow,locale,timeZone) instanceof String);
-    }
-    
-    @Test
-    public void testUtcFormat() {
-       final Date date = new Date("19-Jul-2018");
-       assertNotNull(Time.utcFormat(date));
-       assertTrue(Time.utcFormat(date) instanceof String);
-    }
-    
-    //this test succeeds if localTime() does not throw an exception  
-    @Test
-    public void testLocalTime() {
-       Time.localTime(1532083631);
-    }
-    
-    @Test
-    public void testSetDate() {
-        Calendar cal = Calendar.getInstance();
-        cal.set(Calendar.YEAR, 2018);
-        cal.set(Calendar.MONTH, 07);
-        cal.set(Calendar.DAY_OF_MONTH, 03);
-        Calendar cal1= Time.setDate(cal, 2018, 07, 03);
-        assertEquals(cal, cal1);
-    }
-    
-    @Test
-    public void testStartOfDayLocal() {
-        assertTrue(Time.startOfDayLocal() instanceof Date);
-    }
-    
-    @Test
-    public void testTimeStamp() {
-        assertTrue(Time.timestamp() instanceof XMLGregorianCalendar);
-    }
-    
-    @Test
-    public void testDateToStringConverterMillis() {
-        String dateString=Time.dateToStringConverterMillis(new Date("02/09/2004"));
-        String expected="2004-02-09 00:00:00:000";
-        assertEquals(expected, dateString);
-    }
-    
-    @Test
-    public void testStringToDateConverterMillis() throws ParseException{
-        Date date=Time.stringToDateConverterMillis("2004-02-09 00:00:00:000");
-        Date expected=new Date("02/09/2004");
-        assertEquals(expected, date);
-    }
-}