62f440a4e42001923057056a4cb51667315a71e1
[ccsdk/features.git] /
1 /*
2  * ============LICENSE_START=======================================================
3  * ONAP : ccsdk feature sdnr wt
4  *  ================================================================================
5  * Copyright (C) 2019 highstreet technologies GmbH Intellectual Property.
6  * All rights reserved.
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
11  *
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  *
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=========================================================
20  */
21 package org.onap.ccsdk.features.sdnr.wt.devicemanager.test;
22
23 import static org.junit.Assert.assertTrue;
24
25 import java.util.Date;
26
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;
31
32 public class TestsNectconfDateTime {
33
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"};
38
39
40     private final static NetconfTimeStampOld netconfTimeConverterOld = NetconfTimeStampOld.getConverter();
41     private final static NetconfTimeStamp netconfTimeConverterNew = NetconfTimeStampImpl.getConverter();
42
43     @Test
44     public void test1() {
45
46         int t = 1;
47         String timeNew, timeOld;
48         for (String testTime : testPatterPostive) {
49             timeNew = netconfTimeConverterNew.getTimeStampFromNetconf(testTime);
50             timeOld = netconfTimeConverterOld.getTimeStampFromNetconf(testTime);
51
52             System.out.println("No " + t++ + " Pattern: " + testTime);
53             System.out.println(" to old " + timeOld);
54             System.out.println(" to new " + timeNew);
55             System.out.println();
56
57             assertTrue("Old/New implementation not same " + timeOld + "/" + timeNew, timeOld.equals(timeNew));
58         }
59
60         for (String testTime : testPatterProblem) {
61             timeNew = netconfTimeConverterNew.getTimeStampFromNetconf(testTime);
62             timeOld = netconfTimeConverterOld.getTimeStampFromNetconf(testTime);
63
64             System.out.println("No " + t++ + " Pattern: " + testTime);
65             System.out.println(" to old " + timeOld);
66             System.out.println(" to new " + timeNew);
67             System.out.println();
68
69             assertTrue("Old/New implementation not same " + timeOld + "/" + timeNew, timeOld.equals(timeNew));
70         }
71     }
72
73     @Test
74     public void test2() {
75
76         int t = 1;
77         Long timeNew, timeOld;
78         for (String testTime : testPatterPostive) {
79             timeNew = netconfTimeConverterNew.getTimeStampFromNetconfAsMilliseconds(testTime);
80             timeOld = netconfTimeConverterOld.getTimeStampFromNetconfAsMilliseconds(testTime);
81
82             System.out.println("No " + t++ + " Pattern: " + testTime);
83             System.out.println(" to old " + timeOld);
84             System.out.println(" to new " + timeNew);
85             System.out.println();
86
87             assertTrue("Old/New implementation not same " + timeOld + "/" + timeNew, timeOld.equals(timeNew));
88         }
89
90     }
91
92
93     @Test
94     public void test3() {
95
96         Date now = new Date();
97         String timeNew = netconfTimeConverterNew.getTimeStampAsNetconfString(now);
98         String timeOld = netconfTimeConverterOld.getTimeStampAsNetconfString(now);
99
100         System.out.println("Old/New: " + timeOld + "/" + timeNew);
101
102         assertTrue("Old/New implementation not same " + timeOld + "/" + timeNew, timeOld.equals(timeNew));
103
104
105     }
106
107 }