mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-12 10:55:20 +02:00
ef0b1bd9dd
Starting point for that refactoring: it turned out that the tests was not independent. The DefaultValueCache which is a singleton keeps the status over various tests. Success of test execution depends on the order test execution. We have now * a dedicated rule for resetting the default value cache * JenkinsConfiguration rule (which already provided facilities for dealing with the configuration) has been replaced by a readYaml rule. From the PipelineUnit test framework we get already a handler for libraryResource, which is also part of the setup of the default values. * An auxiliar class which combines the * JenkinsSetupRule (registers the lib) * JenkinsReadYamlRule (provides facilities for Yaml parsing) * JenkinsResetDefaultValueCacheRule (cleans up the DefaultValueCache) into a rule chain. By using this rule chain we ensure that our setup OK (piper lib registered, and default config can be setup in a clean way).
52 lines
1.4 KiB
Groovy
52 lines
1.4 KiB
Groovy
package util
|
|
|
|
import com.lesfurets.jenkins.unit.BasePipelineTest
|
|
import com.lesfurets.jenkins.unit.global.lib.LibraryConfiguration
|
|
import org.junit.rules.TestRule
|
|
import org.junit.runner.Description
|
|
import org.junit.runners.model.Statement
|
|
|
|
class JenkinsSetupRule implements TestRule {
|
|
|
|
def library = SharedLibraryCreator.implicitLoadedLibrary
|
|
|
|
final BasePipelineTest testInstance
|
|
|
|
JenkinsSetupRule(BasePipelineTest testInstance) {
|
|
this(testInstance, null)
|
|
}
|
|
|
|
JenkinsSetupRule(BasePipelineTest testInstance, LibraryConfiguration configuration) {
|
|
this.testInstance = testInstance
|
|
if(configuration)
|
|
this.library = configuration
|
|
}
|
|
|
|
@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.scriptRoots += "vars/"
|
|
testInstance.setUp()
|
|
// register library
|
|
testInstance.helper.registerSharedLibrary(library)
|
|
// set jenkins job mock variables
|
|
testInstance.binding.setVariable('env', [
|
|
JOB_NAME : 'p',
|
|
BUILD_NUMBER: '1',
|
|
BUILD_URL : ''
|
|
])
|
|
|
|
base.evaluate()
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|