Changes for Checkstyle 8.32
[policy/models.git] / models-tosca / src / test / java / org / onap / policy / models / tosca / simple / concepts / JpaToscaDataTypesTest.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 import org.junit.Test;
36 import org.onap.policy.models.base.PfConceptKey;
37 import org.onap.policy.models.base.PfValidationResult;
38 import org.onap.policy.models.tosca.authorative.concepts.ToscaDataType;
39
40 public class JpaToscaDataTypesTest {
41
42     private static final String KEY_IS_NULL = "key is marked .*on.*ull but is null";
43
44     @Test
45     public void testDataTypes() {
46         assertNotNull(new JpaToscaDataTypes());
47         assertNotNull(new JpaToscaDataTypes(new PfConceptKey()));
48         assertNotNull(new JpaToscaDataTypes(new PfConceptKey(), new TreeMap<PfConceptKey, JpaToscaDataType>()));
49         assertNotNull(new JpaToscaDataTypes(new JpaToscaDataTypes()));
50
51         assertThatThrownBy(() -> new JpaToscaDataTypes((PfConceptKey) null)).hasMessageMatching(KEY_IS_NULL);
52
53         assertThatThrownBy(() -> new JpaToscaDataTypes((JpaToscaDataTypes) null))
54                 .hasMessageMatching("copyConcept is marked .*on.*ull but is null");
55
56         assertThatThrownBy(() -> new JpaToscaDataTypes(null, null)).hasMessageMatching(KEY_IS_NULL);
57
58         assertThatThrownBy(() -> new JpaToscaDataTypes(new PfConceptKey(), null))
59                 .hasMessageMatching("conceptMap is marked .*on.*ull but is null");
60
61         assertThatThrownBy(() -> new JpaToscaDataTypes(null, new TreeMap<PfConceptKey, JpaToscaDataType>()))
62                 .hasMessageMatching(KEY_IS_NULL);
63
64         List<Map<String, ToscaDataType>> dtMapList = new ArrayList<>();
65         dtMapList.add(new LinkedHashMap<>());
66
67         ToscaDataType dt0 = new ToscaDataType();
68         dt0.setName("dt0");
69         dt0.setVersion("0.0.1");
70         dt0.setDescription("dt0 description");
71
72         dtMapList.get(0).put("dt0", dt0);
73         assertNotNull(new JpaToscaDataTypes(dtMapList));
74         assertTrue(new JpaToscaDataTypes(dtMapList).validate(new PfValidationResult()).isValid());
75         assertThatThrownBy(() -> new JpaToscaDataTypes(dtMapList).validate(null))
76                 .hasMessageMatching("resultIn is marked .*on.*ull but is null");
77
78         dt0.setDerivedFrom(null);
79         assertTrue(new JpaToscaDataTypes(dtMapList).validate(new PfValidationResult()).isValid());
80
81         dt0.setDerivedFrom("tosca.datatypes.Root");
82         assertTrue(new JpaToscaDataTypes(dtMapList).validate(new PfValidationResult()).isValid());
83
84         dt0.setDerivedFrom("some.other.Thing");
85         PfValidationResult result = new JpaToscaDataTypes(dtMapList).validate(new PfValidationResult());
86         assertFalse(result.isValid());
87         assertThat(result.toString()).contains("parent some.other.Thing:0.0.0 of entity not found");
88
89         dt0.setDerivedFrom(null);
90         assertTrue(new JpaToscaDataTypes(dtMapList).validate(new PfValidationResult()).isValid());
91
92         ToscaDataType dt1 = new ToscaDataType();
93         dt1.setName("dt1");
94         dt1.setVersion("0.0.1");
95         dt1.setDescription("dt1 description");
96
97         dtMapList.get(0).put("dt1", dt1);
98         assertTrue(new JpaToscaDataTypes(dtMapList).validate(new PfValidationResult()).isValid());
99
100         dt1.setDerivedFrom("dt0");
101         assertTrue(new JpaToscaDataTypes(dtMapList).validate(new PfValidationResult()).isValid());
102
103         dt1.setDerivedFrom("dt2");
104         result = new JpaToscaDataTypes(dtMapList).validate(new PfValidationResult());
105         assertFalse(result.isValid());
106         assertThat(result.toString()).contains("parent dt2:0.0.0 of entity not found");
107
108         dt1.setDerivedFrom("dt0");
109         assertTrue(new JpaToscaDataTypes(dtMapList).validate(new PfValidationResult()).isValid());
110     }
111 }