mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-14 11:03:09 +02:00
97 lines
4.0 KiB
Groovy
97 lines
4.0 KiB
Groovy
|
import org.junit.Before
|
||
|
import org.junit.Rule
|
||
|
import org.junit.Test
|
||
|
import org.junit.rules.RuleChain
|
||
|
import util.*
|
||
|
|
||
|
import static org.hamcrest.Matchers.*
|
||
|
import static org.junit.Assert.assertThat
|
||
|
|
||
|
class KubernetesDeployTest extends BasePiperTest {
|
||
|
|
||
|
private JenkinsReadJsonRule readJsonRule = new JenkinsReadJsonRule(this)
|
||
|
private JenkinsShellCallRule shellCallRule = new JenkinsShellCallRule(this)
|
||
|
private JenkinsStepRule stepRule = new JenkinsStepRule(this)
|
||
|
private JenkinsWriteFileRule writeFileRule = new JenkinsWriteFileRule(this)
|
||
|
private JenkinsDockerExecuteRule dockerExecuteRule = new JenkinsDockerExecuteRule(this)
|
||
|
|
||
|
private List withEnvArgs = []
|
||
|
private List credentials = []
|
||
|
|
||
|
@Rule
|
||
|
public RuleChain rules = Rules
|
||
|
.getCommonRules(this)
|
||
|
.around(new JenkinsReadYamlRule(this))
|
||
|
.around(readJsonRule)
|
||
|
.around(shellCallRule)
|
||
|
.around(stepRule)
|
||
|
.around(writeFileRule)
|
||
|
.around(dockerExecuteRule)
|
||
|
|
||
|
@Before
|
||
|
void init() {
|
||
|
credentials = []
|
||
|
helper.registerAllowedMethod("withEnv", [List.class, Closure.class], {arguments, closure ->
|
||
|
arguments.each {arg ->
|
||
|
withEnvArgs.add(arg.toString())
|
||
|
}
|
||
|
return closure()
|
||
|
})
|
||
|
|
||
|
helper.registerAllowedMethod('file', [Map], { m -> return m })
|
||
|
helper.registerAllowedMethod('string', [Map], { m -> return m })
|
||
|
helper.registerAllowedMethod('usernamePassword', [Map], { m -> return m })
|
||
|
helper.registerAllowedMethod('withCredentials', [List, Closure], { l, c ->
|
||
|
l.each {m ->
|
||
|
credentials.add(m)
|
||
|
if (m.credentialsId == 'kubeConfig') {
|
||
|
binding.setProperty('PIPER_kubeConfig', 'myKubeConfig')
|
||
|
} else if (m.credentialsId == 'kubeToken') {
|
||
|
binding.setProperty('PIPER_kubeToken','myKubeToken')
|
||
|
} else if (m.credentialsId == 'dockerCredentials') {
|
||
|
binding.setProperty('PIPER_containerRegistryUser', 'registryUser')
|
||
|
binding.setProperty('PIPER_containerRegistryPassword', '********')
|
||
|
}
|
||
|
}
|
||
|
try {
|
||
|
c()
|
||
|
} finally {
|
||
|
binding.setProperty('PIPER_kubeConfig', null)
|
||
|
binding.setProperty('PIPER_kubeToken', null)
|
||
|
binding.setProperty('PIPER_containerRegistryUser', null)
|
||
|
binding.setProperty('PIPER_containerRegistryPassword', null)
|
||
|
}
|
||
|
})
|
||
|
}
|
||
|
|
||
|
@Test
|
||
|
void testKubernetesDeployAllCreds() {
|
||
|
shellCallRule.setReturnValue('./piper getConfig --contextConfig --stepMetadata \'metadata/kubernetesdeploy.yaml\'', '{"kubeConfigFileCredentialsId":"kubeConfig", "kubeTokenCredentialsId":"kubeToken", "dockerCredentialsId":"dockerCredentials", "dockerImage":"my.Registry/K8S:latest"}')
|
||
|
|
||
|
stepRule.step.kubernetesDeploy(
|
||
|
juStabUtils: utils,
|
||
|
testParam: "This is test content",
|
||
|
script: nullScript
|
||
|
)
|
||
|
// asserts
|
||
|
assertThat(writeFileRule.files['metadata/kubernetesdeploy.yaml'], containsString('name: kubernetesDeploy'))
|
||
|
assertThat(withEnvArgs[0], allOf(startsWith('PIPER_parametersJSON'), containsString('"testParam":"This is test content"')))
|
||
|
assertThat(shellCallRule.shell[1], is('./piper kubernetesDeploy'))
|
||
|
assertThat(credentials.size(), is(3))
|
||
|
|
||
|
assertThat(dockerExecuteRule.dockerParams.dockerImage, is('my.Registry/K8S:latest'))
|
||
|
}
|
||
|
|
||
|
@Test
|
||
|
void testKubernetesDeploySomeCreds() {
|
||
|
shellCallRule.setReturnValue('./piper getConfig --contextConfig --stepMetadata \'metadata/kubernetesdeploy.yaml\'', '{"kubeTokenCredentialsId":"kubeToken", "dockerCredentialsId":"dockerCredentials"}')
|
||
|
stepRule.step.kubernetesDeploy(
|
||
|
juStabUtils: utils,
|
||
|
script: nullScript
|
||
|
)
|
||
|
// asserts
|
||
|
assertThat(shellCallRule.shell[1], is('./piper kubernetesDeploy'))
|
||
|
assertThat(credentials.size(), is(2))
|
||
|
}
|
||
|
}
|