mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-14 11:03:09 +02:00
42 lines
1.7 KiB
Groovy
42 lines
1.7 KiB
Groovy
|
import groovy.transform.Field
|
||
|
import com.sap.piper.Utils
|
||
|
import com.sap.piper.ConfigurationHelper
|
||
|
import com.sap.piper.ConfigurationLoader
|
||
|
|
||
|
import static com.sap.piper.Prerequisites.checkScript
|
||
|
|
||
|
@Field String STEP_NAME = getClass().getName()
|
||
|
@Field Set GENERAL_CONFIG_KEYS = []
|
||
|
@Field STAGE_STEP_KEYS = [
|
||
|
/** Starts an AUnit test run on the ABAP Environment instance */
|
||
|
'abapEnvironmentRunAUnitTest',
|
||
|
/** Creates Communication Arrangements for ABAP Environment instance via the cloud foundry command line interface */
|
||
|
'cloudFoundryCreateServiceKey',
|
||
|
/** Parameter for host config */
|
||
|
'host'
|
||
|
]
|
||
|
@Field Set STEP_CONFIG_KEYS = GENERAL_CONFIG_KEYS.plus(STAGE_STEP_KEYS)
|
||
|
@Field Set PARAMETER_KEYS = STEP_CONFIG_KEYS
|
||
|
|
||
|
void call(Map parameters = [:]) {
|
||
|
def script = checkScript(this, parameters) ?: this
|
||
|
def stageName = parameters.stageName?:env.STAGE_NAME
|
||
|
|
||
|
// load default & individual configuration
|
||
|
Map config = ConfigurationHelper.newInstance(this)
|
||
|
.loadStepDefaults([:], stageName)
|
||
|
.mixin(ConfigurationLoader.defaultStageConfiguration(script, stageName))
|
||
|
.mixinGeneralConfig(script.commonPipelineEnvironment, GENERAL_CONFIG_KEYS)
|
||
|
.mixinStepConfig(script.commonPipelineEnvironment, STEP_CONFIG_KEYS)
|
||
|
.mixinStageConfig(script.commonPipelineEnvironment, stageName, STEP_CONFIG_KEYS)
|
||
|
.mixin(parameters, PARAMETER_KEYS)
|
||
|
.use()
|
||
|
|
||
|
piperStageWrapper (script: script, stageName: stageName, stashContent: [], stageLocking: false) {
|
||
|
if (!config.host) {
|
||
|
cloudFoundryCreateServiceKey script: parameters.script
|
||
|
}
|
||
|
abapEnvironmentRunAUnitTest script: parameters.script
|
||
|
}
|
||
|
}
|