1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-12 10:55:20 +02:00
sap-jenkins-library/test/groovy/util/JenkinsPiperExecuteBinRule.groovy
2020-07-07 12:07:44 +02:00

33 lines
1013 B
Groovy

package util
import com.lesfurets.jenkins.unit.BasePipelineTest
import org.junit.rules.TestRule
import org.junit.runner.Description
import org.junit.runners.model.Statement
class JenkinsPiperExecuteBinRule implements TestRule {
final BasePipelineTest testInstance
def env
JenkinsPiperExecuteBinRule(BasePipelineTest testInstance) {
this.testInstance = testInstance
}
@Override
Statement apply(Statement base, Description description) {
return new Statement() {
@Override
void evaluate() throws Throwable {
def piperExecuteBin = testInstance.loadScript('piperExecuteBin.groovy').piperExecuteBin
try {
testInstance?.nullScript.piperExecuteBin = piperExecuteBin
} catch (MissingPropertyException e) {
//kept for backward compatibility before all tests inherit from BasePiperTest
}
base.evaluate()
}
}
}
}