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/JenkinsLockRule.groovy

41 lines
1.0 KiB
Groovy
Raw Normal View History

package util
import com.lesfurets.jenkins.unit.BasePipelineTest
import org.junit.rules.TestRule
import org.junit.runner.Description
import org.junit.runners.model.Statement
import static org.hamcrest.Matchers.containsString
import static org.junit.Assert.assertThat
class JenkinsLockRule implements TestRule {
final BasePipelineTest testInstance
final List lockResources = []
JenkinsLockRule(BasePipelineTest testInstance) {
this.testInstance = testInstance
}
@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("lock", [String.class, Closure.class], {
resource, body ->
lockResources.add(resource)
body()
})
base.evaluate()
}
}
}
}