mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-14 11:03:09 +02:00
67 lines
2.4 KiB
Groovy
67 lines
2.4 KiB
Groovy
package com.sap.piper
|
|
|
|
import org.junit.Assert
|
|
import org.junit.Test
|
|
|
|
class ConfigurationLoaderTest {
|
|
|
|
private static getScript() {
|
|
Map configuration = [:]
|
|
configuration.general = [productiveBranch: 'master']
|
|
configuration.steps = [executeMaven: [dockerImage: 'maven:3.2-jdk-8-onbuild']]
|
|
configuration.stages = [staticCodeChecks: [pmdExcludes: '**']]
|
|
configuration.postActions = [sendEmail: [recipients: 'myEmail']]
|
|
|
|
Map defaultConfiguration = [:]
|
|
defaultConfiguration.general = [productiveBranch: 'develop']
|
|
defaultConfiguration.steps = [executeGradle: [dockerImage: 'gradle:4.0.1-jdk8']]
|
|
defaultConfiguration.stages = [staticCodeChecks: [pmdExcludes: '*.java']]
|
|
|
|
def pipelineEnvironment = [configuration: configuration]
|
|
DefaultValueCache.createInstance(defaultConfiguration)
|
|
return [commonPipelineEnvironment: pipelineEnvironment]
|
|
}
|
|
|
|
@Test
|
|
void testLoadStepConfiguration() {
|
|
Map config = ConfigurationLoader.stepConfiguration(getScript(), 'executeMaven')
|
|
Assert.assertEquals('maven:3.2-jdk-8-onbuild', config.dockerImage)
|
|
}
|
|
|
|
@Test
|
|
void testLoadStageConfiguration() {
|
|
Map config = ConfigurationLoader.stageConfiguration(getScript(), 'staticCodeChecks')
|
|
Assert.assertEquals('**', config.pmdExcludes)
|
|
}
|
|
|
|
@Test
|
|
void testLoadGeneralConfiguration() {
|
|
Map config = ConfigurationLoader.generalConfiguration(getScript())
|
|
Assert.assertEquals('master', config.productiveBranch)
|
|
}
|
|
|
|
@Test
|
|
void testLoadDefaultStepConfiguration() {
|
|
Map config = ConfigurationLoader.defaultStepConfiguration(getScript(), 'executeGradle')
|
|
Assert.assertEquals('gradle:4.0.1-jdk8', config.dockerImage)
|
|
}
|
|
|
|
@Test
|
|
void testLoadDefaultStageConfiguration() {
|
|
Map config = ConfigurationLoader.defaultStageConfiguration(getScript(), 'staticCodeChecks')
|
|
Assert.assertEquals('*.java', config.pmdExcludes)
|
|
}
|
|
|
|
@Test
|
|
void testLoadDefaultGeneralConfiguration() {
|
|
Map config = ConfigurationLoader.defaultGeneralConfiguration(getScript())
|
|
Assert.assertEquals('develop', config.productiveBranch)
|
|
}
|
|
|
|
@Test
|
|
void testLoadPostActionConfiguration(){
|
|
Map config = ConfigurationLoader.postActionConfiguration(getScript(), 'sendEmail')
|
|
Assert.assertEquals('myEmail', config.recipients)
|
|
}
|
|
}
|