968aa95c2b2652a52553d67775d7eb77fce7d305
[policy/models.git] / models-tosca / src / test / java / org / onap / policy / models / tosca / simple / concepts / JpaToscaPoliciesTest.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.assertThat;
25 import static org.assertj.core.api.Assertions.assertThatThrownBy;
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.LinkedHashMap;
32 import java.util.List;
33 import java.util.Map;
34 import java.util.TreeMap;
35
36 import org.junit.Test;
37 import org.onap.policy.models.base.PfConceptKey;
38 import org.onap.policy.models.base.PfValidationResult;
39 import org.onap.policy.models.tosca.authorative.concepts.ToscaPolicy;
40
41 public class JpaToscaPoliciesTest {
42
43     private static final String KEY_IS_NULL = "key is marked .*on.*ull but is null";
44
45     @Test
46     public void testPolicies() {
47         assertNotNull(new JpaToscaPolicies());
48         assertNotNull(new JpaToscaPolicies(new PfConceptKey()));
49         assertNotNull(new JpaToscaPolicies(new PfConceptKey(), new TreeMap<PfConceptKey, JpaToscaPolicy>()));
50         assertNotNull(new JpaToscaPolicies(new JpaToscaPolicies()));
51
52         assertThatThrownBy(() -> new JpaToscaPolicies((PfConceptKey) null)).hasMessageMatching(KEY_IS_NULL);
53
54         assertThatThrownBy(() -> new JpaToscaPolicies((JpaToscaPolicies) null))
55                 .hasMessageMatching("copyConcept is marked .*on.*ull but is null");
56
57         assertThatThrownBy(() -> new JpaToscaPolicies(null, null)).hasMessageMatching(KEY_IS_NULL);
58
59         assertThatThrownBy(() -> new JpaToscaPolicies(new PfConceptKey(), null))
60                 .hasMessageMatching("conceptMap is marked .*on.*ull but is null");
61
62         assertThatThrownBy(() -> new JpaToscaPolicies(null, new TreeMap<PfConceptKey, JpaToscaPolicy>()))
63                 .hasMessageMatching(KEY_IS_NULL);
64
65         List<Map<String, ToscaPolicy>> polMapList = new ArrayList<>();
66         polMapList.add(new LinkedHashMap<>());
67
68         ToscaPolicy pol0 = new ToscaPolicy();
69         pol0.setName("pol0");
70         pol0.setVersion("0.0.1");
71         pol0.setDescription("pol0 description");
72         pol0.setType("pt0");
73         pol0.setTypeVersion("0.0.1");
74
75         polMapList.get(0).put("pol0", pol0);
76         assertNotNull(new JpaToscaPolicies(polMapList));
77         assertTrue(new JpaToscaPolicies(polMapList).validate(new PfValidationResult()).isValid());
78         assertThatThrownBy(() -> new JpaToscaPolicies(polMapList).validate(null))
79                 .hasMessageMatching("resultIn is marked .*on.*ull but is null");
80
81         pol0.setDerivedFrom(null);
82         assertTrue(new JpaToscaPolicies(polMapList).validate(new PfValidationResult()).isValid());
83
84         pol0.setDerivedFrom("tosca.Policies.Root");
85         assertTrue(new JpaToscaPolicies(polMapList).validate(new PfValidationResult()).isValid());
86
87         pol0.setDerivedFrom("some.other.Thing");
88         PfValidationResult result = new JpaToscaPolicies(polMapList).validate(new PfValidationResult());
89         assertFalse(result.isValid());
90         assertThat(result.toString()).contains("parent some.other.Thing:0.0.0 of entity not found");
91
92         pol0.setDerivedFrom(null);
93         assertTrue(new JpaToscaPolicies(polMapList).validate(new PfValidationResult()).isValid());
94
95         ToscaPolicy pol1 = new ToscaPolicy();
96         pol1.setName("pol1");
97         pol1.setVersion("0.0.1");
98         pol1.setDescription("pol1 description");
99         pol1.setType("pt0");
100         pol1.setTypeVersion("0.0.1");
101
102         polMapList.get(0).put("pol1", pol1);
103         assertTrue(new JpaToscaPolicies(polMapList).validate(new PfValidationResult()).isValid());
104
105         pol1.setDerivedFrom("pol0");
106         assertTrue(new JpaToscaPolicies(polMapList).validate(new PfValidationResult()).isValid());
107
108         pol1.setDerivedFrom("pol2");
109         result = new JpaToscaPolicies(polMapList).validate(new PfValidationResult());
110         assertFalse(result.isValid());
111         assertThat(result.toString()).contains("parent pol2:0.0.0 of entity not found");
112
113         pol1.setDerivedFrom("pol0");
114         assertTrue(new JpaToscaPolicies(polMapList).validate(new PfValidationResult()).isValid());
115     }
116 }