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-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
|
|
|
|
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()
|
|
|
|
private JenkinsStepRule jsr = new JenkinsStepRule(this)
|
|
|
|
private JenkinsLoggingRule jlr = new JenkinsLoggingRule(this)
|
|
|
|
|
|
|
|
@Rule
|
|
|
|
public RuleChain ruleChain = Rules.getCommonRules(this)
|
|
|
|
.around(thrown)
|
|
|
|
.around(jsr)
|
|
|
|
.around(jlr)
|
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',
|
|
|
|
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
|
|
|
|
2018-07-10 16:33:23 +02:00
|
|
|
jsr.step.call(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
|
|
|
|
2018-07-12 15:23:12 +02:00
|
|
|
jsr.step.call(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-07-19 11:18:52 +02:00
|
|
|
void releaseTransportRequest(String changeId,
|
|
|
|
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
|
|
|
|
2018-07-19 11:18:52 +02:00
|
|
|
jsr.step.call(script: nullScript, changeDocumentId: '001', transportRequestId: '001', cmUtils: cm)
|
2018-06-20 11:52:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void releaseTransportRequestSuccessTest() {
|
|
|
|
|
2018-07-19 11:18:52 +02:00
|
|
|
jlr.expect("[INFO] Closing transport request '002' for change document '001'.")
|
|
|
|
jlr.expect("[INFO] Transport Request '002' has been successfully closed.")
|
|
|
|
|
|
|
|
Map receivedParams = [:]
|
|
|
|
|
|
|
|
ChangeManagement cm = new ChangeManagement(nullScript) {
|
|
|
|
void releaseTransportRequest(String changeId,
|
|
|
|
String transportRequestId,
|
|
|
|
String endpoint,
|
2018-08-14 10:56:34 +02:00
|
|
|
String credentialsId,
|
2018-07-19 11:18:52 +02:00
|
|
|
String clientOpts) {
|
|
|
|
|
|
|
|
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
|
|
|
|
2018-07-19 11:18:52 +02:00
|
|
|
jsr.step.call(script: nullScript, changeDocumentId: '001', transportRequestId: '002', cmUtils: cm)
|
2018-06-20 11:52:11 +02:00
|
|
|
|
2018-07-19 11:18:52 +02:00
|
|
|
assert receivedParams == [changeId: '001',
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|