mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-14 11:03:09 +02:00
ef0b1bd9dd
Starting point for that refactoring: it turned out that the tests was not independent. The DefaultValueCache which is a singleton keeps the status over various tests. Success of test execution depends on the order test execution. We have now * a dedicated rule for resetting the default value cache * JenkinsConfiguration rule (which already provided facilities for dealing with the configuration) has been replaced by a readYaml rule. From the PipelineUnit test framework we get already a handler for libraryResource, which is also part of the setup of the default values. * An auxiliar class which combines the * JenkinsSetupRule (registers the lib) * JenkinsReadYamlRule (provides facilities for Yaml parsing) * JenkinsResetDefaultValueCacheRule (cleans up the DefaultValueCache) into a rule chain. By using this rule chain we ensure that our setup OK (piper lib registered, and default config can be setup in a clean way).
106 lines
3.1 KiB
Groovy
106 lines
3.1 KiB
Groovy
#!groovy
|
|
import com.lesfurets.jenkins.unit.BasePipelineTest
|
|
import com.sap.piper.DefaultValueCache
|
|
import org.junit.Before
|
|
import org.junit.Rule
|
|
import org.junit.Test
|
|
import org.junit.rules.RuleChain
|
|
import util.JenkinsLoggingRule
|
|
import util.Rules
|
|
|
|
import static org.junit.Assert.assertTrue
|
|
import static org.junit.Assert.assertEquals
|
|
|
|
class InfluxWriteDataTest extends BasePipelineTest {
|
|
|
|
Script influxWriteDataScript
|
|
|
|
Map fileMap = [:]
|
|
Map stepMap = [:]
|
|
String echoLog = ''
|
|
|
|
def cpe
|
|
|
|
public JenkinsLoggingRule loggingRule = new JenkinsLoggingRule(this)
|
|
|
|
@Rule
|
|
public RuleChain ruleChain = Rules.getCommonRules(this)
|
|
.around(loggingRule)
|
|
|
|
@Before
|
|
void init() throws Exception {
|
|
|
|
//
|
|
// Currently we have dependencies between the tests since
|
|
// DefaultValueCache is a singleton which keeps its status
|
|
// for all the tests. Depending on the test order we fail.
|
|
// As long as this status remains we need:
|
|
DefaultValueCache.reset()
|
|
|
|
//reset stepMap
|
|
stepMap = [:]
|
|
//reset fileMap
|
|
fileMap = [:]
|
|
|
|
helper.registerAllowedMethod('readYaml', [Map.class], { map ->
|
|
return [
|
|
general: [productiveBranch: 'develop'],
|
|
steps : [influxWriteData: [influxServer: 'testInflux']]
|
|
]
|
|
})
|
|
|
|
helper.registerAllowedMethod('writeFile', [Map.class],{m -> fileMap[m.file] = m.text})
|
|
helper.registerAllowedMethod('step', [Map.class],{m -> stepMap = m})
|
|
|
|
cpe = loadScript('commonPipelineEnvironment.groovy').commonPipelineEnvironment
|
|
influxWriteDataScript = loadScript("influxWriteData.groovy")
|
|
}
|
|
|
|
|
|
@Test
|
|
void testInfluxWriteDataWithDefault() throws Exception {
|
|
|
|
cpe.setArtifactVersion('1.2.3')
|
|
influxWriteDataScript.call(script: [commonPipelineEnvironment: cpe])
|
|
|
|
assertTrue(loggingRule.log.contains('Artifact version: 1.2.3'))
|
|
|
|
assertEquals('testInflux', stepMap.selectedTarget)
|
|
assertEquals(null, stepMap.customPrefix)
|
|
assertEquals([:], stepMap.customData)
|
|
assertEquals([pipeline_data:[:]], stepMap.customDataMap)
|
|
|
|
assertTrue(fileMap.containsKey('jenkins_data.json'))
|
|
assertTrue(fileMap.containsKey('pipeline_data.json'))
|
|
|
|
assertJobStatusSuccess()
|
|
}
|
|
|
|
@Test
|
|
void testInfluxWriteDataNoInflux() throws Exception {
|
|
|
|
cpe.setArtifactVersion('1.2.3')
|
|
influxWriteDataScript.call(script: [commonPipelineEnvironment: cpe], influxServer: '')
|
|
|
|
assertEquals(0, stepMap.size())
|
|
|
|
assertTrue(fileMap.containsKey('jenkins_data.json'))
|
|
assertTrue(fileMap.containsKey('pipeline_data.json'))
|
|
|
|
assertJobStatusSuccess()
|
|
}
|
|
|
|
@Test
|
|
void testInfluxWriteDataNoArtifactVersion() throws Exception {
|
|
|
|
influxWriteDataScript.call(script: [commonPipelineEnvironment: cpe])
|
|
|
|
assertEquals(0, stepMap.size())
|
|
assertEquals(0, fileMap.size())
|
|
|
|
assertTrue(loggingRule.log.contains('no artifact version available -> exiting writeInflux without writing data'))
|
|
|
|
assertJobStatusSuccess()
|
|
}
|
|
}
|