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