2018-06-26 16:02:27 +02:00
# checkChangeInDevelopment
## Description
2018-11-06 13:50:09 +01:00
2018-07-17 09:21:56 +02:00
Checks if a Change Document in SAP Solution Manager is in status 'in development'. The change document id is retrieved from the git commit history. The change document id
2018-06-26 16:02:27 +02:00
can also be provided via parameter `changeDocumentId` . Any value provided as parameter has a higher precedence than a value from the commit history.
By default the git commit messages between `origin/master` and `HEAD` are scanned for a line like `ChangeDocument : <changeDocumentId>` . The commit
2018-07-17 09:21:56 +02:00
range and the pattern can be configured. For details see 'parameters' table.
2018-06-26 16:02:27 +02:00
2018-11-09 16:10:01 +01:00
In case the change is not in status 'in development' an `hudson.AbortException` is thrown. In case `failIfStatusIsNotInDevelopment`
is set to `false` , no `hudson.AbortException` will be thrown. In this case there is only a message in the log stating the change is not in status 'in development'.
2018-06-26 16:02:27 +02:00
## Prerequisites
2018-11-06 13:50:09 +01:00
2018-06-26 16:02:27 +02:00
* **[Change Management Client 2.0.0 or compatible version ](http://central.maven.org/maven2/com/sap/devops/cmclient/dist.cli/ )** - available for download on Maven Central.
## Parameters
2018-11-06 13:50:09 +01:00
2018-06-26 16:02:27 +02:00
| parameter | mandatory | default | possible values |
| -------------------|-----------|--------------------------------------------------------|--------------------|
| `script` | yes | | |
| `changeDocumentId` | yes | | |
2018-07-17 09:21:56 +02:00
| `changeManagement/changeDocumentLabel` | no | `ChangeDocument\s?:` | regex pattern |
| `changeManagement/credentialsId` | yes | | |
| `changeManagement/endpoint` | yes | | |
| `changeManagement/git/from` | no | `origin/master` | |
| `changeManagement/git/to` | no | `HEAD` | |
| `changeManagement/git/format` | no | `%b` | see `git log --help` |
| `failIfStatusIsNotInDevelopment` | no | `true` | `true` , `false` |
2018-06-26 16:02:27 +02:00
* `script` - The common script environment of the Jenkinsfile running. Typically the reference to the script calling the pipeline step is provided with the `this` parameter, as in `script: this` . This allows the function to access the [`commonPipelineEnvironment` ](commonPipelineEnvironment.md ) for retrieving, for example, configuration parameters.
* `changeDocumentId` - The id of the change document to transport. If not provided, it is retrieved from the git commit history.
2018-07-17 09:21:56 +02:00
* `changeManagement/changeDocumentLabel` - A pattern used for identifying lines holding the change document id.
* `changeManagement/credentialsId` - The id of the credentials to connect to the Solution Manager. The credentials needs to be maintained on Jenkins.
* `changeManagement/endpoint` - The address of the Solution Manager.
* `changeManagement/git/from` - The starting point for retrieving the change document id
* `changeManagement/git/to` - The end point for retrieving the change document id
* `changeManagement/git/format` - Specifies what part of the commit is scanned. By default the body of the commit message is scanned.
* `failIfStatusIsNotInDevelopment` - when set to `false` the step will not fail in case the step is not in status 'in development'.
2018-06-26 16:02:27 +02:00
## Step configuration
2018-11-06 13:50:09 +01:00
2018-07-17 09:21:56 +02:00
The step is configured using a customer configuration file provided as
resource in an custom shared library.
2018-06-26 16:02:27 +02:00
2018-11-06 13:50:09 +01:00
```groovy
2018-12-05 13:37:15 +01:00
@Library ('piper-lib-os@master ') _
2018-07-17 09:21:56 +02:00
// the shared lib containing the additional configuration
// needs to be configured in Jenkins
2018-11-06 13:50:09 +01:00
@Library ('foo@master ') __
2018-07-17 09:21:56 +02:00
// inside the shared lib denoted by 'foo' the additional configuration file
// needs to be located under 'resources' ('resoures/myConfig.yml')
prepareDefaultValues script: this,
customDefaults: 'myConfig.yml'
```
2018-11-06 13:50:09 +01:00
Example content of `'resources/myConfig.yml'` in branch `'master'` of the repository denoted by
`'foo'` :
2018-07-17 09:21:56 +02:00
2018-11-06 13:50:09 +01:00
```yaml
2018-07-17 09:21:56 +02:00
general:
changeManagement:
changeDocumentLabel: 'ChangeDocument\s?:'
cmClientOpts: '-Djavax.net.ssl.trustStore=< path to truststore > '
credentialsId: 'CM'
endpoint: 'https://example.org/cm'
git:
from: 'HEAD~1'
to: 'HEAD'
format: '%b'
```
The properties configured in section `'general/changeManagement'` are shared between all change managment related steps.
The properties can also be configured on a per-step basis:
2018-11-06 13:50:09 +01:00
```yaml
2018-07-17 09:21:56 +02:00
[...]
steps:
checkChangeInDevelopment:
changeManagement:
endpoint: 'https://example.org/cm'
[...]
failIfStatusIsNotInDevelopment: true
```
The parameters can also be provided when the step is invoked. For examples see below.
2018-06-26 16:02:27 +02:00
## Exceptions
2018-11-06 13:50:09 +01:00
2018-06-26 16:02:27 +02:00
* `AbortException` :
2018-11-06 13:50:09 +01:00
* If the change id is not provided via parameter and if the change document id cannot be retrieved from the commit history.
* If the change is not in status `in development` . In this case no exception will be thrown when `failIfStatusIsNotInDevelopment` is set to `false` .
2018-07-17 09:21:56 +02:00
* `IllegalArgumentException` :
2018-11-06 13:50:09 +01:00
* If a mandatory property is not provided.
2018-07-17 09:21:56 +02:00
## Examples
2018-11-06 13:50:09 +01:00
2018-07-17 09:21:56 +02:00
```groovy
// simple case. All mandatory parameters provided via
// configuration, changeDocumentId provided via commit
// history
checkChangeInDevelopment script:this
```
2018-06-26 16:02:27 +02:00
```groovy
2018-07-17 09:21:56 +02:00
// explict endpoint provided, we search for changeDocumentId
// starting at the previous commit (HEAD~1) rather than on
// 'origin/master' (the default).
2018-06-26 16:02:27 +02:00
checkChangeInDevelopment script:this
2018-07-17 09:21:56 +02:00
changeManagement: [
endpoint: 'https:example.org/cm'
git: [
from: 'HEAD~1'
]
]
2018-06-26 16:02:27 +02:00
```