74a4e7c7fe815b9611929fe04b531f1cf5d745a5
[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 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.assertEquals;
26 import static org.junit.Assert.assertFalse;
27 import static org.junit.Assert.assertNotNull;
28 import static org.junit.Assert.assertTrue;
29
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.base.PfModelService;
35 import org.onap.policy.models.base.PfValidationResult;
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 @NonNull 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)).hasMessage(KEY_IS_NULL);
55
56         assertThatThrownBy(() -> new JpaToscaModel(null, null)).hasMessage(KEY_IS_NULL);
57
58         assertThatThrownBy(() -> new JpaToscaModel(null, new JpaToscaServiceTemplates())).hasMessage(KEY_IS_NULL);
59
60         assertThatThrownBy(() -> new JpaToscaModel(new PfConceptKey(), null))
61                         .hasMessage("serviceTemplates is marked @NonNull but is null");
62
63         assertThatThrownBy(() -> new JpaToscaModel((JpaToscaModel) null))
64                         .hasMessage("copyConcept is marked @NonNull but is null");
65
66         PfConceptKey tstsKey = new PfConceptKey("tsts", VERSION_001);
67         Map<PfConceptKey, JpaToscaServiceTemplate> tstMap = new TreeMap<>();
68         JpaToscaServiceTemplates tsts = new JpaToscaServiceTemplates(tstsKey, tstMap);
69         PfConceptKey tmKey = new PfConceptKey("tst", VERSION_001);
70         JpaToscaModel tm = new JpaToscaModel(tmKey, tsts);
71
72         JpaToscaModel tttClone0 = new JpaToscaModel(tm);
73         assertEquals(tm, tttClone0);
74         assertEquals(0, tm.compareTo(tttClone0));
75
76         JpaToscaModel tttClone1 = new JpaToscaModel(tm);
77         assertEquals(tm, tttClone1);
78         assertEquals(0, tm.compareTo(tttClone1));
79
80         assertEquals(-1, tm.compareTo(null));
81         assertEquals(0, tm.compareTo(tm));
82         assertFalse(tm.compareTo(tm.getKey()) == 0);
83
84         PfConceptKey otherDtKey = new PfConceptKey("otherDt", VERSION_001);
85         JpaToscaModel otherDt = new JpaToscaModel(otherDtKey);
86
87         assertFalse(tm.compareTo(otherDt) == 0);
88         otherDt.setKey(tmKey);
89         assertFalse(tm.compareTo(otherDt) == 0);
90         otherDt.setServiceTemplates(tsts);
91         assertEquals(0, tm.compareTo(otherDt));
92
93         assertThatThrownBy(() -> new JpaToscaModel((JpaToscaModel) null))
94                         .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(new PfValidationResult()).isValid());
104         assertFalse(tm.validate(new PfValidationResult()).isValid());
105
106         tm.register();
107         assertTrue(PfModelService.existsModel(tm.getServiceTemplates().getId()));
108         PfModelService.deregisterModel(tm.getServiceTemplates().getId());
109
110         assertThatThrownBy(() -> tm.validate(null)).hasMessage("resultIn is marked @NonNull but is null");
111     }
112 }