Fix simple sonar issues in models-tosca
[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 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.assertNotNull;
26
27 import java.util.ArrayList;
28 import java.util.LinkedHashMap;
29 import java.util.List;
30 import java.util.Map;
31 import java.util.TreeMap;
32 import org.junit.Test;
33 import org.onap.policy.models.base.PfConceptKey;
34 import org.onap.policy.models.tosca.authorative.concepts.ToscaDataType;
35
36 public class JpaToscaDataTypesTest {
37
38     private static final String KEY_IS_NULL = "key is marked @NonNull but is null";
39
40     @Test
41     public void testDataTypes() {
42         assertNotNull(new JpaToscaDataTypes());
43         assertNotNull(new JpaToscaDataTypes(new PfConceptKey()));
44         assertNotNull(new JpaToscaDataTypes(new PfConceptKey(), new TreeMap<PfConceptKey, JpaToscaDataType>()));
45         assertNotNull(new JpaToscaDataTypes(new JpaToscaDataTypes()));
46
47         assertThatThrownBy(() -> new JpaToscaDataTypes((PfConceptKey) null)).hasMessage(KEY_IS_NULL);
48
49         assertThatThrownBy(() -> new JpaToscaDataTypes((JpaToscaDataTypes) null))
50                         .hasMessage("copyConcept is marked @NonNull but is null");
51
52         assertThatThrownBy(() -> new JpaToscaDataTypes(null, null)).hasMessage(KEY_IS_NULL);
53
54         assertThatThrownBy(() -> new JpaToscaDataTypes(new PfConceptKey(), null))
55                         .hasMessage("conceptMap is marked @NonNull but is null");
56
57         assertThatThrownBy(() -> new JpaToscaDataTypes(null, new TreeMap<PfConceptKey, JpaToscaDataType>()))
58                         .hasMessage(KEY_IS_NULL);
59
60         List<Map<String, ToscaDataType>> dtMapList = new ArrayList<>();
61         dtMapList.add(new LinkedHashMap<>());
62         dtMapList.get(0).put("policyType", new ToscaDataType());
63         assertNotNull(new JpaToscaDataTypes(dtMapList));
64     }
65 }