8288fd80b07cd04278f146981da8a15c166a8b45
[policy/models.git] /
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.ToscaPolicyType;
35
36 public class JpaToscaPolicyTypesTest {
37
38     private static final String KEY_IS_NULL = "key is marked @NonNull but is null";
39
40     @Test
41     public void testPolicyTypes() {
42         assertNotNull(new JpaToscaPolicyTypes());
43         assertNotNull(new JpaToscaPolicyTypes(new PfConceptKey()));
44         assertNotNull(new JpaToscaPolicyTypes(new PfConceptKey(), new TreeMap<PfConceptKey, JpaToscaPolicyType>()));
45         assertNotNull(new JpaToscaPolicyTypes(new JpaToscaPolicyTypes()));
46
47         assertThatThrownBy(() -> new JpaToscaPolicyTypes((PfConceptKey) null)).hasMessage(KEY_IS_NULL);
48
49         assertThatThrownBy(() -> new JpaToscaPolicyTypes((JpaToscaPolicyTypes) null))
50                         .hasMessage("copyConcept is marked @NonNull but is null");
51
52         assertThatThrownBy(() -> new JpaToscaPolicyTypes(null, null)).hasMessage(KEY_IS_NULL);
53
54         assertThatThrownBy(() -> new JpaToscaPolicyTypes(new PfConceptKey(), null))
55                         .hasMessage("conceptMap is marked @NonNull but is null");
56
57         assertThatThrownBy(() -> new JpaToscaPolicyTypes(null, new TreeMap<PfConceptKey, JpaToscaPolicyType>()))
58                         .hasMessage(KEY_IS_NULL);
59
60         List<Map<String, ToscaPolicyType>> ptMapList = new ArrayList<>();
61         ptMapList.add(new LinkedHashMap<>());
62         ptMapList.get(0).put("policyType", new ToscaPolicyType());
63         assertNotNull(new JpaToscaPolicyTypes(ptMapList));
64     }
65 }