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