mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-12 10:55:20 +02:00
fe89155a04
Adding lesfurets test framwork improvements via helper classes
39 lines
1.0 KiB
Groovy
39 lines
1.0 KiB
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 JenkinsScriptLoaderRule implements TestRule {
|
|
|
|
final BasePipelineTest testInstance
|
|
|
|
final String scriptBasePath
|
|
|
|
JenkinsScriptLoaderRule(BasePipelineTest testInstance, String scriptBasePath) {
|
|
this.testInstance = testInstance
|
|
this.scriptBasePath = scriptBasePath
|
|
}
|
|
|
|
@Override
|
|
Statement apply(Statement base, Description description) {
|
|
return statement(base)
|
|
}
|
|
|
|
private Statement statement(final Statement base) {
|
|
return new Statement() {
|
|
@Override
|
|
void evaluate() throws Throwable {
|
|
|
|
testInstance.helper.registerAllowedMethod("load", [String.class], {
|
|
fileNameIntegration ->
|
|
return testInstance.loadScript("$scriptBasePath/$fileNameIntegration")
|
|
})
|
|
|
|
base.evaluate()
|
|
}
|
|
}
|
|
}
|
|
}
|