2018-01-10 11:27:55 +02:00
|
|
|
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 JenkinsPropertiesRule implements TestRule {
|
|
|
|
|
|
|
|
final BasePipelineTest testInstance
|
|
|
|
|
|
|
|
final String propertyPath
|
|
|
|
|
|
|
|
final Properties configProperties
|
|
|
|
|
|
|
|
JenkinsPropertiesRule(BasePipelineTest testInstance, String propertyPath) {
|
|
|
|
this.testInstance = testInstance
|
|
|
|
this.propertyPath = propertyPath
|
|
|
|
configProperties = loadProperties(propertyPath)
|
|
|
|
}
|
|
|
|
|
2019-01-28 12:32:24 +02:00
|
|
|
JenkinsPropertiesRule(BasePipelineTest testInstance, String propertyPath, Properties properties) {
|
|
|
|
this.testInstance = testInstance
|
|
|
|
this.propertyPath = propertyPath
|
|
|
|
configProperties = properties
|
|
|
|
}
|
|
|
|
|
2018-01-10 11:27:55 +02:00
|
|
|
|
|
|
|
@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("readProperties", [Map.class], {
|
|
|
|
propertyPath ->
|
|
|
|
if (JenkinsPropertiesRule.this.propertyPath.contains(propertyPath.file)) {
|
|
|
|
return JenkinsPropertiesRule.this.configProperties
|
|
|
|
}
|
|
|
|
|
|
|
|
throw new Exception("Could not find the properties with path $propertyPath")
|
|
|
|
})
|
|
|
|
|
|
|
|
base.evaluate()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static Properties loadProperties(String path) {
|
|
|
|
def inputStream = new File(path).newInputStream()
|
|
|
|
def properties = new Properties()
|
|
|
|
properties.load(inputStream)
|
|
|
|
inputStream.close()
|
|
|
|
return properties
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|