mirror of
https://github.com/SAP/jenkins-library.git
synced 2025-01-22 05:33:10 +02:00
ae0074b5d3
Add a function for inferring the used build tool based on project layout. This feature must be explicitly enabled for backwards compatibility reasons.
250 lines
9.5 KiB
Groovy
250 lines
9.5 KiB
Groovy
import com.sap.piper.DefaultValueCache
|
|
import org.junit.Before
|
|
import org.junit.Rule
|
|
import org.junit.Test
|
|
import org.junit.rules.ExpectedException
|
|
import org.junit.rules.RuleChain
|
|
import org.yaml.snakeyaml.Yaml
|
|
import util.BasePiperTest
|
|
import util.JenkinsLoggingRule
|
|
import util.JenkinsReadFileRule
|
|
import util.JenkinsShellCallRule
|
|
import util.JenkinsStepRule
|
|
import util.JenkinsWriteFileRule
|
|
import util.Rules
|
|
|
|
import static org.junit.Assert.assertEquals
|
|
import static org.junit.Assert.assertNotNull
|
|
import static org.junit.Assert.assertNull
|
|
|
|
class SetupCommonPipelineEnvironmentTest extends BasePiperTest {
|
|
|
|
def usedConfigFile
|
|
|
|
private JenkinsStepRule stepRule = new JenkinsStepRule(this)
|
|
private JenkinsWriteFileRule writeFileRule = new JenkinsWriteFileRule(this)
|
|
private ExpectedException thrown = ExpectedException.none()
|
|
private JenkinsShellCallRule shellRule = new JenkinsShellCallRule(this)
|
|
private JenkinsReadFileRule readFileRule = new JenkinsReadFileRule(this, "./")
|
|
private JenkinsLoggingRule loggingRule = new JenkinsLoggingRule(this)
|
|
|
|
@Rule
|
|
public RuleChain rules = Rules
|
|
.getCommonRules(this)
|
|
.around(stepRule)
|
|
.around(writeFileRule)
|
|
.around(thrown)
|
|
.around(shellRule)
|
|
.around(readFileRule)
|
|
.around(loggingRule)
|
|
|
|
|
|
@Before
|
|
void init() {
|
|
|
|
def examplePipelineConfig = new File('test/resources/test_pipeline_config.yml').text
|
|
|
|
helper.registerAllowedMethod("libraryResource", [String], { fileName ->
|
|
switch(fileName) {
|
|
case 'default_pipeline_environment.yml': return "default: 'config'"
|
|
case 'custom.yml': return "custom: 'myConfig'"
|
|
case 'notFound.yml': throw new hudson.AbortException('No such library resource notFound could be found')
|
|
default: return "the:'end'"
|
|
}
|
|
})
|
|
|
|
helper.registerAllowedMethod("readYaml", [Map], { Map parameters ->
|
|
Yaml yamlParser = new Yaml()
|
|
if (parameters.text) {
|
|
return yamlParser.load(parameters.text)
|
|
} else if(parameters.file) {
|
|
if(parameters.file == '.pipeline/default_pipeline_environment.yml') return [default: 'config']
|
|
else if (parameters.file == '.pipeline/custom.yml') return [custom: 'myConfig']
|
|
} else {
|
|
throw new IllegalArgumentException("Key 'text' and 'file' are both missing in map ${m}.")
|
|
}
|
|
usedConfigFile = parameters.file
|
|
return yamlParser.load(examplePipelineConfig)
|
|
})
|
|
}
|
|
|
|
@Test
|
|
void testIsYamlConfigurationAvailable() throws Exception {
|
|
|
|
helper.registerAllowedMethod("fileExists", [String], { String path ->
|
|
return path.endsWith('.pipeline/config.yml')
|
|
})
|
|
|
|
stepRule.step.setupCommonPipelineEnvironment(script: nullScript)
|
|
|
|
assertEquals('.pipeline/config.yml', usedConfigFile)
|
|
assertNotNull(nullScript.commonPipelineEnvironment.configuration)
|
|
assertEquals('develop', nullScript.commonPipelineEnvironment.configuration.general.productiveBranch)
|
|
assertEquals('my-maven-docker', nullScript.commonPipelineEnvironment.configuration.steps.mavenExecute.dockerImage)
|
|
}
|
|
|
|
@Test
|
|
void testWorksAlsoWithYamlFileEnding() throws Exception {
|
|
|
|
helper.registerAllowedMethod("fileExists", [String], { String path ->
|
|
return path.endsWith('.pipeline/config.yaml')
|
|
})
|
|
|
|
stepRule.step.setupCommonPipelineEnvironment(script: nullScript)
|
|
|
|
assertEquals('.pipeline/config.yaml', usedConfigFile)
|
|
assertNotNull(nullScript.commonPipelineEnvironment.configuration)
|
|
assertEquals('develop', nullScript.commonPipelineEnvironment.configuration.general.productiveBranch)
|
|
assertEquals('my-maven-docker', nullScript.commonPipelineEnvironment.configuration.steps.mavenExecute.dockerImage)
|
|
}
|
|
|
|
@Test
|
|
void testAttemptToLoadNonExistingConfigFile() {
|
|
|
|
helper.registerAllowedMethod("fileExists", [String], { String path ->
|
|
switch(path) {
|
|
case 'default_pipeline_environment.yml': return false
|
|
case 'custom.yml': return false
|
|
case 'notFound.yml': return false
|
|
case '': throw new RuntimeException('cannot call fileExists with empty path')
|
|
default: return true
|
|
}
|
|
})
|
|
|
|
helper.registerAllowedMethod("handlePipelineStepErrors", [Map,Closure], { Map map, Closure closure ->
|
|
closure()
|
|
})
|
|
|
|
// Behavior documented here based on reality check
|
|
thrown.expect(hudson.AbortException.class)
|
|
thrown.expectMessage('No such library resource notFound could be found')
|
|
|
|
stepRule.step.setupCommonPipelineEnvironment(
|
|
script: nullScript,
|
|
customDefaults: 'notFound.yml'
|
|
)
|
|
}
|
|
|
|
@Test
|
|
void testInvalidEntriesInCustomDefaults() {
|
|
|
|
helper.registerAllowedMethod("fileExists", [String], { String path ->
|
|
switch(path) {
|
|
case 'default_pipeline_environment.yml': return false
|
|
case '': throw new RuntimeException('cannot call fileExists with empty path')
|
|
default: return true
|
|
}
|
|
})
|
|
|
|
helper.registerAllowedMethod("handlePipelineStepErrors", [Map,Closure], { Map map, Closure closure ->
|
|
closure()
|
|
})
|
|
|
|
helper.registerAllowedMethod("readYaml", [Map], { Map parameters ->
|
|
Yaml yamlParser = new Yaml()
|
|
if (parameters.text) {
|
|
return yamlParser.load(parameters.text)
|
|
} else if (parameters.file) {
|
|
if (parameters.file == '.pipeline/config-with-custom-defaults.yml') {
|
|
return [customDefaults: ['', true]]
|
|
}
|
|
}
|
|
throw new IllegalArgumentException("Unexpected invocation of readYaml step")
|
|
})
|
|
|
|
stepRule.step.setupCommonPipelineEnvironment(
|
|
script: nullScript,
|
|
configFile: '.pipeline/config-with-custom-defaults.yml'
|
|
)
|
|
|
|
assertEquals('WARNING: Ignoring invalid entry in custom defaults from files: \'\' \n' +
|
|
'WARNING: Ignoring invalid entry in custom defaults from files: \'true\' \n', loggingRule.getLog())
|
|
}
|
|
|
|
@Test
|
|
void testAttemptToLoadFileFromURL() {
|
|
helper.registerAllowedMethod("fileExists", [String], {String path ->
|
|
switch (path) {
|
|
case 'default_pipeline_environment.yml': return false
|
|
case '': throw new RuntimeException('cannot call fileExists with empty path')
|
|
default: return true
|
|
}
|
|
})
|
|
|
|
String customDefaultUrl = "https://url-to-my-config.com/my-config.yml"
|
|
boolean urlRequested = false
|
|
|
|
helper.registerAllowedMethod("httpRequest", [Map], {Map parameters ->
|
|
switch (parameters.url) {
|
|
case customDefaultUrl:
|
|
urlRequested = true
|
|
return [status: 200, content: "custom: 'myRemoteConfig'"]
|
|
default:
|
|
throw new IllegalArgumentException('wrong URL requested')
|
|
}
|
|
})
|
|
|
|
helper.registerAllowedMethod("readYaml", [Map], { Map parameters ->
|
|
Yaml yamlParser = new Yaml()
|
|
if (parameters.text) {
|
|
return yamlParser.load(parameters.text)
|
|
} else if (parameters.file) {
|
|
if (parameters.file == '.pipeline/config-with-custom-defaults.yml') {
|
|
return [customDefaults: "${customDefaultUrl}"]
|
|
}
|
|
if (parameters.file == '.pipeline/custom_default_from_url_0.yml') {
|
|
return [custom: 'myRemoteConfig']
|
|
}
|
|
}
|
|
throw new IllegalArgumentException("Unexpected invocation of readYaml step")
|
|
})
|
|
|
|
stepRule.step.setupCommonPipelineEnvironment(
|
|
script: nullScript,
|
|
customDefaults: 'custom.yml',
|
|
configFile: '.pipeline/config-with-custom-defaults.yml',
|
|
)
|
|
assertEquals("custom: 'myRemoteConfig'", writeFileRule.files['.pipeline/custom_default_from_url_0.yml'])
|
|
assertEquals('myRemoteConfig', DefaultValueCache.instance.defaultValues['custom'])
|
|
}
|
|
|
|
|
|
@Test
|
|
void inferBuildToolMaven() {
|
|
helper.registerAllowedMethod('fileExists', [String.class], { s ->
|
|
return s == "pom.xml"
|
|
})
|
|
setupCommonPipelineEnvironment.inferBuildTool(nullScript, [inferBuildTool: true])
|
|
assertEquals('maven', nullScript.commonPipelineEnvironment.buildTool)
|
|
}
|
|
|
|
@Test
|
|
void inferBuildToolMTA() {
|
|
helper.registerAllowedMethod('fileExists', [String.class], { s ->
|
|
return s == "mta.yaml"
|
|
})
|
|
setupCommonPipelineEnvironment.inferBuildTool(nullScript, [inferBuildTool: true])
|
|
assertEquals('mta', nullScript.commonPipelineEnvironment.buildTool)
|
|
}
|
|
|
|
@Test
|
|
void inferBuildToolNpm() {
|
|
helper.registerAllowedMethod('fileExists', [String.class], { s ->
|
|
return s == "package.json"
|
|
})
|
|
setupCommonPipelineEnvironment.inferBuildTool(nullScript, [inferBuildTool: true])
|
|
assertEquals('npm', nullScript.commonPipelineEnvironment.buildTool)
|
|
}
|
|
|
|
@Test
|
|
void inferBuildToolNone() {
|
|
helper.registerAllowedMethod('fileExists', [String.class], { s ->
|
|
return false
|
|
})
|
|
setupCommonPipelineEnvironment.inferBuildTool(nullScript, [inferBuildTool: true])
|
|
assertNull(nullScript.commonPipelineEnvironment.buildTool)
|
|
}
|
|
|
|
}
|
|
|