mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-12 10:55:20 +02:00
81 lines
3.2 KiB
Groovy
81 lines
3.2 KiB
Groovy
|
import com.sap.piper.Utils
|
||
|
import com.sap.piper.ConfigurationHelper
|
||
|
import groovy.text.SimpleTemplateEngine
|
||
|
import groovy.transform.Field
|
||
|
|
||
|
@Field String STEP_NAME = 'batsExecuteTests'
|
||
|
@Field Set STEP_CONFIG_KEYS = [
|
||
|
'dockerImage', //
|
||
|
'dockerWorkspace',
|
||
|
'envVars',
|
||
|
'failOnError',
|
||
|
'gitBranch',
|
||
|
'gitSshKeyCredentialsId',
|
||
|
'outputFormat',
|
||
|
'repository',
|
||
|
'stashContent',
|
||
|
'testPackage',
|
||
|
'testPath',
|
||
|
'testRepository'
|
||
|
]
|
||
|
@Field Set PARAMETER_KEYS = STEP_CONFIG_KEYS
|
||
|
|
||
|
def call(Map parameters = [:]) {
|
||
|
handlePipelineStepErrors (stepName: STEP_NAME, stepParameters: parameters) {
|
||
|
|
||
|
def utils = parameters.juStabUtils ?: new Utils()
|
||
|
def script = parameters.script ?: [commonPipelineEnvironment: commonPipelineEnvironment]
|
||
|
|
||
|
Map config = ConfigurationHelper
|
||
|
.loadStepDefaults(this)
|
||
|
.mixinGeneralConfig(script.commonPipelineEnvironment, STEP_CONFIG_KEYS)
|
||
|
.mixinStepConfig(script.commonPipelineEnvironment, STEP_CONFIG_KEYS)
|
||
|
.mixinStageConfig(script.commonPipelineEnvironment, parameters.stageName?:env.STAGE_NAME, STEP_CONFIG_KEYS)
|
||
|
.mixin(parameters, PARAMETER_KEYS)
|
||
|
.use()
|
||
|
|
||
|
// report to SWA
|
||
|
utils.pushToSWA([step: STEP_NAME], config)
|
||
|
|
||
|
script.commonPipelineEnvironment.setInfluxStepData('bats', false)
|
||
|
|
||
|
|
||
|
if (config.testRepository) {
|
||
|
def gitParameters = [url: config.testRepository]
|
||
|
if (config.gitSshKeyCredentialsId?.length()>0) gitParameters.credentialsId = config.gitSshKeyCredentialsId
|
||
|
if (config.gitBranch?.length()>0) gitParameters.branch = config.gitBranch
|
||
|
git gitParameters
|
||
|
stash 'batsTests'
|
||
|
config.stashContent = ['batsTests']
|
||
|
} else {
|
||
|
config.stashContent = utils.unstashAll(config.stashContent)
|
||
|
}
|
||
|
|
||
|
//resolve commonPipelineEnvironment references in envVars
|
||
|
config.envVarList = []
|
||
|
config.envVars.each {e ->
|
||
|
def envValue = SimpleTemplateEngine.newInstance().createTemplate(e.getValue()).make(commonPipelineEnvironment: script.commonPipelineEnvironment).toString()
|
||
|
config.envVarList.add("${e.getKey()}=${envValue}")
|
||
|
}
|
||
|
|
||
|
withEnv(config.envVarList) {
|
||
|
sh "git clone ${config.repository}"
|
||
|
try {
|
||
|
sh "bats-core/bin/bats --recursive --tap ${config.testPath} > 'TEST-${config.testPackage}.tap'"
|
||
|
script.commonPipelineEnvironment.setInfluxStepData('bats', true)
|
||
|
} catch (err) {
|
||
|
echo "[${STEP_NAME}] One or more tests failed"
|
||
|
if (config.failOnError) throw err
|
||
|
} finally {
|
||
|
sh "cat 'TEST-${config.testPackage}.tap'"
|
||
|
if (config.outputFormat == 'junit') {
|
||
|
dockerExecute(dockerImage: config.dockerImage, dockerWorkspace: config.dockerWorkspace, stashContent: config.stashContent) {
|
||
|
sh "npm install tap-xunit -g"
|
||
|
sh "cat 'TEST-${config.testPackage}.tap' | tap-xunit --package='${config.testPackage}' > TEST-${config.testPackage}.xml"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|