1e7daad03a937b3db017824d6370c7e19315e320
[policy/apex-pdp.git] /
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 static org.junit.Assert.assertTrue;
24
25 import java.sql.Connection;
26 import java.sql.DriverManager;
27
28 import org.junit.After;
29 import org.junit.Before;
30 import org.junit.Test;
31 import org.onap.policy.apex.model.basicmodel.concepts.AxValidationResult;
32 import org.onap.policy.apex.model.basicmodel.dao.DaoParameters;
33 import org.onap.policy.apex.model.basicmodel.dao.impl.DefaultApexDao;
34 import org.onap.policy.apex.model.basicmodel.test.TestApexModel;
35 import org.onap.policy.apex.model.policymodel.concepts.AxPolicyModel;
36
37 /**
38  * The Class TestApexSamplePolicyModel.
39  */
40 public class TestApexSamplePolicyModel {
41     private static final String VALID_MODEL_STRING = "***validation of model successful***";
42     private Connection connection;
43     private TestApexModel<AxPolicyModel> testApexModel;
44
45     /**
46      * Setup.
47      *
48      * @throws Exception the exception
49      */
50     @Before
51     public void setup() throws Exception {
52         connection = DriverManager.getConnection("jdbc:derby:memory:apex_test;create=true");
53
54         testApexModel =
55                 new TestApexModel<AxPolicyModel>(AxPolicyModel.class, new TestApexSamplePolicyModelCreator("MVEL"));
56     }
57
58     /**
59      * Teardown.
60      *
61      * @throws Exception the exception
62      */
63     @After
64     public void teardown() throws Exception {
65         connection.close();
66     }
67
68     /**
69      * Test model valid.
70      *
71      * @throws Exception the exception
72      */
73     @Test
74     public void testModelValid() throws Exception {
75         final AxValidationResult result = testApexModel.testApexModelValid();
76         assertTrue(result.toString().equals(VALID_MODEL_STRING));
77     }
78
79     /**
80      * Test model write read xml.
81      *
82      * @throws Exception the exception
83      */
84     @Test
85     public void testModelWriteReadXml() throws Exception {
86         testApexModel.testApexModelWriteReadXml();
87     }
88
89     /**
90      * Test model write read json.
91      *
92      * @throws Exception the exception
93      */
94     @Test
95     public void testModelWriteReadJson() throws Exception {
96         testApexModel.testApexModelWriteReadJson();
97     }
98
99     /**
100      * Test model write read jpa.
101      *
102      * @throws Exception the exception
103      */
104     @Test
105     public void testModelWriteReadJpa() throws Exception {
106         final DaoParameters DaoParameters = new DaoParameters();
107         DaoParameters.setPluginClass(DefaultApexDao.class.getCanonicalName());
108         DaoParameters.setPersistenceUnit("SampleModelTest");
109
110         testApexModel.testApexModelWriteReadJpa(DaoParameters);
111     }
112
113     
114 }