mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-12 10:55:20 +02:00
452b2a1ef5
* refactor: rebranding rebranding from SAP Cloud Platform to SAP BTP * refactor: rebranding from SCP to BTP Co-authored-by: tiloKo <70266685+tiloKo@users.noreply.github.com>
62 lines
2.6 KiB
Groovy
62 lines
2.6 KiB
Groovy
import groovy.transform.Field
|
|
import com.sap.piper.Utils
|
|
import com.sap.piper.ConfigurationHelper
|
|
|
|
import static com.sap.piper.Prerequisites.checkScript
|
|
|
|
@Field String STEP_NAME = getClass().getName()
|
|
@Field Set GENERAL_CONFIG_KEYS = [
|
|
/** Creates a SAP BTP ABAP Environment system via the cloud foundry command line interface */
|
|
'abapEnvironmentCreateSystem',
|
|
/** Deletes a SAP BTP ABAP Environment system via the cloud foundry command line interface */
|
|
'cloudFoundryDeleteService',
|
|
/** If set to true, a confirmation is required to delete the system */
|
|
'confirmDeletion',
|
|
/** If set to true, the system is never deleted */
|
|
'debug',
|
|
'testBuild' // Parameter for test execution mode, if true stage will be skipped
|
|
]
|
|
@Field Set STAGE_STEP_KEYS = GENERAL_CONFIG_KEYS
|
|
@Field Set STEP_CONFIG_KEYS = STAGE_STEP_KEYS
|
|
@Field Set PARAMETER_KEYS = STEP_CONFIG_KEYS
|
|
/**
|
|
* This stage creates a system for Integration Tests. The (custom) tests themselves can be added via a stage extension.
|
|
*/
|
|
void call(Map parameters = [:]) {
|
|
def script = checkScript(this, parameters) ?: this
|
|
def stageName = parameters.stageName?:env.STAGE_NAME
|
|
|
|
Map config = ConfigurationHelper.newInstance(this)
|
|
.loadStepDefaults()
|
|
.mixinGeneralConfig(script.commonPipelineEnvironment, GENERAL_CONFIG_KEYS)
|
|
.mixinStageConfig(script.commonPipelineEnvironment, stageName, STEP_CONFIG_KEYS)
|
|
.mixin(parameters, PARAMETER_KEYS)
|
|
.addIfEmpty('confirmDeletion', true)
|
|
.addIfEmpty('debug', false)
|
|
.addIfEmpty('testBuild', false)
|
|
.use()
|
|
|
|
if (config.testBuild) {
|
|
echo "Stage 'Integration Tests' skipped as parameter 'testBuild' is active"
|
|
} else {
|
|
piperStageWrapper (script: script, stageName: stageName, stashContent: [], stageLocking: false) {
|
|
try {
|
|
abapEnvironmentCreateSystem(script: parameters.script, includeAddon: true)
|
|
cloudFoundryCreateServiceKey(script: parameters.script)
|
|
abapEnvironmentBuild(script: parameters.script, phase: 'GENERATION', downloadAllResultFiles: true, useFieldsOfAddonDescriptor: '[{"use":"Name","renameTo":"SWC"}]')
|
|
} catch (Exception e) {
|
|
echo "Deployment test of add-on product failed."
|
|
throw e
|
|
} finally {
|
|
if (config.confirmDeletion) {
|
|
input message: "Deployment test has been executed. Once you proceed, the test system will be deleted."
|
|
}
|
|
if (!config.debug) {
|
|
cloudFoundryDeleteService script: parameters.script
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|