blob: d25f9e390f8b23d265d92b68731bd2de01d3953e [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.framework;
import java.io.*;
import java.util.*;
/**
* <p><b>Purpose</b>: Test suite is a collection of test cases and/or sub test suites. When a
* test suite is executed all the test cases and suites registed with it are
* executed one by one.
*/
public class TestSuite extends TestCollection {
public TestSuite() {
this.isSRG = false;
addTests();
}
/**
* Constructs a TestSuite from the given class with the given name.
*/
public TestSuite(Class<?> theClass, String name) {
super(theClass, name);
}
/**
* Constructs a TestSuite from the given class. Adds all the methods
* starting with "test" as test cases to the suite.
*/
public TestSuite(final Class<?> theClass) {
super(theClass);
}
public TestSuite(boolean isSRG) {
this.isSRG = isSRG;
if (isSRG) {
addSRGTests();
} else {
addTests();
}
}
/**
* The subclasses must overwrite this method. To add tests to the suite.
* It could be collection of test cases or test suites themselves.
*/
@Override
public void addTests() {
;
}
/**
* Executes all the test entities in the collection.
*/
@Override
public void execute(TestExecutor executor) throws Throwable {
setSummary(new TestResultsSummary(this));
setExecutor(executor);
computeNestedLevel();
setupEntity();
setFinishedTests(new Vector());
if (getNestedCounter() < 1) {
System.out.println();
System.out.println("Running " + getSummary().getName());
}
long startTime = System.nanoTime();
for (Enumeration tests = getTests().elements(); tests.hasMoreElements();) {
junit.framework.Test test = (junit.framework.Test)tests.nextElement();
if ((TestExecutor.getDefaultJUnitTestResult() != null) && TestExecutor.getDefaultJUnitTestResult().shouldStop()) {
break;
}
executor.execute(test);
getFinishedTests().addElement(test);
}
long endTime = System.nanoTime();
getSummary().setTotalTime(endTime - startTime);
setFinishedTests((Vector)getTests().clone());
if (getNestedCounter() < 1) {
computeResultSummary();
System.out.printf("Tests run: %d, Failures: %d, Errors: %d, Skipped: %d, Time elapsed: %.3f sec",
getSummary().getPassed(), getSummary().getErrors() + getSummary().getSetupFailures(),
getSummary().getFatalErrors(),
getSummary().getWarnings() + getSummary().getProblems() + getSummary().getSetupWarnings(),
getSummary().getTotalTime() / 1e9);
System.out.println();
}
reset();
}
/**
* Format the test output on the print stream.
*/
@Override
protected void logFootNote(Writer log) {
try {
log.write(org.eclipse.persistence.internal.helper.Helper.cr() + getIndentationString() + "RESULTS OF TEST SUITE: " + getName() + org.eclipse.persistence.internal.helper.Helper.cr());
} catch (IOException exception) {
}
}
/**
* Format the test output on the print stream.
* This method is added to migrate tests to Ora*Tst
*/
@Override
protected void logRegressionHeadNote(Writer log) {
try {
log.write(org.eclipse.persistence.internal.helper.Helper.cr() + getIndentationString() + "TEST SUITE NAME: " + getName() + org.eclipse.persistence.internal.helper.Helper.cr());
log.write(getIndentationString() + "SUITE DESCRIPTION: " + getDescription() + org.eclipse.persistence.internal.helper.Helper.cr());
} catch (IOException exception) {
}
}
/**
* Format the test output on the print stream.
*/
@Override
protected void logHeadNote(Writer log) {
try {
log.write(org.eclipse.persistence.internal.helper.Helper.cr() + org.eclipse.persistence.internal.helper.Helper.cr() + getIndentationString() + "VERSION: " + org.eclipse.persistence.sessions.DatabaseLogin.getVersion());
log.write(org.eclipse.persistence.internal.helper.Helper.cr() + getIndentationString() + "TEST SUITE NAME: " + getName() + org.eclipse.persistence.internal.helper.Helper.cr());
log.write(getIndentationString() + "SUITE DESCRIPTION: " + getDescription() + org.eclipse.persistence.internal.helper.Helper.cr());
} catch (IOException exception) {
}
}
public void reset() {
return;
}
@Override
public void resetEntity() {
// Clear the cache to help make test runs more stable for erroronious test cases.
// Use old API to be able to run on 9.0.4 for perf testing.
getSession().getIdentityMapAccessor().initializeIdentityMaps();
}
public void setup() {
return;
}
@Override
public void setupEntity() throws Throwable {
try {
setup();
} catch (Throwable exception) {
getSummary().setSetupException(exception);
throw exception;
}
}
}