Restructure for authorative models
[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  * ================================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  * SPDX-License-Identifier: Apache-2.0
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.policy.models.tosca.simple.concepts;
22
23 import static org.junit.Assert.assertEquals;
24 import static org.junit.Assert.assertNotNull;
25 import static org.junit.Assert.fail;
26
27 import java.util.TreeMap;
28
29 import org.junit.Test;
30 import org.onap.policy.models.base.PfConceptKey;
31 import org.onap.policy.models.tosca.simple.concepts.JpaToscaServiceTemplate;
32 import org.onap.policy.models.tosca.simple.concepts.JpaToscaServiceTemplates;
33
34 public class JpaToscaServiceTemplatesTest {
35
36     @Test
37     public void testServiceTemplates() {
38         assertNotNull(new JpaToscaServiceTemplates());
39         assertNotNull(new JpaToscaServiceTemplates(new PfConceptKey()));
40         assertNotNull(
41                 new JpaToscaServiceTemplates(new PfConceptKey(), new TreeMap<PfConceptKey, JpaToscaServiceTemplate>()));
42         assertNotNull(new JpaToscaServiceTemplates(new JpaToscaServiceTemplates()));
43
44         try {
45             new JpaToscaServiceTemplates((PfConceptKey) null);
46             fail("test should throw an exception");
47         } catch (Exception exc) {
48             assertEquals("key is marked @NonNull but is null", exc.getMessage());
49         }
50
51         try {
52             new JpaToscaServiceTemplates((JpaToscaServiceTemplates) null);
53             fail("test should throw an exception");
54         } catch (Exception exc) {
55             assertEquals("copyConcept is marked @NonNull but is null", exc.getMessage());
56         }
57
58         try {
59             new JpaToscaServiceTemplates(null, null);
60             fail("test should throw an exception");
61         } catch (Exception exc) {
62             assertEquals("key is marked @NonNull but is null", exc.getMessage());
63         }
64
65         try {
66             new JpaToscaServiceTemplates(new PfConceptKey(), null);
67             fail("test should throw an exception");
68         } catch (Exception exc) {
69             assertEquals("conceptMap is marked @NonNull but is null", exc.getMessage());
70         }
71
72         try {
73             new JpaToscaServiceTemplates(null, new TreeMap<PfConceptKey, JpaToscaServiceTemplate>());
74             fail("test should throw an exception");
75         } catch (Exception exc) {
76             assertEquals("key is marked @NonNull but is null", exc.getMessage());
77         }
78     }
79 }