mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-14 11:03:09 +02:00
137 lines
5.2 KiB
Groovy
137 lines
5.2 KiB
Groovy
import static com.sap.piper.Prerequisites.checkScript
|
|
|
|
import com.sap.piper.ConfigurationHelper
|
|
import com.sap.piper.GenerateDocumentation
|
|
import com.sap.piper.GitUtils
|
|
import com.sap.piper.Utils
|
|
import groovy.text.GStringTemplateEngine
|
|
import groovy.transform.Field
|
|
|
|
@Field String STEP_NAME = getClass().getName()
|
|
|
|
@Field Set GENERAL_CONFIG_KEYS = STEP_CONFIG_KEYS
|
|
|
|
@Field Set STEP_CONFIG_KEYS = [
|
|
/** @see dockerExecute */
|
|
'dockerImage',
|
|
/** @see dockerExecute*/
|
|
'dockerEnvVars',
|
|
/** @see dockerExecute */
|
|
'dockerOptions',
|
|
/** @see dockerExecute*/
|
|
'dockerWorkspace',
|
|
/**
|
|
* Defines the behavior, in case tests fail.
|
|
* @possibleValues `true`, `false`
|
|
*/
|
|
'failOnError',
|
|
/**
|
|
* Only if `testRepository` is provided: Branch of testRepository, defaults to master.
|
|
*/
|
|
'gitBranch',
|
|
/**
|
|
* Only if `testRepository` is provided: Credentials for a protected testRepository
|
|
* @possibleValues Jenkins credentials id
|
|
*/
|
|
'gitSshKeyCredentialsId',
|
|
/**
|
|
* The test collection that should be executed. This could also be a file pattern.
|
|
*/
|
|
'newmanCollection',
|
|
/**
|
|
* Specify an environment file path or URL. Environments provide a set of variables that one can use within collections.
|
|
* see also [Newman docs](https://github.com/postmanlabs/newman#newman-run-collection-file-source-options)
|
|
*/
|
|
'newmanEnvironment',
|
|
/**
|
|
* Specify the file path or URL for global variables. Global variables are similar to environment variables but have a lower precedence and can be overridden by environment variables having the same name.
|
|
* see also [Newman docs](https://github.com/postmanlabs/newman#newman-run-collection-file-source-options)
|
|
*/
|
|
'newmanGlobals',
|
|
/**
|
|
* The shell command that will be executed inside the docker container to install Newman.
|
|
*/
|
|
'newmanInstallCommand',
|
|
/**
|
|
* The newman command that will be executed inside the docker container.
|
|
*/
|
|
'newmanRunCommand',
|
|
/**
|
|
* If specific stashes should be considered for the tests, you can pass this via this parameter.
|
|
*/
|
|
'stashContent',
|
|
/**
|
|
* Define an additional repository where the test implementation is located.
|
|
* For protected repositories the `testRepository` needs to contain the ssh git url.
|
|
*/
|
|
'testRepository'
|
|
]
|
|
|
|
@Field Set PARAMETER_KEYS = STEP_CONFIG_KEYS
|
|
|
|
/**
|
|
* This script executes [Postman](https://www.getpostman.com) tests from a collection via the [Newman](https://www.getpostman.com/docs/v6/postman/collection_runs/command_line_integration_with_newman) command line tool.
|
|
*/
|
|
@GenerateDocumentation
|
|
void call(Map parameters = [:]) {
|
|
handlePipelineStepErrors(stepName: STEP_NAME, stepParameters: parameters) {
|
|
|
|
def script = checkScript(this, parameters) ?: this
|
|
|
|
def utils = parameters?.juStabUtils ?: new Utils()
|
|
|
|
// load default & individual configuration
|
|
Map config = ConfigurationHelper.newInstance(this)
|
|
.loadStepDefaults()
|
|
.mixinGeneralConfig(script.commonPipelineEnvironment, GENERAL_CONFIG_KEYS)
|
|
.mixinStepConfig(script.commonPipelineEnvironment, STEP_CONFIG_KEYS)
|
|
.mixinStageConfig(script.commonPipelineEnvironment, parameters.stageName?:env.STAGE_NAME, STEP_CONFIG_KEYS)
|
|
.mixin(parameters, PARAMETER_KEYS)
|
|
.use()
|
|
|
|
new Utils().pushToSWA([
|
|
step: STEP_NAME,
|
|
stepParamKey1: 'scriptMissing',
|
|
stepParam1: parameters?.script == null
|
|
], config)
|
|
|
|
config.stashContent = config.testRepository
|
|
?[GitUtils.handleTestRepository(this, config)]
|
|
:utils.unstashAll(config.stashContent)
|
|
|
|
List collectionList = findFiles(glob: config.newmanCollection)?.toList()
|
|
if (collectionList.isEmpty()) {
|
|
error "[${STEP_NAME}] No collection found with pattern '${config.newmanCollection}'"
|
|
} else {
|
|
echo "[${STEP_NAME}] Found files ${collectionList}"
|
|
}
|
|
|
|
dockerExecute(
|
|
script: script,
|
|
dockerImage: config.dockerImage,
|
|
dockerEnvVars: config.dockerEnvVars,
|
|
dockerOptions: config.dockerOptions,
|
|
dockerWorkspace: config.dockerWorkspace,
|
|
stashContent: config.stashContent
|
|
) {
|
|
sh returnStatus: true, script: """
|
|
node --version
|
|
npm --version
|
|
"""
|
|
sh "NPM_CONFIG_PREFIX=~/.npm-global ${config.newmanInstallCommand}"
|
|
for(String collection : collectionList){
|
|
def collectionDisplayName = collection.toString().replace(File.separatorChar,(char)'_').tokenize('.').first()
|
|
// resolve templates
|
|
def command = GStringTemplateEngine.newInstance()
|
|
.createTemplate(config.newmanRunCommand)
|
|
.make([
|
|
config: config.plus([newmanCollection: collection]),
|
|
collectionDisplayName: collectionDisplayName
|
|
]).toString()
|
|
if(!config.failOnError) command += ' --suppress-exit-code'
|
|
sh "PATH=\$PATH:~/.npm-global/bin newman ${command}"
|
|
}
|
|
}
|
|
}
|
|
}
|