Maintain HTTP Session: Should pass cookies to following request
- 9 years ago
In your REST request, you should add those 3 header fields (you don't need to supply a value):
Then in the actual test step, double click the value field of each, right-click, then use 'Get Data' to get each header from the response of a previous request:
- 9 years ago
Hi Justin
Thanks for that hint.
But it doesn't work in my case.
a) my first request contains in it's response:
Set-Cookie: JSESSIONID=xxxxxxxxxxxx; Path=/yyyyyyyyyyyyyyyy; Secure
Set-Cookie: WAF-XSRF-TOKEN=zzzzzzzzzzzzzzzz; Path=/
Set-Cookie: XSRF-TOKEN=aaaaaaaaaaaaaaaaa; Path=/
Access-Control-Allow-Headers: origin, content-type, accept, X-XSRF-TOKENb) I have to transfer those cookies to the next request
Now I try with a groovy script
Actually I think it would work, but it douplicates all cookies in the header, each time I start the script ??
def header = testRunner.testCase.getTestStepByName("firstLoginCookie").httpRequest.response.responseHeaders["Set-Cookie"]
header=header.toString()log.info(" Current XSRF-TOKEN header: " + header)
start=header.indexOf(" XSRF-TOKEN=")
log.info(" Current XSRF-TOKEN start: " + start+1)end=header.indexOf("; Path=/]")
log.info(" Current XSRF-TOKENend: " + end)testCaseProperty= header.substring(start+1,end)
vXsrf=testCaseProperty
log.info("Current xsrf: " + vXsrf)////////////////
log.info(" Current WAF-XSRF-TOKEN header: " + header)
start=header.indexOf(" WAF-XSRF-TOKEN=")
log.info(" Current WAF-XSRF-TOKEN start: " + start+1)end=header.indexOf("; Path=/, ")
log.info(" Current WAF-XSRF-TOKEN end: " + end)testCaseProperty= header.substring(start+1,end)
vWafXsrf=testCaseProperty
log.info("Current wafxsrf: " + vWafXsrf)////////////////
log.info(" Current JSESSIONID header: " + header)
start=header.indexOf("JSESSIONID=")
log.info(" Current JSESSIONID start: " + start)end=header.indexOf("; Path=/com.avaloq")
log.info(" Current JSESSIONID end: " + end)testCaseProperty= header.substring(start,end)
vJsessionId=testCaseProperty
log.info("Current vJsessionId: " + vJsessionId)
// Iterate through all test steps and add the session cookie to the headers.
for ( tstep in context.testCase.testSteps ) {
testStepName = ( tstep.key )
log.info("Current testStepName: " + testStepName);if ( testStepName != 'firstLoginCookie' && testStepName != 'SetXSRFheadersForAll') {
log.info("Cookie set for " + testStepName)
def headers=testRunner.testCase.testSteps[testStepName].testRequest.requestHeaders
headers.put('Cookie', vXsrf)
headers.put('Cookie', vWafXsrf)
headers.put('Cookie', vJsessionId +'; Path=/com.avaloq.afs.rest.services; Secure')
//testRunner.testCase.testSteps[testStepName].testRequest.requestHeaders=headers
testRunner.testCase.testSteps[testStepName].testRequest.requestHeaders=headers}
}Thanks
Regards, Reto
- 9 years agoHappened to write it some time ago for a forum request. Could not get that thread, but here is the script that you can try.
https://github.com/nmrao/soapUIGroovyScripts/blob/master/groovy/AddCookiesToNextRequest.groovy