596640f2277ccbaaa3ed8fc9ccc41f36e41667d5
[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-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.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
37 public class JpaToscaServiceTemplatesTest {
38
39     private static final String KEY_IS_NULL = "key is marked .*on.*ull but is null";
40
41     @Test
42     public void testServiceTemplates() {
43         assertNotNull(new JpaToscaServiceTemplates());
44         assertNotNull(new JpaToscaServiceTemplates(new PfConceptKey()));
45         assertNotNull(
46                 new JpaToscaServiceTemplates(new PfConceptKey(), new TreeMap<PfConceptKey, JpaToscaServiceTemplate>()));
47         assertNotNull(new JpaToscaServiceTemplates(new JpaToscaServiceTemplates()));
48
49         assertThatThrownBy(() -> {
50             new JpaToscaServiceTemplates((PfConceptKey) null);
51         }).hasMessageMatching(KEY_IS_NULL);
52
53         assertThatThrownBy(() -> {
54             new JpaToscaServiceTemplates((JpaToscaServiceTemplates) null);
55         }).hasMessageMatching("copyConcept is marked .*on.*ull but is null");
56
57         assertThatThrownBy(() -> {
58             new JpaToscaServiceTemplates(null, null);
59         }).hasMessageMatching(KEY_IS_NULL);
60
61         assertThatThrownBy(() -> {
62             new JpaToscaServiceTemplates(new PfConceptKey(), null);
63         }).hasMessageMatching("conceptMap is marked .*on.*ull but is null");
64
65         assertThatThrownBy(() -> {
66             new JpaToscaServiceTemplates(null, new TreeMap<PfConceptKey, JpaToscaServiceTemplate>());
67         }).hasMessageMatching(KEY_IS_NULL);
68
69         List<Map<String, ToscaServiceTemplate>> tsMapList = new ArrayList<>();
70         tsMapList.add(new LinkedHashMap<>());
71         tsMapList.get(0).put("serviceTemplate", new ToscaServiceTemplate());
72         assertNotNull(new JpaToscaServiceTemplates(tsMapList));
73     }
74 }