Replace copyTo methods with copy constructors
[policy/models.git] / models-tosca / src / test / java / org / onap / policy / models / tosca / simple / concepts / JpaToscaPolicyTest.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 java.util.ArrayList;
31 import java.util.HashMap;
32 import java.util.List;
33 import java.util.Map;
34
35 import org.junit.Test;
36 import org.onap.policy.models.base.PfConceptKey;
37 import org.onap.policy.models.base.PfKey;
38 import org.onap.policy.models.base.PfValidationResult;
39 import org.onap.policy.models.tosca.authorative.concepts.ToscaPolicy;
40 import org.onap.policy.models.tosca.simple.concepts.JpaToscaPolicy;
41
42 /**
43  * DAO test for ToscaPolicy.
44  *
45  * @author Liam Fallon (liam.fallon@est.tech)
46  */
47 public class JpaToscaPolicyTest {
48
49     private static final String KEY_IS_NULL = "key is marked @NonNull but is null";
50     private static final String VERSION_001 = "0.0.1";
51
52     @Test
53     public void testPolicyPojo() {
54         assertNotNull(new JpaToscaPolicy());
55         assertNotNull(new JpaToscaPolicy(new PfConceptKey()));
56         assertNotNull(new JpaToscaPolicy(new PfConceptKey(), new PfConceptKey()));
57         assertNotNull(new JpaToscaPolicy(new JpaToscaPolicy()));
58
59         ToscaPolicy pol = new ToscaPolicy();
60         pol.setType("type");
61         assertNotNull(new JpaToscaPolicy(pol));
62
63         assertThatThrownBy(() -> {
64             new JpaToscaPolicy((PfConceptKey) null);
65         }).hasMessage(KEY_IS_NULL);
66
67         assertThatThrownBy(() -> {
68             new JpaToscaPolicy(null, null);
69         }).hasMessage(KEY_IS_NULL);
70
71         assertThatThrownBy(() -> {
72             new JpaToscaPolicy(new PfConceptKey(), null);
73         }).hasMessage("type is marked @NonNull but is null");
74
75         assertThatThrownBy(() -> {
76             new JpaToscaPolicy(null, new PfConceptKey());
77         }).hasMessage(KEY_IS_NULL);
78
79         assertThatThrownBy(() -> new JpaToscaPolicy((JpaToscaPolicy) null))
80                         .isInstanceOf(NullPointerException.class);
81
82         PfConceptKey tpKey = new PfConceptKey("tdt", VERSION_001);
83         PfConceptKey ptKey = new PfConceptKey("policyType", VERSION_001);
84         JpaToscaPolicy tp = new JpaToscaPolicy(tpKey, ptKey);
85
86         Map<String, String> propertyMap = new HashMap<>();
87         propertyMap.put("Property", "\"Property Value\"");
88         tp.setProperties(propertyMap);
89         assertEquals(propertyMap, tp.getProperties());
90
91         List<PfConceptKey> targets = new ArrayList<>();
92         PfConceptKey target = new PfConceptKey("target", VERSION_001);
93         targets.add(target);
94         tp.setTargets(targets);
95         assertEquals(targets, tp.getTargets());
96
97         JpaToscaPolicy tdtClone0 = new JpaToscaPolicy(tp);
98         assertEquals(tp, tdtClone0);
99         assertEquals(0, tp.compareTo(tdtClone0));
100
101         JpaToscaPolicy tdtClone1 = new JpaToscaPolicy(tp);
102         assertEquals(tp, tdtClone1);
103         assertEquals(0, tp.compareTo(tdtClone1));
104
105         assertEquals(-1, tp.compareTo(null));
106         assertEquals(0, tp.compareTo(tp));
107         assertFalse(tp.compareTo(tp.getKey()) == 0);
108
109         PfConceptKey otherDtKey = new PfConceptKey("otherDt", VERSION_001);
110         JpaToscaPolicy otherDt = new JpaToscaPolicy(otherDtKey);
111
112         assertFalse(tp.compareTo(otherDt) == 0);
113         otherDt.setKey(tpKey);
114         assertFalse(tp.compareTo(otherDt) == 0);
115         otherDt.setType(ptKey);
116         assertFalse(tp.compareTo(otherDt) == 0);
117         otherDt.setProperties(propertyMap);
118         assertFalse(tp.compareTo(otherDt) == 0);
119         otherDt.setTargets(targets);
120         assertEquals(0, tp.compareTo(otherDt));
121
122         assertEquals(3, tp.getKeys().size());
123         assertEquals(2, new JpaToscaPolicy().getKeys().size());
124
125         new JpaToscaPolicy().clean();
126         tp.clean();
127         assertEquals(tdtClone0, tp);
128
129         assertFalse(new JpaToscaPolicy().validate(new PfValidationResult()).isValid());
130         assertTrue(tp.validate(new PfValidationResult()).isValid());
131
132         tp.getProperties().put(null, null);
133         assertFalse(tp.validate(new PfValidationResult()).isValid());
134         tp.getProperties().remove(null);
135         assertTrue(tp.validate(new PfValidationResult()).isValid());
136
137         tp.getProperties().put("Key", null);
138         assertFalse(tp.validate(new PfValidationResult()).isValid());
139         tp.getProperties().remove("Key");
140         assertTrue(tp.validate(new PfValidationResult()).isValid());
141
142         tp.getProperties().put(null, "Value");
143         assertFalse(tp.validate(new PfValidationResult()).isValid());
144         tp.getProperties().remove(null);
145         assertTrue(tp.validate(new PfValidationResult()).isValid());
146
147         tp.getTargets().add(null);
148         assertFalse(tp.validate(new PfValidationResult()).isValid());
149         tp.getTargets().remove(null);
150         assertTrue(tp.validate(new PfValidationResult()).isValid());
151
152         PfConceptKey tpTypeKey = tp.getKey();
153         assertNotNull(tpTypeKey);
154         tp.setType(null);
155         assertFalse(tp.validate(new PfValidationResult()).isValid());
156         tp.setType(PfConceptKey.getNullKey());
157         assertFalse(tp.validate(new PfValidationResult()).isValid());
158         tp.setType(tpTypeKey);
159         assertTrue(tp.validate(new PfValidationResult()).isValid());
160
161         assertThatThrownBy(() -> {
162             tp.validate(null);
163         }).hasMessage("resultIn is marked @NonNull but is null");
164
165         assertNotNull(tp.toAuthorative());
166         tp.getType().setVersion(PfKey.NULL_KEY_VERSION);
167         assertNotNull(tp.toAuthorative());
168         tp.setProperties(null);
169         assertNotNull(tp.toAuthorative());
170
171         assertThatThrownBy(() -> {
172             tp.fromAuthorative(null);
173         }).hasMessage("toscaPolicy is marked @NonNull but is null");
174
175         pol = new ToscaPolicy();
176         pol.setName("policy");
177         pol.setVersion("1.2.3");
178         pol.setType("poltype");
179         pol.setTypeVersion("2.2.3");
180         tp.fromAuthorative(pol);
181         assertEquals("2.2.3", tp.getType().getVersion());
182     }
183 }