Merge "Fix the bug of cannot return multiple versions of particular tosca policy...
[policy/models.git] / models-tosca / src / test / java / org / onap / policy / models / tosca / simple / concepts / JpaToscaServiceTemplatesTest.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
33 import org.junit.Test;
34 import org.onap.policy.models.base.PfConceptKey;
35 import org.onap.policy.models.tosca.authorative.concepts.ToscaServiceTemplate;
36 import org.onap.policy.models.tosca.simple.concepts.JpaToscaServiceTemplate;
37 import org.onap.policy.models.tosca.simple.concepts.JpaToscaServiceTemplates;
38
39 public class JpaToscaServiceTemplatesTest {
40
41     private static final String KEY_IS_NULL = "key is marked @NonNull but is null";
42
43     @Test
44     public void testServiceTemplates() {
45         assertNotNull(new JpaToscaServiceTemplates());
46         assertNotNull(new JpaToscaServiceTemplates(new PfConceptKey()));
47         assertNotNull(
48                 new JpaToscaServiceTemplates(new PfConceptKey(), new TreeMap<PfConceptKey, JpaToscaServiceTemplate>()));
49         assertNotNull(new JpaToscaServiceTemplates(new JpaToscaServiceTemplates()));
50
51         assertThatThrownBy(() -> {
52             new JpaToscaServiceTemplates((PfConceptKey) null);
53         }).hasMessage(KEY_IS_NULL);
54
55         assertThatThrownBy(() -> {
56             new JpaToscaServiceTemplates((JpaToscaServiceTemplates) null);
57         }).hasMessage("copyConcept is marked @NonNull but is null");
58
59         assertThatThrownBy(() -> {
60             new JpaToscaServiceTemplates(null, null);
61         }).hasMessage(KEY_IS_NULL);
62
63         assertThatThrownBy(() -> {
64             new JpaToscaServiceTemplates(new PfConceptKey(), null);
65         }).hasMessage("conceptMap is marked @NonNull but is null");
66
67         assertThatThrownBy(() -> {
68             new JpaToscaServiceTemplates(null, new TreeMap<PfConceptKey, JpaToscaServiceTemplate>());
69         }).hasMessage(KEY_IS_NULL);
70
71         List<Map<String, ToscaServiceTemplate>> tsMapList = new ArrayList<>();
72         tsMapList.add(new LinkedHashMap<>());
73         tsMapList.get(0).put("serviceTemplate", new ToscaServiceTemplate());
74         assertNotNull(new JpaToscaServiceTemplates(tsMapList));
75     }
76 }