Convert models to JUnit 5
[policy/models.git] / models-tosca / src / test / java / org / onap / policy / models / tosca / authorative / provider / AuthorativeToscaProviderGenericTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2020-2021, 2023-2024 Nordix Foundation.
4  *  Modifications Copyright (C) 2021 AT&T Intellectual Property. All rights reserved.
5  *  Modifications Copyright (C) 2024 Nordix Foundation
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  * SPDX-License-Identifier: Apache-2.0
20  * ============LICENSE_END=========================================================
21  */
22
23 package org.onap.policy.models.tosca.authorative.provider;
24
25 import static org.assertj.core.api.Assertions.assertThatThrownBy;
26 import static org.junit.jupiter.api.Assertions.assertEquals;
27 import static org.junit.jupiter.api.Assertions.assertNotNull;
28 import static org.junit.jupiter.api.Assertions.assertTrue;
29
30 import com.google.gson.GsonBuilder;
31 import java.util.List;
32 import java.util.Properties;
33 import org.apache.commons.lang3.ObjectUtils;
34 import org.junit.jupiter.api.AfterEach;
35 import org.junit.jupiter.api.BeforeAll;
36 import org.junit.jupiter.api.BeforeEach;
37 import org.junit.jupiter.api.Test;
38 import org.onap.policy.common.utils.coder.StandardCoder;
39 import org.onap.policy.common.utils.resources.ResourceUtils;
40 import org.onap.policy.models.base.PfConceptKey;
41 import org.onap.policy.models.dao.DaoParameters;
42 import org.onap.policy.models.dao.PfDao;
43 import org.onap.policy.models.dao.PfDaoFactory;
44 import org.onap.policy.models.dao.impl.DefaultPfDao;
45 import org.onap.policy.models.tosca.authorative.concepts.ToscaPolicyType;
46 import org.onap.policy.models.tosca.authorative.concepts.ToscaServiceTemplate;
47 import org.yaml.snakeyaml.Yaml;
48
49 /**
50  * Test of the {@link AuthorativeToscaProvider} class.
51  *
52  * @author Liam Fallon (liam.fallon@est.tech)
53  */
54 class AuthorativeToscaProviderGenericTest {
55     private static final String POLICY_NO_VERSION_VERSION1 = "onap.policies.NoVersion:0.0.1";
56     private static final String POLICY_NO_VERSION = "onap.policies.NoVersion";
57     private static final String DAO_IS_NULL = "^dao is marked .*on.*ull but is null$";
58     private static final String VERSION_001 = "0.0.1";
59     private static String yamlAsJsonString;
60     private PfDao pfDao;
61     private StandardCoder standardCoder;
62
63     /**
64      * Read the policy type definition.
65      *
66      * @throws Exception on errors
67      */
68     @BeforeAll
69     public static void readPolicyDefinition() {
70         String yamlString = ResourceUtils.getResourceAsString("src/test/resources/onap.policies.NoVersion.yaml");
71
72         Object yamlObject = new Yaml().load(yamlString);
73         yamlAsJsonString = new GsonBuilder().setPrettyPrinting().create().toJson(yamlObject);
74     }
75
76     /**
77      * Set up the DAO towards the database.
78      *
79      * @throws Exception on database errors
80      */
81     @BeforeEach
82     void setupDao() throws Exception {
83         final DaoParameters daoParameters = new DaoParameters();
84         daoParameters.setPluginClass(DefaultPfDao.class.getName());
85
86         daoParameters.setPersistenceUnit("ToscaConceptTest");
87
88         Properties jdbcProperties = new Properties();
89         jdbcProperties.setProperty("jakarta.persistence.jdbc.user", "policy");
90         jdbcProperties.setProperty("jakarta.persistence.jdbc.password", "P01icY");
91         if (System.getProperty("USE-MARIADB") != null) {
92             jdbcProperties.setProperty("jakarta.persistence.jdbc.driver", "org.mariadb.jdbc.Driver");
93             jdbcProperties.setProperty("jakarta.persistence.jdbc.url", "jdbc:mariadb://localhost:3306/policy");
94         } else {
95             jdbcProperties.setProperty("jakarta.persistence.jdbc.driver", "org.h2.Driver");
96             jdbcProperties.setProperty("jakarta.persistence.jdbc.url",
97                 "jdbc:h2:mem:AuthorativeToscaProviderGenericTest");
98         }
99         daoParameters.setJdbcProperties(jdbcProperties);
100
101         pfDao = new PfDaoFactory().createPfDao(daoParameters);
102         pfDao.init(daoParameters);
103     }
104
105     /**
106      * Set up GSON.
107      */
108     @BeforeEach
109     void setupGson() {
110         standardCoder = new StandardCoder();
111     }
112
113     @AfterEach
114     void teardown() {
115         pfDao.close();
116     }
117
118     @Test
119     void testCreateGetDelete() throws Exception {
120         assertThatThrownBy(() -> {
121             new AuthorativeToscaProvider().getServiceTemplateList(null, null, null);
122         }).hasMessageMatching(DAO_IS_NULL);
123
124         ToscaServiceTemplate toscaServiceTemplate = standardCoder.decode(yamlAsJsonString, ToscaServiceTemplate.class);
125
126         assertNotNull(toscaServiceTemplate);
127         ToscaServiceTemplate createdServiceTemplate =
128             new AuthorativeToscaProvider().createServiceTemplate(pfDao, toscaServiceTemplate);
129
130         PfConceptKey policyTypeKey = new PfConceptKey(POLICY_NO_VERSION_VERSION1);
131
132         ToscaPolicyType beforePolicyType = toscaServiceTemplate.getPolicyTypes().get(policyTypeKey.getName());
133         ToscaPolicyType createdPolicyType = createdServiceTemplate.getPolicyTypes().get(policyTypeKey.getName());
134         assertEquals(true, beforePolicyType.getName().equals(createdPolicyType.getName()));
135         assertEquals(0, ObjectUtils.compare(beforePolicyType.getDescription(), createdPolicyType.getDescription()));
136
137         List<ToscaServiceTemplate> gotServiceTemplateList =
138             new AuthorativeToscaProvider().getServiceTemplateList(pfDao, null, null);
139
140         ToscaPolicyType gotPolicyType = gotServiceTemplateList.get(0).getPolicyTypes().get(policyTypeKey.getName());
141         assertEquals(true, beforePolicyType.getName().equals(gotPolicyType.getName()));
142         assertEquals(0, ObjectUtils.compare(beforePolicyType.getDescription(), createdPolicyType.getDescription()));
143
144         List<ToscaPolicyType> gotPolicyTypeList =
145             new AuthorativeToscaProvider().getPolicyTypeList(pfDao, POLICY_NO_VERSION, VERSION_001);
146         assertEquals(2, gotPolicyTypeList.size());
147         assertEquals(true, beforePolicyType.getName().equals(gotPolicyType.getName()));
148
149         gotPolicyTypeList = new AuthorativeToscaProvider().getPolicyTypeList(pfDao, POLICY_NO_VERSION, null);
150         assertEquals(2, gotPolicyTypeList.size());
151         assertEquals(true, beforePolicyType.getName().equals(gotPolicyType.getName()));
152
153         gotPolicyTypeList = new AuthorativeToscaProvider().getPolicyTypeList(pfDao, null, null);
154         assertEquals(2, gotPolicyTypeList.size());
155         assertEquals(true, beforePolicyType.getName().equals(gotPolicyType.getName()));
156
157         gotPolicyTypeList = new AuthorativeToscaProvider().getPolicyTypeList(pfDao, null, VERSION_001);
158         assertEquals(2, gotPolicyTypeList.size());
159         assertEquals(true, beforePolicyType.getName().equals(gotPolicyType.getName()));
160
161         assertThatThrownBy(() -> new AuthorativeToscaProvider().getPolicyTypeList(new DefaultPfDao(), POLICY_NO_VERSION,
162             VERSION_001)).hasMessageContaining("Policy Framework DAO has not been initialized");
163
164         assertTrue(new AuthorativeToscaProvider().getPolicyTypeList(pfDao, "i.dont.Exist", VERSION_001).isEmpty());
165
166         ToscaServiceTemplate deletedServiceTemplate =
167             new AuthorativeToscaProvider().deleteServiceTemplate(pfDao, "Dummy", "0.0.1");
168         assertEquals(2, deletedServiceTemplate.getPolicyTypes().size());
169     }
170
171     @Test
172     void testNullParameters() throws Exception {
173         assertThatThrownBy(() -> new AuthorativeToscaProvider().getServiceTemplateList(null, null, null))
174             .hasMessageMatching("^dao is marked .*on.*ull but is null$");
175
176         assertThatThrownBy(() -> new AuthorativeToscaProvider().createServiceTemplate(null, null))
177             .hasMessageMatching("^dao is marked .*on.*ull but is null$");
178
179         assertThatThrownBy(() -> new AuthorativeToscaProvider().createServiceTemplate(pfDao, null))
180             .hasMessageMatching("^serviceTemplate is marked .*on.*ull but is null$");
181
182         assertThatThrownBy(() -> new AuthorativeToscaProvider().createServiceTemplate(null, new ToscaServiceTemplate()))
183             .hasMessageMatching("^dao is marked .*on.*ull but is null$");
184
185         assertThatThrownBy(() -> new AuthorativeToscaProvider().deleteServiceTemplate(null, null, null))
186             .hasMessageMatching("^dao is marked .*on.*ull but is null$");
187
188         assertThatThrownBy(() -> new AuthorativeToscaProvider().deleteServiceTemplate(null, null, "0.0.1"))
189             .hasMessageMatching("^dao is marked .*on.*ull but is null$");
190
191         assertThatThrownBy(() -> new AuthorativeToscaProvider().deleteServiceTemplate(null, "Dummy", null))
192             .hasMessageMatching("^dao is marked .*on.*ull but is null$");
193
194         assertThatThrownBy(() -> new AuthorativeToscaProvider().deleteServiceTemplate(null, "Dummy", "0.0.1"))
195             .hasMessageMatching("^dao is marked .*on.*ull but is null$");
196
197         assertThatThrownBy(() -> new AuthorativeToscaProvider().deleteServiceTemplate(pfDao, null, null))
198             .hasMessageMatching("^name is marked .*on.*ull but is null$");
199
200         assertThatThrownBy(() -> new AuthorativeToscaProvider().deleteServiceTemplate(pfDao, null, "0.0.1"))
201             .hasMessageMatching("^name is marked .*on.*ull but is null$");
202
203         assertThatThrownBy(() -> new AuthorativeToscaProvider().deleteServiceTemplate(pfDao, "Dummy", null))
204             .hasMessageMatching("^version is marked .*on.*ull but is null$");
205     }
206 }