blob: 628c00dd1c2c2f630e12598ae24588f3ccc36c94 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2016, 2019 Chalmers | University of Gothenburg, rt-labs and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Chalmers | University of Gothenburg and rt-labs - initial API and implementation and/or initial documentation
* Chalmers | University of Gothenburg - additional features, updated API
*******************************************************************************/
package org.eclipse.capra.testsuite;
import org.junit.rules.TestRule;
import org.junit.runner.Description;
import org.junit.runners.model.Statement;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* A JUnit rule that allows the JUnit tests to re-run for a specified amount of
* times in case of failure.
*
* @author Dusan Kalanj
*
*/
public class TestRetry implements TestRule {
private static final Logger LOG = LoggerFactory.getLogger(TestRetry.class);
private int retryCount;
/**
* A constructor that specifies the amount of times that a JUnit test is
* re-run in case of failure.
*
* @param retryCount
* the amount of retries
*/
public TestRetry(int retryCount) {
this.retryCount = retryCount;
}
@Override
public Statement apply(Statement base, Description description) {
return modifyStatement(base, description);
}
private Statement modifyStatement(Statement base, Description description) {
return new Statement() {
@Override
public void evaluate() throws Throwable {
Throwable caughtThrowable = null;
for (int i = 0; i < retryCount; i++) {
try {
base.evaluate();
return;
} catch (Throwable t) {
caughtThrowable = t;
LOG.error("{}: run {} failed", description.getDisplayName(), (i + 1));
}
}
LOG.error("{}: giving up after {} failures", description.getDisplayName(), retryCount);
throw caughtThrowable;
}
};
}
}