2  * ============LICENSE_START=======================================================
 
   3  * ONAP : ccsdk feature sdnr wt
 
   4  *  ================================================================================
 
   5  * Copyright (C) 2019 highstreet technologies GmbH Intellectual Property.
 
   7  * ================================================================================
 
   8  * Licensed under the Apache License, Version 2.0 (the "License");
 
   9  * you may not use this file except in compliance with the License.
 
  10  * You may obtain a copy of the License at
 
  12  *      http://www.apache.org/licenses/LICENSE-2.0
 
  14  * Unless required by applicable law or agreed to in writing, software
 
  15  * distributed under the License is distributed on an "AS IS" BASIS,
 
  16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
  17  * See the License for the specific language governing permissions and
 
  18  * limitations under the License.
 
  19  * ============LICENSE_END=========================================================
 
  21 package org.onap.ccsdk.features.sdnr.wt.devicemanager.test;
 
  23 import static org.junit.Assert.assertTrue;
 
  25 import java.util.Date;
 
  27 import org.junit.Test;
 
  28 import org.onap.ccsdk.features.sdnr.wt.dataprovider.model.NetconfTimeStamp;
 
  29 import org.onap.ccsdk.features.sdnr.wt.dataprovider.model.types.NetconfTimeStampImpl;
 
  30 import org.onap.ccsdk.features.sdnr.wt.devicemanager.test.util.NetconfTimeStampOld;
 
  32 public class TestsNectconfDateTime {
 
  34     private static String[] testPatterPostive = {"2017-01-18T11:44:49.482-0500", "2017-01-18T11:44:49.482-05:00",
 
  35             "20170118114449.123Z", "20170118114449.1Z", "20170118114449.1-0500", "2017-01-23T13:32:38-05:00",
 
  36             "2017-01-23T13:32-05:00", "2017-01-18T11:44:49Z"};
 
  37     private static String[] testPatterProblem = {"2017-01-18T11:44:49"};
 
  40     private final static NetconfTimeStampOld netconfTimeConverterOld = NetconfTimeStampOld.getConverter();
 
  41     private final static NetconfTimeStamp netconfTimeConverterNew = NetconfTimeStampImpl.getConverter();
 
  47         String timeNew, timeOld;
 
  48         for (String testTime : testPatterPostive) {
 
  49             timeNew = netconfTimeConverterNew.getTimeStampFromNetconf(testTime);
 
  50             timeOld = netconfTimeConverterOld.getTimeStampFromNetconf(testTime);
 
  52             System.out.println("No " + t++ + " Pattern: " + testTime);
 
  53             System.out.println(" to old " + timeOld);
 
  54             System.out.println(" to new " + timeNew);
 
  57             assertTrue("Old/New implementation not same " + timeOld + "/" + timeNew, timeOld.equals(timeNew));
 
  60         for (String testTime : testPatterProblem) {
 
  61             timeNew = netconfTimeConverterNew.getTimeStampFromNetconf(testTime);
 
  62             timeOld = netconfTimeConverterOld.getTimeStampFromNetconf(testTime);
 
  64             System.out.println("No " + t++ + " Pattern: " + testTime);
 
  65             System.out.println(" to old " + timeOld);
 
  66             System.out.println(" to new " + timeNew);
 
  69             assertTrue("Old/New implementation not same " + timeOld + "/" + timeNew, timeOld.equals(timeNew));
 
  77         Long timeNew, timeOld;
 
  78         for (String testTime : testPatterPostive) {
 
  79             timeNew = netconfTimeConverterNew.getTimeStampFromNetconfAsMilliseconds(testTime);
 
  80             timeOld = netconfTimeConverterOld.getTimeStampFromNetconfAsMilliseconds(testTime);
 
  82             System.out.println("No " + t++ + " Pattern: " + testTime);
 
  83             System.out.println(" to old " + timeOld);
 
  84             System.out.println(" to new " + timeNew);
 
  87             assertTrue("Old/New implementation not same " + timeOld + "/" + timeNew, timeOld.equals(timeNew));
 
  96         Date now = new Date();
 
  97         String timeNew = netconfTimeConverterNew.getTimeStampAsNetconfString(now);
 
  98         String timeOld = netconfTimeConverterOld.getTimeStampAsNetconfString(now);
 
 100         System.out.println("Old/New: " + timeOld + "/" + timeNew);
 
 102         assertTrue("Old/New implementation not same " + timeOld + "/" + timeNew, timeOld.equals(timeNew));