2018-07-13 13:27:21 +02:00
|
|
|
package util
|
|
|
|
|
|
|
|
import com.lesfurets.jenkins.unit.BasePipelineTest
|
|
|
|
|
|
|
|
import org.junit.Assert
|
|
|
|
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.hamcrest.Matchers.is
|
|
|
|
import static org.hamcrest.Matchers.not
|
|
|
|
import static org.hamcrest.Matchers.nullValue
|
|
|
|
import static org.junit.Assert.assertThat;
|
|
|
|
|
|
|
|
import org.hamcrest.Matchers
|
2018-09-03 11:09:09 +02:00
|
|
|
import org.jenkinsci.plugins.credentialsbinding.impl.CredentialNotFoundException
|
2018-07-13 13:27:21 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* By default a user "anonymous" with password "********"
|
|
|
|
* is provided.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
class JenkinsCredentialsRule implements TestRule {
|
|
|
|
|
|
|
|
Map credentials = [:]
|
|
|
|
|
|
|
|
final BasePipelineTest testInstance
|
|
|
|
|
|
|
|
JenkinsCredentialsRule(BasePipelineTest testInstance) {
|
|
|
|
this.testInstance = testInstance
|
|
|
|
}
|
|
|
|
|
|
|
|
JenkinsCredentialsRule withCredentials(String credentialsId, String user, String passwd) {
|
|
|
|
credentials.put(credentialsId, [user: user, passwd: passwd])
|
|
|
|
return this
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
Statement apply(Statement base, Description description) {
|
|
|
|
return statement(base)
|
|
|
|
}
|
|
|
|
|
|
|
|
private Statement statement(final Statement base) {
|
|
|
|
|
|
|
|
return new Statement() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
void evaluate() throws Throwable {
|
|
|
|
|
2018-09-03 11:09:09 +02:00
|
|
|
testInstance.helper.registerAllowedMethod('usernamePassword', [Map.class],
|
|
|
|
{ m -> if (credentials.keySet().contains(m.credentialsId)) return m;
|
|
|
|
// this is what really happens in case of an unknown credentials id,
|
|
|
|
// checked with reality using credentials plugin 2.1.18.
|
|
|
|
throw new CredentialNotFoundException(
|
|
|
|
"Could not find credentials entry with ID '${m.credentialsId}'")
|
|
|
|
})
|
2018-07-13 13:27:21 +02:00
|
|
|
|
|
|
|
testInstance.helper.registerAllowedMethod('withCredentials', [List, Closure], { l, c ->
|
|
|
|
|
|
|
|
def credsId = l[0].credentialsId
|
|
|
|
def creds = credentials.get(credsId)
|
|
|
|
|
|
|
|
binding.setProperty('username', creds?.user)
|
|
|
|
binding.setProperty('password', creds?.passwd)
|
|
|
|
try {
|
|
|
|
c()
|
|
|
|
} finally {
|
|
|
|
binding.setProperty('username', null)
|
|
|
|
binding.setProperty('password', null)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
base.evaluate()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|