38be5f6a6c6e3462ec2c5e974f3b919cb8b6bfc9
[policy/models.git] / models-tosca / src / test / java / org / onap / policy / models / tosca / simple / concepts / JpaToscaTriggerTest.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.time.Duration;
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 ToscaTrigger.
39  *
40  * @author Liam Fallon (liam.fallon@est.tech)
41  */
42 public class JpaToscaTriggerTest {
43
44     private static final String KEY_IS_NULL = "key is marked .*on.*ull but is null";
45     private static final String EVENT_TYPE = "EventType";
46     private static final String ACTION = "Action";
47     private static final String A_METHOD = "A Method";
48     private static final String A_DESCRIPTION = "A Description";
49     private static final String VERSION_001 = "0.0.1";
50
51     @Test
52     public void testTriggerPojo() {
53         assertNotNull(new JpaToscaTrigger());
54         assertNotNull(new JpaToscaTrigger(new PfReferenceKey()));
55         assertNotNull(new JpaToscaTrigger(new PfReferenceKey(), EVENT_TYPE, ACTION));
56         assertNotNull(new JpaToscaTrigger(new JpaToscaTrigger()));
57
58         assertThatThrownBy(() -> new JpaToscaTrigger((PfReferenceKey) null)).hasMessageMatching(KEY_IS_NULL);
59
60         assertThatThrownBy(() -> new JpaToscaTrigger(null, null, null)).hasMessageMatching(KEY_IS_NULL);
61
62         assertThatThrownBy(() -> new JpaToscaTrigger(null, EVENT_TYPE, null)).hasMessageMatching(KEY_IS_NULL);
63
64         assertThatThrownBy(() -> new JpaToscaTrigger(null, EVENT_TYPE, ACTION)).hasMessageMatching(KEY_IS_NULL);
65
66         assertThatThrownBy(() -> new JpaToscaTrigger(null, null, ACTION)).hasMessageMatching(KEY_IS_NULL);
67
68         assertThatThrownBy(() -> new JpaToscaTrigger(new PfReferenceKey(), null, null))
69                 .hasMessageMatching("eventType is marked .*on.*ull but is null");
70
71         assertThatThrownBy(() -> new JpaToscaTrigger(new PfReferenceKey(), EVENT_TYPE, null))
72                 .hasMessageMatching("action is marked .*on.*ull but is null");
73
74         assertThatThrownBy(() -> new JpaToscaTrigger(new PfReferenceKey(), null, ACTION))
75                 .hasMessageMatching("eventType is marked .*on.*ull but is null");
76
77         assertThatThrownBy(() -> new JpaToscaTrigger((JpaToscaTrigger) null)).isInstanceOf(NullPointerException.class);
78
79         PfConceptKey tparentKey = new PfConceptKey("tParentKey", VERSION_001);
80         PfReferenceKey tkey = new PfReferenceKey(tparentKey, "trigger0");
81         JpaToscaTrigger tdt = new JpaToscaTrigger(tkey, EVENT_TYPE, ACTION);
82
83         JpaToscaTimeInterval schedule =
84                 new JpaToscaTimeInterval(new PfReferenceKey(tkey, "sched"), Instant.now(), Instant.now());
85         tdt.setSchedule(schedule);
86
87         JpaToscaEventFilter targetFilter =
88                 new JpaToscaEventFilter(new PfReferenceKey(tkey, "filter"), new PfConceptKey("NodeName", VERSION_001));
89         tdt.setTargetFilter(targetFilter);
90
91         JpaToscaConstraintLogical lsc = new JpaToscaConstraintLogical(JpaToscaConstraintOperation.EQ, "hello");
92         tdt.setCondition(lsc);
93         assertEquals(lsc, tdt.getCondition());
94         tdt.setConstraint(lsc);
95         assertEquals(lsc, tdt.getConstraint());
96
97         tdt.setPeriod(Duration.ZERO);
98         assertEquals(Duration.ZERO, tdt.getPeriod());
99
100         tdt.setDescription(A_DESCRIPTION);
101         assertEquals(A_DESCRIPTION, tdt.getDescription());
102
103         tdt.setMethod(A_METHOD);
104         assertEquals(A_METHOD, tdt.getMethod());
105
106         JpaToscaTrigger tdtClone0 = new JpaToscaTrigger(tdt);
107         assertEquals(tdt, tdtClone0);
108         assertEquals(0, tdt.compareTo(tdtClone0));
109
110         JpaToscaTrigger tdtClone1 = new JpaToscaTrigger(tdt);
111         assertEquals(tdt, tdtClone1);
112         assertEquals(0, tdt.compareTo(tdtClone1));
113
114         assertEquals(-1, tdt.compareTo(null));
115         assertEquals(0, tdt.compareTo(tdt));
116         assertNotEquals(0, tdt.compareTo(tdt.getKey()));
117
118         PfReferenceKey otherDtKey = new PfReferenceKey("otherDt", VERSION_001, "OtherTrigger");
119         JpaToscaTrigger otherDt = new JpaToscaTrigger(otherDtKey);
120
121         assertNotEquals(0, tdt.compareTo(otherDt));
122         otherDt.setKey(tkey);
123         assertNotEquals(0, tdt.compareTo(otherDt));
124         otherDt.setDescription(A_DESCRIPTION);
125         assertNotEquals(0, tdt.compareTo(otherDt));
126         otherDt.setEventType(EVENT_TYPE);
127         assertNotEquals(0, tdt.compareTo(otherDt));
128         otherDt.setSchedule(schedule);
129         assertNotEquals(0, tdt.compareTo(otherDt));
130         otherDt.setTargetFilter(targetFilter);
131         assertNotEquals(0, tdt.compareTo(otherDt));
132         otherDt.setCondition(lsc);
133         assertNotEquals(0, tdt.compareTo(otherDt));
134         otherDt.setConstraint(lsc);
135         assertNotEquals(0, tdt.compareTo(otherDt));
136         otherDt.setPeriod(Duration.ZERO);
137         assertNotEquals(0, tdt.compareTo(otherDt));
138         otherDt.setMethod(A_METHOD);
139         assertNotEquals(0, tdt.compareTo(otherDt));
140         otherDt.setAction(ACTION);
141         assertEquals(0, tdt.compareTo(otherDt));
142
143         otherDt.setEvaluations(100);
144         assertNotEquals(0, tdt.compareTo(otherDt));
145         otherDt.setEvaluations(0);
146         assertEquals(0, tdt.compareTo(otherDt));
147
148         assertEquals(4, tdt.getKeys().size());
149         assertEquals(1, new JpaToscaTrigger().getKeys().size());
150
151         new JpaToscaTrigger().clean();
152         tdt.clean();
153         assertEquals(tdtClone0, tdt);
154
155         assertFalse(new JpaToscaTrigger().validate("").isValid());
156         assertTrue(tdt.validate("").isValid());
157
158         tdt.setDescription(null);
159         assertTrue(tdt.validate("").isValid());
160         tdt.setDescription("");
161         assertFalse(tdt.validate("").isValid());
162         tdt.setDescription(A_DESCRIPTION);
163         assertTrue(tdt.validate("").isValid());
164
165         tdt.setEvaluations(-1);
166         assertFalse(tdt.validate("").isValid());
167         tdt.setEvaluations(100);
168         assertTrue(tdt.validate("").isValid());
169
170         tdt.setMethod(null);
171         assertTrue(tdt.validate("").isValid());
172         tdt.setMethod("");
173         assertFalse(tdt.validate("").isValid());
174         tdt.setMethod(A_METHOD);
175         assertTrue(tdt.validate("").isValid());
176
177         assertThatThrownBy(() -> tdt.validate(null)).hasMessageMatching("fieldName is marked .*on.*ull but is null");
178     }
179 }