b0a8ab7098c82adfdf248e696acf3b26f29adaba
[policy/models.git] / models-tosca / src / test / java / org / onap / policy / models / tosca / simple / concepts / JpaToscaTimeIntervalTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2019-2021 Nordix Foundation.
4  *  Modifications Copyright (C) 2019-2020 AT&T Intellectual Property. All rights reserved.
5  * ================================================================================
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *
18  * SPDX-License-Identifier: Apache-2.0
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.policy.models.tosca.simple.concepts;
23
24 import static org.assertj.core.api.Assertions.assertThatThrownBy;
25 import static org.junit.Assert.assertEquals;
26 import static org.junit.Assert.assertFalse;
27 import static org.junit.Assert.assertNotEquals;
28 import static org.junit.Assert.assertNotNull;
29 import static org.junit.Assert.assertTrue;
30
31 import java.sql.Timestamp;
32 import java.time.Instant;
33 import org.junit.Test;
34 import org.onap.policy.models.base.PfConceptKey;
35 import org.onap.policy.models.base.PfReferenceKey;
36
37 /**
38  * DAO test for ToscaTimeInterval.
39  *
40  * @author Liam Fallon (liam.fallon@est.tech)
41  */
42 public class JpaToscaTimeIntervalTest {
43
44     private static final String KEY_IS_NULL = "key is marked .*on.*ull but is null";
45
46     @Test
47     public void testTimeIntervalPojo() {
48         assertNotNull(new JpaToscaTimeInterval());
49         assertNotNull(new JpaToscaTimeInterval(new PfReferenceKey()));
50         assertNotNull(new JpaToscaTimeInterval(new PfReferenceKey(), Instant.now(), Instant.now()));
51         assertNotNull(new JpaToscaTimeInterval(new JpaToscaTimeInterval()));
52
53         assertThatThrownBy(() -> new JpaToscaTimeInterval((PfReferenceKey) null)).hasMessageMatching(KEY_IS_NULL);
54
55         assertThatThrownBy(() -> new JpaToscaTimeInterval(null, null, null)).hasMessageMatching(KEY_IS_NULL);
56
57         assertThatThrownBy(() -> new JpaToscaTimeInterval(null, null, Instant.now())).hasMessageMatching(KEY_IS_NULL);
58
59         assertThatThrownBy(() -> new JpaToscaTimeInterval(null, Instant.now(), null)).hasMessageMatching(KEY_IS_NULL);
60
61         assertThatThrownBy(() -> new JpaToscaTimeInterval(null, Instant.now(), Instant.now()))
62                 .hasMessageMatching(KEY_IS_NULL);
63
64         assertThatThrownBy(() -> new JpaToscaTimeInterval(new PfReferenceKey(), null, null))
65                 .hasMessageMatching("startTime is marked .*on.*ull but is null");
66
67         assertThatThrownBy(() -> new JpaToscaTimeInterval(new PfReferenceKey(), null, Instant.now()))
68                 .hasMessageMatching("startTime is marked .*on.*ull but is null");
69
70         assertThatThrownBy(() -> new JpaToscaTimeInterval(new PfReferenceKey(), Instant.now(), null))
71                 .hasMessageMatching("endTime is marked .*on.*ull but is null");
72
73         assertThatThrownBy(() -> new JpaToscaServiceTemplate((JpaToscaServiceTemplate) null))
74                 .isInstanceOf(NullPointerException.class);
75
76         PfConceptKey ttiParentKey = new PfConceptKey("tParentKey", "0.0.1");
77         PfReferenceKey ttiKey = new PfReferenceKey(ttiParentKey, "trigger0");
78         Instant startTime = Instant.ofEpochSecond(1000);
79         Instant endTime = Instant.ofEpochSecond(2000);
80         JpaToscaTimeInterval tti = new JpaToscaTimeInterval(ttiKey, startTime, endTime);
81
82         JpaToscaTimeInterval tdtClone0 = new JpaToscaTimeInterval(tti);
83         assertEquals(tti, tdtClone0);
84         assertEquals(0, tti.compareTo(tdtClone0));
85
86         JpaToscaTimeInterval tdtClone1 = new JpaToscaTimeInterval(tti);
87         assertEquals(tti, tdtClone1);
88         assertEquals(0, tti.compareTo(tdtClone1));
89
90         assertEquals(-1, tti.compareTo(null));
91         assertEquals(0, tti.compareTo(tti));
92         assertNotEquals(0, tti.compareTo(tti.getKey()));
93
94         PfReferenceKey otherDtKey = new PfReferenceKey("otherDt", "0.0.1", "OtherTimeInterval");
95         JpaToscaTimeInterval otherDt = new JpaToscaTimeInterval(otherDtKey);
96
97         assertNotEquals(0, tti.compareTo(otherDt));
98         otherDt.setKey(ttiKey);
99         assertNotEquals(0, tti.compareTo(otherDt));
100         otherDt.setStartTime(Timestamp.from(startTime));
101         assertNotEquals(0, tti.compareTo(otherDt));
102         otherDt.setEndTime(Timestamp.from(endTime));
103         assertEquals(0, tti.compareTo(otherDt));
104
105         assertEquals(1, tti.getKeys().size());
106         assertEquals(1, new JpaToscaTimeInterval().getKeys().size());
107
108         new JpaToscaTimeInterval().clean();
109         tti.clean();
110         assertEquals(tdtClone0, tti);
111
112         assertFalse(new JpaToscaTimeInterval().validate("").isValid());
113         assertTrue(tti.validate("").isValid());
114
115         tti.setStartTime(null);
116         assertFalse(tti.validate("").isValid());
117         tti.setStartTime(Timestamp.from(endTime.plusSeconds(1)));
118         assertFalse(tti.validate("").isValid());
119         tti.setStartTime(Timestamp.from(startTime));
120         assertTrue(tti.validate("").isValid());
121
122         tti.setEndTime(null);
123         assertFalse(tti.validate("").isValid());
124         tti.setEndTime(Timestamp.from(startTime.minusSeconds(1)));
125         assertFalse(tti.validate("").isValid());
126         tti.setEndTime(Timestamp.from(endTime));
127         assertTrue(tti.validate("").isValid());
128
129         assertThatThrownBy(() -> tti.validate(null)).hasMessageMatching("fieldName is marked .*on.*ull but is null");
130     }
131 }