00dce6e66c4d26659d5d7ddd67ab9b14e1b3897f
[policy/apex-pdp.git] / testsuites / integration / integration-executor-test / src / test / java / org / onap / policy / apex / testsuites / integration / executor / handling / TestApexSamplePolicyDbWrite.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2016-2018 Ericsson. All rights reserved.
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.apex.testsuites.integration.executor.handling;
22
23 import java.sql.Connection;
24 import java.sql.DriverManager;
25
26 import org.junit.Before;
27 import org.junit.Test;
28 import org.onap.policy.apex.model.basicmodel.dao.DaoParameters;
29 import org.onap.policy.apex.model.basicmodel.dao.impl.DefaultApexDao;
30 import org.onap.policy.apex.model.basicmodel.test.TestApexModel;
31 import org.onap.policy.apex.model.policymodel.concepts.AxPolicyModel;
32
33 /**
34  * The Class TestApexSamplePolicyDbWrite.
35  */
36 public class TestApexSamplePolicyDbWrite {
37     TestApexModel<AxPolicyModel> testApexModel;
38
39     /**
40      * Setup.
41      *
42      * @throws Exception the exception
43      */
44     @Before
45     public void setup() throws Exception {
46         final TestApexSamplePolicyModelCreator apexPolicyModelCreator = new TestApexSamplePolicyModelCreator("MVEL");
47         testApexModel = new TestApexModel<AxPolicyModel>(AxPolicyModel.class, apexPolicyModelCreator);
48     }
49
50     /**
51      * Test model write read jpa.
52      *
53      * @throws Exception the exception
54      */
55     @Test
56     public void testModelWriteReadJpa() throws Exception {
57         final DaoParameters DaoParameters = new DaoParameters();
58         DaoParameters.setPluginClass(DefaultApexDao.class.getName());
59         DaoParameters.setPersistenceUnit("SampleModelTest");
60
61         Connection connection = DriverManager.getConnection("jdbc:h2:mem:testdb");
62         testApexModel.testApexModelWriteReadJpa(DaoParameters);
63         connection.close();
64     }
65 }