blob: b0ceb8992cf5e2226b8fc7c461b370610b48e25f [file] [log] [blame]
/*
* Copyright (c) 1998, 2021 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0,
* or the Eclipse Distribution License v. 1.0 which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
*/
// Contributors:
// Oracle - initial API and implementation from Oracle TopLink
package org.eclipse.persistence.testing.tests.workbenchintegration;
import org.eclipse.persistence.testing.framework.TestSuite;
import org.eclipse.persistence.testing.tests.customsqlstoredprocedures.CustomSQLTestModel;
import org.eclipse.persistence.testing.tests.customsqlstoredprocedures.EmployeeCustomSQLSystem;
/**
* This model tests the integration between the Mapping Workbench and the foundation library.
*/
public class MappingWMIntegrationStoredProcedureTestModel extends CustomSQLTestModel {
/**
* The constructor provides the test description.
*/
public MappingWMIntegrationStoredProcedureTestModel() {
setDescription("This model tests the integration between the Mapping Workbench and Stored procedure call");
}
@Override
public void addForcedRequiredSystems() {
super.addForcedRequiredSystems();
getExecutor().removeConfigureSystem(new EmployeeCustomSQLSystem());
// Force the database to be recreated using custom SQL.
addForcedRequiredSystem(new EmployeeCustomSQLMWIntegrationSystem());
}
@Override
public void addTests() {
super.addTests();
addTest(getStoredProcedureCallFromProjectXMLSuite());
addTest(getStoredFunctionCallFromProjectXMLSuite());
}
public static TestSuite getStoredProcedureCallFromProjectXMLSuite() {
TestSuite suite = new TestSuite();
suite.setName("getStoredProcedureCallFromProjectXMLSuite");
suite.setDescription("This suite tests read stored procedure call from XML and execute it.");
suite.addTest(new ProjectXMLStoredProcedureCallTest());
return suite;
}
public static TestSuite getStoredFunctionCallFromProjectXMLSuite() {
TestSuite suite = new TestSuite();
suite.setName("getStoredFunctionCallFromProjectXMLSuite");
suite.setDescription("This suite tests read stored function call from XML and execute it.");
suite.addTest(new ProjectXMLStoredFunctionCallTest());
return suite;
}
}