2020-07-14 10:58:57 +02:00
# ${docGenStepName}
## ${docGenDescription}
## Prerequisites
2021-12-15 10:55:53 +01:00
* [ATC ](https://help.sap.com/viewer/c238d694b825421f940829321ffa326a/202110.000/en-US/4ec5711c6e391014adc9fffe4e204223.html ) checks are enabled in transaction ATC in the ABAP systems where you want to use the step.
* [gCTS ](https://help.sap.com/viewer/4a368c163b08418890a406d413933ba7/latest/en-US/26c9c6c5a89244cb9506c253d36c3fda.html ) is available and configured in the ABAP systems where you want to use the step.
* The [Warnings-Next-Generation ](https://plugins.jenkins.io/warnings-ng/ ) Plugin is installed in Jenkins.
2020-07-14 10:58:57 +02:00
## ${docGenParameters}
## ${docGenConfiguration}
## ${docJenkinsPluginDependencies}
## Example
Example configuration for the use in a Jenkinsfile.
```groovy
gctsExecuteABAPUnitTests(
script: this,
2020-07-22 10:56:20 +02:00
host: 'https://abap.server.com:port',
client: '000',
2020-07-14 10:58:57 +02:00
abapCredentialsId: 'ABAPUserPasswordCredentialsId',
2021-12-15 10:55:53 +01:00
repository: 'myrepo',
2022-02-22 09:58:22 +01:00
scope: 'remoteChangedObjects',
2021-12-15 10:55:53 +01:00
commit: "${GIT_COMMIT}",
workspace: "${WORKSPACE}"
2020-07-14 10:58:57 +02:00
)
```
Example configuration for the use in a yaml config file (such as `.pipeline/config.yaml` ).
```yaml
steps:
< ... >
gctsExecuteABAPUnitTests:
2020-07-22 10:56:20 +02:00
host: 'https://abap.server.com:port'
client: '000'
2020-07-14 10:58:57 +02:00
abapCredentialsId: 'ABAPUserPasswordCredentialsId'
2020-07-22 10:56:20 +02:00
repository: 'myrepo'
2021-12-15 10:55:53 +01:00
scope: 'remoteChangedObjects'
commit: '38abb4814ae46b98e8e6c3e718cf1782afa9ca90'
workspace: '/var/jenkins_home/workspace/myFirstPipeline'
```
Example configuration when you define scope: *repository* or *packages* . For these two cases you do not need to specify a *commit* .
```yaml
steps:
< ... >
gctsExecuteABAPUnitTests:
host: 'https://abap.server.com:port'
client: '000'
abapCredentialsId: 'ABAPUserPasswordCredentialsId'
repository: 'myrepo'
scope: 'repository'
workspace: '/var/jenkins_home/workspace/myFirstPipeline'
```
Example configuration when you want to execute only ABAP Unit Test.
```yaml
steps:
< ... >
gctsExecuteABAPUnitTests:
host: 'https://abap.server.com:port'
client: '000'
abapCredentialsId: 'ABAPUserPasswordCredentialsId'
repository: 'myrepo'
atcCheck: false
scope: 'packages'
workspace: '/var/jenkins_home/workspace/myFirstPipeline'
```
Example configuration for the use of *recordIssue* step to make the findings visible in Jenkins interface.
```groovy
stage('ABAP Unit Tests') {
steps{
script{
try{
gctsExecuteABAPUnitTests(
script: this,
commit: "${GIT_COMMIT}",
workspace: "${WORKSPACE}")
}
catch (Exception ex) {
currentBuild.result = 'FAILURE'
unstable(message: "${STAGE_NAME} is unstable")
}
}
}
}
stage('Results in Checkstyle') {
steps{
recordIssues(
enabledForFailure: true, aggregatingResults: true,
tools: [checkStyle(pattern: 'ATCResults.xml', reportEncoding: 'UTF8'),checkStyle(pattern: 'AUnitResults.xml', reportEncoding: 'UTF8')]
)
}
}
}
```
**Note:** If you have disabled *atcCheck* or *aUnitTest* , than you also need to remove the corresponding *ATCResults.xml* or *AUnitResults.xml* from *recordIssues* step. In the example below the *atcCheck* was disabled, so *ATCResults.xml* was removed.
```groovy
recordIssues(
enabledForFailure: true, aggregatingResults: true,
tools: [checkStyle(pattern: 'AUnitResults.xml', reportEncoding: 'UTF8')]
)
2020-07-14 10:58:57 +02:00
```