2018-06-20 11:52:11 +02:00
|
|
|
import org.junit.Before
|
|
|
|
import org.junit.Rule
|
|
|
|
import org.junit.Test
|
|
|
|
import org.junit.rules.ExpectedException
|
|
|
|
import org.junit.rules.RuleChain
|
|
|
|
|
2018-09-25 10:44:53 +02:00
|
|
|
import com.sap.piper.cm.BackendType
|
2018-07-12 15:23:12 +02:00
|
|
|
import com.sap.piper.cm.ChangeManagement
|
|
|
|
import com.sap.piper.cm.ChangeManagementException
|
|
|
|
|
2018-06-20 11:52:11 +02:00
|
|
|
import util.BasePiperTest
|
2018-07-13 13:27:21 +02:00
|
|
|
import util.JenkinsCredentialsRule
|
2018-06-20 11:52:11 +02:00
|
|
|
import util.JenkinsStepRule
|
|
|
|
import util.JenkinsLoggingRule
|
2018-08-31 10:22:43 +02:00
|
|
|
import util.JenkinsReadYamlRule
|
2018-06-20 11:52:11 +02:00
|
|
|
import util.Rules
|
|
|
|
|
|
|
|
import hudson.AbortException
|
2018-07-12 15:23:12 +02:00
|
|
|
import hudson.scm.NullSCM
|
2018-06-20 11:52:11 +02:00
|
|
|
|
|
|
|
public class TransportRequestReleaseTest extends BasePiperTest {
|
|
|
|
|
|
|
|
private ExpectedException thrown = new ExpectedException()
|
2019-01-22 10:25:42 +02:00
|
|
|
private JenkinsStepRule stepRule = new JenkinsStepRule(this)
|
2019-01-22 10:22:15 +02:00
|
|
|
private JenkinsLoggingRule loggingRule = new JenkinsLoggingRule(this)
|
2018-06-20 11:52:11 +02:00
|
|
|
|
|
|
|
@Rule
|
|
|
|
public RuleChain ruleChain = Rules.getCommonRules(this)
|
2018-08-31 10:22:43 +02:00
|
|
|
.around(new JenkinsReadYamlRule(this))
|
2018-06-20 11:52:11 +02:00
|
|
|
.around(thrown)
|
2019-01-22 10:25:42 +02:00
|
|
|
.around(stepRule)
|
2019-01-22 10:22:15 +02:00
|
|
|
.around(loggingRule)
|
2018-07-13 13:27:21 +02:00
|
|
|
.around(new JenkinsCredentialsRule(this)
|
|
|
|
.withCredentials('CM', 'anonymous', '********'))
|
2018-06-20 11:52:11 +02:00
|
|
|
|
|
|
|
@Before
|
|
|
|
public void setup() {
|
|
|
|
|
2018-07-17 09:21:56 +02:00
|
|
|
nullScript.commonPipelineEnvironment.configuration = [general:
|
|
|
|
[changeManagement:
|
2018-06-20 11:52:11 +02:00
|
|
|
[
|
2018-06-28 16:24:14 +02:00
|
|
|
credentialsId: 'CM',
|
2018-09-28 14:06:06 +02:00
|
|
|
type: 'SOLMAN',
|
2018-06-28 16:24:14 +02:00
|
|
|
endpoint: 'https://example.org/cm'
|
2018-06-20 11:52:11 +02:00
|
|
|
]
|
|
|
|
]
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void changeIdNotProvidedTest() {
|
|
|
|
|
2018-07-10 16:33:23 +02:00
|
|
|
ChangeManagement cm = new ChangeManagement(nullScript) {
|
|
|
|
String getChangeDocumentId(String from,
|
|
|
|
String to,
|
|
|
|
String label,
|
|
|
|
String format) {
|
|
|
|
throw new ChangeManagementException('Cannot retrieve change documentId')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-12 08:54:04 +02:00
|
|
|
thrown.expect(IllegalArgumentException)
|
2018-07-19 10:06:40 +02:00
|
|
|
thrown.expectMessage("Change document id not provided (parameter: 'changeDocumentId' or via commit history).")
|
2018-06-20 11:52:11 +02:00
|
|
|
|
2019-01-22 10:25:42 +02:00
|
|
|
stepRule.step.transportRequestRelease(script: nullScript, transportRequestId: '001', cmUtils: cm)
|
2018-06-20 11:52:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void transportRequestIdNotProvidedTest() {
|
|
|
|
|
2018-07-12 15:23:12 +02:00
|
|
|
ChangeManagement cm = new ChangeManagement(nullScript) {
|
|
|
|
String getTransportRequestId(String from,
|
|
|
|
String to,
|
|
|
|
String label,
|
|
|
|
String format) {
|
|
|
|
throw new ChangeManagementException('Cannot retrieve transportRequestId')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-12 08:54:04 +02:00
|
|
|
thrown.expect(IllegalArgumentException)
|
2018-07-16 12:09:49 +02:00
|
|
|
thrown.expectMessage("Transport request id not provided (parameter: 'transportRequestId' or via commit history).")
|
2018-06-20 11:52:11 +02:00
|
|
|
|
2019-01-22 10:25:42 +02:00
|
|
|
stepRule.step.transportRequestRelease(script: nullScript, changeDocumentId: '001', cmUtils: cm)
|
2018-06-20 11:52:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void releaseTransportRequestFailureTest() {
|
|
|
|
|
|
|
|
thrown.expect(AbortException)
|
2018-07-19 11:18:52 +02:00
|
|
|
thrown.expectMessage("Something went wrong")
|
|
|
|
|
|
|
|
ChangeManagement cm = new ChangeManagement(nullScript) {
|
2018-08-14 10:56:34 +02:00
|
|
|
|
2018-09-25 10:44:53 +02:00
|
|
|
void releaseTransportRequest(BackendType type,
|
|
|
|
String changeId,
|
2018-07-19 11:18:52 +02:00
|
|
|
String transportRequestId,
|
|
|
|
String endpoint,
|
2018-08-14 10:56:34 +02:00
|
|
|
String credentialsId,
|
2018-07-19 11:18:52 +02:00
|
|
|
String clientOpts) {
|
|
|
|
|
|
|
|
throw new ChangeManagementException('Something went wrong')
|
|
|
|
}
|
|
|
|
}
|
2018-06-20 11:52:11 +02:00
|
|
|
|
2019-01-22 10:25:42 +02:00
|
|
|
stepRule.step.transportRequestRelease(script: nullScript, changeDocumentId: '001', transportRequestId: '001', cmUtils: cm)
|
2018-06-20 11:52:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void releaseTransportRequestSuccessTest() {
|
|
|
|
|
2018-11-06 14:47:32 +02:00
|
|
|
// Here we test only the case where the transportRequestId is
|
|
|
|
// provided via parameters. The other cases are tested by
|
|
|
|
// corresponding tests for StepHelpers#getTransportRequestId(./.)
|
|
|
|
|
2019-01-22 10:22:15 +02:00
|
|
|
loggingRule.expect("[INFO] Closing transport request '002' for change document '001'.")
|
|
|
|
loggingRule.expect("[INFO] Transport Request '002' has been successfully closed.")
|
2018-07-19 11:18:52 +02:00
|
|
|
|
|
|
|
Map receivedParams = [:]
|
|
|
|
|
|
|
|
ChangeManagement cm = new ChangeManagement(nullScript) {
|
2018-09-25 10:44:53 +02:00
|
|
|
void releaseTransportRequest(BackendType type,
|
|
|
|
String changeId,
|
2018-07-19 11:18:52 +02:00
|
|
|
String transportRequestId,
|
|
|
|
String endpoint,
|
2018-08-14 10:56:34 +02:00
|
|
|
String credentialsId,
|
2018-07-19 11:18:52 +02:00
|
|
|
String clientOpts) {
|
|
|
|
|
2018-09-25 10:44:53 +02:00
|
|
|
receivedParams.type = type
|
2018-07-19 11:18:52 +02:00
|
|
|
receivedParams.changeId = changeId
|
|
|
|
receivedParams.transportRequestId = transportRequestId
|
|
|
|
receivedParams.endpoint = endpoint
|
2018-08-14 10:56:34 +02:00
|
|
|
receivedParams.credentialsId = credentialsId
|
2018-07-19 11:18:52 +02:00
|
|
|
receivedParams.clientOpts = clientOpts
|
|
|
|
}
|
|
|
|
}
|
2018-06-20 11:52:11 +02:00
|
|
|
|
2019-01-22 10:25:42 +02:00
|
|
|
stepRule.step.transportRequestRelease(script: nullScript, changeDocumentId: '001', transportRequestId: '002', cmUtils: cm)
|
2018-06-20 11:52:11 +02:00
|
|
|
|
2018-09-25 10:44:53 +02:00
|
|
|
assert receivedParams == [type: BackendType.SOLMAN,
|
|
|
|
changeId: '001',
|
2018-07-19 11:18:52 +02:00
|
|
|
transportRequestId: '002',
|
|
|
|
endpoint: 'https://example.org/cm',
|
2018-08-14 10:56:34 +02:00
|
|
|
credentialsId: 'CM',
|
|
|
|
clientOpts: '']
|
2018-06-20 11:52:11 +02:00
|
|
|
}
|
2018-09-28 13:45:26 +02:00
|
|
|
|
|
|
|
@Test
|
|
|
|
public void cmIntegrationSwichtedOffTest() {
|
|
|
|
|
2019-01-22 10:22:15 +02:00
|
|
|
loggingRule.expect('[INFO] Change management integration intentionally switched off.')
|
2018-09-28 13:45:26 +02:00
|
|
|
|
2019-01-22 10:25:42 +02:00
|
|
|
stepRule.step.transportRequestRelease(script: nullScript,
|
2018-09-28 13:45:26 +02:00
|
|
|
changeManagement: [type: 'NONE'])
|
|
|
|
}
|
2018-06-20 11:52:11 +02:00
|
|
|
}
|