0
모든 서비스를 하나의 단계로 테스트하는 그루비 스크립트를 작성 중입니다.단일 groovy 스크립트에서 모든 비누 요청에 액세스하는 방법
WSDL을 가져오고 모든 SOAP 요청이 자동으로 생성됩니다.
모든 SOAP 서비스를 하나씩 테스트하는 수동 작업을 줄이고 싶습니다.
가능한 경우 groovy를 통해이를 수행하려고합니다.
여기 addressScript에서에서 - 나중에 모든 테스트 케이스의 모든 SOAP 요청을 액세스하려는. 문맥에 따라 루핑을 통해 구현할 수 있습니까? 아래는 샘플 코드입니다.필자의 주요 목표는 모든 SOAP 요청을 하나씩 테스트하는 모든 수동 작업을 줄이는 것입니다. SOAP
요청 단계를 수행하여 경우에 사용되는 것처럼 당신이 첨부 이미지에서
import org.apache.commons.httpclient.methods.PostMethod;
import org.w3c.dom.*;
class Example {
static void main(String[] args) {
String serviceInput="";
PostMethod post = new PostMethod(");
post.setRequestHeader("Accept", "application/soap+xml,application/dime,multipart/related,text/*");
post.setRequestHeader("SOAPAction", "");
def req = context.testCase.getTestStepAt(context.currentStepIndex - 1).httpRequest.requestContent
log.info req
// here i want to access all the SOAP requests in loop , and to test all the services in sequence
}
}
예, 유용합니다. 스크립트가 시작되었습니다. –