mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-14 11:03:09 +02:00
fbd03a88da
It contains: * versioning step artifactSetVersion * versioning implementation for Maven & Docker * enhancements to commonPipelineEnvironment * extended default configuration * new utils object for git-related tasks * automated tests incl. new Rules and resources * incorporated PR feedback * step documentation
51 lines
1.3 KiB
Groovy
51 lines
1.3 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 JenkinsShellCallRule implements TestRule {
|
|
|
|
final BasePipelineTest testInstance
|
|
|
|
List shell = []
|
|
|
|
def returnValues = [:]
|
|
|
|
JenkinsShellCallRule(BasePipelineTest testInstance) {
|
|
this.testInstance = testInstance
|
|
}
|
|
|
|
def setReturnValue(script, value) {
|
|
returnValues[script] = value
|
|
}
|
|
|
|
@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("sh", [String.class], {
|
|
command ->
|
|
shell.add(command.replaceAll(/\s+/," ").trim())
|
|
})
|
|
|
|
testInstance.helper.registerAllowedMethod("sh", [Map.class], {
|
|
m ->
|
|
shell.add(m.script.replaceAll(/\s+/," ").trim())
|
|
if (m.returnStdout || m.returnStatus)
|
|
return returnValues[m.script]
|
|
})
|
|
|
|
base.evaluate()
|
|
}
|
|
}
|
|
}
|
|
}
|