f0f42e647b2c71fa80314a816befafb3621b226e
[policy/models.git] / models-tosca / src / test / java / org / onap / policy / models / tosca / simple / concepts / JpaToscaModelTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2019-2020 Nordix Foundation.
4  *  Modifications Copyright (C) 2019-2020 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.assertEquals;
26 import static org.junit.Assert.assertFalse;
27 import static org.junit.Assert.assertNotEquals;
28 import static org.junit.Assert.assertNotNull;
29 import static org.junit.Assert.assertTrue;
30
31 import java.util.Map;
32 import java.util.TreeMap;
33 import org.junit.Test;
34 import org.onap.policy.models.base.PfConceptKey;
35 import org.onap.policy.models.base.PfModelService;
36
37 /**
38  * DAO test for ToscaDatatype.
39  *
40  * @author Liam Fallon (liam.fallon@est.tech)
41  */
42 public class JpaToscaModelTest {
43
44     private static final String KEY_IS_NULL = "key is marked .*on.*ull but is null";
45     private static final String VERSION_001 = "0.0.1";
46
47     @Test
48     public void testModelPojo() {
49         assertNotNull(new JpaToscaModel());
50         assertNotNull(new JpaToscaModel(new PfConceptKey()));
51         assertNotNull(new JpaToscaModel(new PfConceptKey(), new JpaToscaServiceTemplates()));
52         assertNotNull(new JpaToscaModel(new JpaToscaModel()));
53
54         assertThatThrownBy(() -> new JpaToscaModel((PfConceptKey) null)).hasMessageMatching(KEY_IS_NULL);
55
56         assertThatThrownBy(() -> new JpaToscaModel(null, null)).hasMessageMatching(KEY_IS_NULL);
57
58         assertThatThrownBy(() -> new JpaToscaModel(null, new JpaToscaServiceTemplates()))
59                 .hasMessageMatching(KEY_IS_NULL);
60
61         assertThatThrownBy(() -> new JpaToscaModel(new PfConceptKey(), null))
62                 .hasMessageMatching("serviceTemplates is marked .*on.*ull but is null");
63
64         assertThatThrownBy(() -> new JpaToscaModel((JpaToscaModel) null))
65                 .hasMessageMatching("copyConcept is marked .*on.*ull but is null");
66
67         PfConceptKey tstsKey = new PfConceptKey("tsts", VERSION_001);
68         Map<PfConceptKey, JpaToscaServiceTemplate> tstMap = new TreeMap<>();
69         JpaToscaServiceTemplates tsts = new JpaToscaServiceTemplates(tstsKey, tstMap);
70         PfConceptKey tmKey = new PfConceptKey("tst", VERSION_001);
71         JpaToscaModel tm = new JpaToscaModel(tmKey, tsts);
72
73         JpaToscaModel tttClone0 = new JpaToscaModel(tm);
74         assertEquals(tm, tttClone0);
75         assertEquals(0, tm.compareTo(tttClone0));
76
77         JpaToscaModel tttClone1 = new JpaToscaModel(tm);
78         assertEquals(tm, tttClone1);
79         assertEquals(0, tm.compareTo(tttClone1));
80
81         assertEquals(-1, tm.compareTo(null));
82         assertEquals(0, tm.compareTo(tm));
83         assertNotEquals(0, tm.compareTo(tm.getKey()));
84
85         PfConceptKey otherDtKey = new PfConceptKey("otherDt", VERSION_001);
86         JpaToscaModel otherDt = new JpaToscaModel(otherDtKey);
87
88         assertNotEquals(0, tm.compareTo(otherDt));
89         otherDt.setKey(tmKey);
90         assertNotEquals(0, tm.compareTo(otherDt));
91         otherDt.setServiceTemplates(tsts);
92         assertEquals(0, tm.compareTo(otherDt));
93
94         assertThatThrownBy(() -> new JpaToscaModel((JpaToscaModel) null)).isInstanceOf(NullPointerException.class);
95
96         assertEquals(2, tm.getKeys().size());
97         assertEquals(2, new JpaToscaModel().getKeys().size());
98
99         new JpaToscaModel().clean();
100         tm.clean();
101         assertEquals(tttClone0, tm);
102
103         assertFalse(new JpaToscaModel().validate("").isValid());
104         assertTrue(tm.validate("").isValid());
105
106         tm.register();
107         assertTrue(PfModelService.existsModel(tm.getServiceTemplates().getId()));
108         PfModelService.deregisterModel(tm.getServiceTemplates().getId());
109
110         assertThatThrownBy(() -> tm.validate(null)).hasMessageMatching("fieldName is marked .*on.*ull but is null");
111     }
112 }