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
9 * http://www.apache.org/licenses/LICENSE-2.0
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.
17 * SPDX-License-Identifier: Apache-2.0
18 * ============LICENSE_END=========================================================
21 package org.onap.policy.apex.testsuites.integration.executor.handling;
23 import static org.junit.Assert.assertTrue;
25 import java.sql.Connection;
26 import java.sql.DriverManager;
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;
38 * The Class TestApexSamplePolicyModel.
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;
48 * @throws Exception the exception
51 public void setup() throws Exception {
52 connection = DriverManager.getConnection("jdbc:derby:memory:apex_test;create=true");
55 new TestApexModel<AxPolicyModel>(AxPolicyModel.class, new TestApexSamplePolicyModelCreator("MVEL"));
61 * @throws Exception the exception
64 public void teardown() throws Exception {
71 * @throws Exception the exception
74 public void testModelValid() throws Exception {
75 final AxValidationResult result = testApexModel.testApexModelValid();
76 assertTrue(result.toString().equals(VALID_MODEL_STRING));
80 * Test model write read xml.
82 * @throws Exception the exception
85 public void testModelWriteReadXml() throws Exception {
86 testApexModel.testApexModelWriteReadXml();
90 * Test model write read json.
92 * @throws Exception the exception
95 public void testModelWriteReadJson() throws Exception {
96 testApexModel.testApexModelWriteReadJson();
100 * Test model write read jpa.
102 * @throws Exception the exception
105 public void testModelWriteReadJpa() throws Exception {
106 final DaoParameters DaoParameters = new DaoParameters();
107 DaoParameters.setPluginClass(DefaultApexDao.class.getCanonicalName());
108 DaoParameters.setPersistenceUnit("SampleModelTest");
110 testApexModel.testApexModelWriteReadJpa(DaoParameters);