blob: 246b8f279f591495ed290522ac8d3d273b0d4269 [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;
/**
* This model tests mapping workbench integration with the foundation library
* by writing, compiling and instantiating project classes and then running
* some operations on them.
* @author Edwin Tang
*/
public class ProjectClassGeneratorTestModel extends XMLProjectWriterTestModel {
/**
* The constructor provides the test description.
*/
public ProjectClassGeneratorTestModel() {
setDescription("This model tests mapping workbench integration with the foundation library by writing, compiling and instantiating project classes and then running some operations on them.");
}
@Override
public void setup() {
}
@Override
public void reset() {
}
/**
* Add the Mapping Workbench Integration test system.
*/
@Override
public void addRequiredSystems() {
addRequiredSystem(new EmployeeWorkbenchIntegrationSubSystem());
addRequiredSystem(new InheritanceWorkbenchIntegrationSubSystem());
addRequiredSystem(new AggregateWorkbenchIntegrationSubSystem());
addRequiredSystem(new InterfaceWorkbenchIntegrationSubSystem());
addRequiredSystem(new DirectMapMappingMWIntergrationSubSystem());
addRequiredSystem(new CMWorkbenchIntegrationSubSystem());
addRequiredSystem(new ProxyIndirectionMWIntegrationSubSystem());
if(this.getSession().getPlatform().isOracle9()) {
addRequiredSystem(new InsuranceORWorkbenchIntegrationSystem()); // Note: not a sub system
}
addRequiredSystem(new MappingModelWorkbenchIntegrationSubSystem());
addRequiredSystem(new MultipleTableModelWorkbenchIntegrationSubSystem());
}
@Override
public void addTests() {
super.addTests();
TestSuite unicodeSuite = new TestSuite();
unicodeSuite.setName("UnicodeSuite");
unicodeSuite.setDescription("Tests to ensure unicode/non-unicode are generated as required.");
unicodeSuite.addTest(new ProjectClassGeneratorUnicodeTest());
addTest(unicodeSuite);
addTest(new ProjectClassGeneratorOrderByQueryKeysTest());
addTest(new ProjectClassGeneratorInheritanceMappingTest()); // Bug 298443
}
}