Merge "Fix simple sonar issues in models: errors to sim-pdp"
[policy/models.git] / models-tosca / src / test / java / org / onap / policy / models / tosca / simple / concepts / JpaToscaEventFilterTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2019 Nordix Foundation.
4  *  Modifications Copyright (C) 2019 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.assertNotNull;
28 import static org.junit.Assert.assertTrue;
29
30 import org.junit.Test;
31 import org.onap.policy.models.base.PfConceptKey;
32 import org.onap.policy.models.base.PfReferenceKey;
33 import org.onap.policy.models.base.PfValidationResult;
34
35 /**
36  * DAO test for ToscaEventFilter.
37  *
38  * @author Liam Fallon (liam.fallon@est.tech)
39  */
40 public class JpaToscaEventFilterTest {
41
42     private static final String KEY_IS_NULL = "key is marked @NonNull but is null";
43     private static final String A_REQUREMENT = "A Requrement";
44     private static final String A_CAPABILITY = "A Capability";
45     private static final String VERSION_001 = "0.0.1";
46
47     @Test
48     public void testEventFilterPojo() {
49         assertNotNull(new JpaToscaEventFilter());
50         assertNotNull(new JpaToscaEventFilter(new PfReferenceKey()));
51         assertNotNull(new JpaToscaEventFilter(new PfReferenceKey(), new PfConceptKey()));
52         assertNotNull(new JpaToscaEventFilter(new JpaToscaEventFilter()));
53
54         assertThatThrownBy(() -> new JpaToscaEventFilter((PfReferenceKey) null)).hasMessage(KEY_IS_NULL);
55
56         assertThatThrownBy(() -> new JpaToscaEventFilter(null, null)).hasMessage(KEY_IS_NULL);
57
58         assertThatThrownBy(() -> new JpaToscaEventFilter(null, new PfConceptKey())).hasMessage(KEY_IS_NULL);
59
60         assertThatThrownBy(() -> new JpaToscaEventFilter(new PfReferenceKey(), null))
61                         .hasMessage("node is marked @NonNull but is null");
62
63         assertThatThrownBy(() -> new JpaToscaEventFilter((JpaToscaEventFilter) null))
64                         .hasMessage("copyConcept is marked @NonNull but is null");
65
66         PfConceptKey efParentKey = new PfConceptKey("tParentKey", VERSION_001);
67         PfReferenceKey efKey = new PfReferenceKey(efParentKey, "trigger0");
68         PfConceptKey nodeKey = new PfConceptKey("tParentKey", VERSION_001);
69         JpaToscaEventFilter tef = new JpaToscaEventFilter(efKey, nodeKey);
70
71         tef.setRequirement(A_REQUREMENT);
72         assertEquals(A_REQUREMENT, tef.getRequirement());
73
74         tef.setCapability(A_CAPABILITY);
75         assertEquals(A_CAPABILITY, tef.getCapability());
76
77         JpaToscaEventFilter tdtClone0 = new JpaToscaEventFilter(tef);
78         assertEquals(tef, tdtClone0);
79         assertEquals(0, tef.compareTo(tdtClone0));
80
81         JpaToscaEventFilter tdtClone1 = new JpaToscaEventFilter();
82         tef.copyTo(tdtClone1);
83         assertEquals(tef, tdtClone1);
84         assertEquals(0, tef.compareTo(tdtClone1));
85
86         assertEquals(-1, tef.compareTo(null));
87         assertEquals(0, tef.compareTo(tef));
88         assertFalse(tef.compareTo(tef.getKey()) == 0);
89
90         PfReferenceKey otherDtKey = new PfReferenceKey("otherDt", VERSION_001, "OtherEventFilter");
91         JpaToscaEventFilter otherDt = new JpaToscaEventFilter(otherDtKey);
92
93         assertFalse(tef.compareTo(otherDt) == 0);
94         otherDt.setKey(efKey);
95         assertFalse(tef.compareTo(otherDt) == 0);
96         otherDt.setNode(nodeKey);
97         assertFalse(tef.compareTo(otherDt) == 0);
98         otherDt.setRequirement(A_REQUREMENT);
99         assertFalse(tef.compareTo(otherDt) == 0);
100         otherDt.setCapability(A_CAPABILITY);
101         assertEquals(0, tef.compareTo(otherDt));
102
103         assertThatThrownBy(() -> tef.copyTo(null)).hasMessage("target is marked @NonNull but is null");
104
105         assertEquals(2, tef.getKeys().size());
106         assertEquals(2, new JpaToscaEventFilter().getKeys().size());
107
108         new JpaToscaEventFilter().clean();
109         tef.clean();
110         assertEquals(tdtClone0, tef);
111
112         assertFalse(new JpaToscaEventFilter().validate(new PfValidationResult()).isValid());
113         assertTrue(tef.validate(new PfValidationResult()).isValid());
114
115         tef.setRequirement(null);
116         assertTrue(tef.validate(new PfValidationResult()).isValid());
117         tef.setRequirement("");
118         assertFalse(tef.validate(new PfValidationResult()).isValid());
119         tef.setRequirement(A_REQUREMENT);
120         assertTrue(tef.validate(new PfValidationResult()).isValid());
121
122         tef.setCapability(null);
123         assertTrue(tef.validate(new PfValidationResult()).isValid());
124         tef.setCapability("");
125         assertFalse(tef.validate(new PfValidationResult()).isValid());
126         tef.setCapability(A_CAPABILITY);
127         assertTrue(tef.validate(new PfValidationResult()).isValid());
128
129         tef.setNode(null);
130         assertFalse(tef.validate(new PfValidationResult()).isValid());
131         tef.setNode(PfConceptKey.getNullKey());
132         assertFalse(tef.validate(new PfValidationResult()).isValid());
133         tef.setNode(nodeKey);
134         assertTrue(tef.validate(new PfValidationResult()).isValid());
135
136         assertThatThrownBy(() -> tef.validate(null)).hasMessage("resultIn is marked @NonNull but is null");
137     }
138 }