blob: 066b025b51d569501cccc3beacee753a22662570 [file] [log] [blame]
/*
* Copyright (c) 2010, 2020 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
package org.eclipse.persistence.testing.tests.jpa.performance;
import junit.framework.TestSuite;
import junit.framework.Test;
import org.eclipse.persistence.testing.framework.*;
import org.eclipse.persistence.testing.framework.junit.JUnitTestCase;
import org.eclipse.persistence.internal.jpa.EntityManagerFactoryImpl;
import org.eclipse.persistence.jpa.JpaEntityManagerFactory;
import jakarta.persistence.*;
/**
* <p><b>Purpose</b>: Run performance tests inside JEE server.
*/
public class JPAPerformanceServerTestSuite extends JUnitTestCase {
public JPAPerformanceServerTestSuite(String name) {
super(name);
}
public static Test suite() {
TestSuite suite = new TestSuite();
suite.setName("JPAPerformanceServerTestSuite");
suite.addTest(new JPAPerformanceServerTestSuite("testPerformance"));
return suite;
}
public void testPerformance() throws Throwable {
TestExecutor executor = new TestExecutor();
EntityManagerFactory factory = Persistence.createEntityManagerFactory("performance");
executor.setSession(((JpaEntityManagerFactory)factory).getServerSession());
executor.setEntityManagerFactory(factory);
JPAPerformanceRegressionModel test = new JPAPerformanceRegressionModel();
executor.runTest(test);
executor.logResultForTestEntity(test);
factory.close();
}
}