use of com.eviware.soapui.impl.wsdl.teststeps.WsdlTestRequest in project microcks by microcks.
the class SoapUIProjectImporter method getSoapMessageDefinitions.
/**
* Get message definition for an operation of a Soap mock service.
*/
private List<Exchange> getSoapMessageDefinitions(MockService mockService, Operation operation) throws XPathExpressionException {
Map<Request, Response> result = new HashMap<Request, Response>();
// Get MockOperation corresponding to operation.
MockOperation mockOperation = mockService.getMockOperationByName(operation.getName());
// Collect available test requests for this operation.
Map<String, WsdlTestRequest> availableRequests = collectWsdlTestRequests(operation);
// Then filter only those that are candidates to mock response matching.
List<WsdlTestRequest> requests = new ArrayList<WsdlTestRequest>();
for (MockResponse mockResponse : mockOperation.getMockResponses()) {
// Check if there's a corresponding request in test cases.
WsdlTestRequest matchingRequest = availableRequests.get(mockResponse.getName());
if (matchingRequest == null) {
matchingRequest = availableRequests.get(mockResponse.getName() + " Request");
}
if (matchingRequest == null && mockResponse.getName().contains("Response")) {
matchingRequest = availableRequests.get(mockResponse.getName().replace("Response", "Request"));
}
if (matchingRequest == null) {
log.warn("No request found for response " + mockResponse.getName() + " into SoapUI project " + project.getName());
continue;
}
requests.add(matchingRequest);
}
if (DispatchStyles.QUERY_MATCH.equals(operation.getDispatcher())) {
// Browse candidates and apply query dispatcher criterion to find corresponding response.
XPathExpression xpath = initializeXPathMatcher(operation);
Map<String, String> matchToResponseMap = buildQueryMatchDispatchCriteriaToResponseMap((WsdlMockOperation) mockOperation);
for (WsdlTestRequest wtr : requests) {
// Evaluate matcher against request and get name of corresponding response.
String dispatchCriteria = xpath.evaluate(new InputSource(new StringReader(wtr.getRequestContent())));
String correspondingResponse = matchToResponseMap.get(dispatchCriteria);
MockResponse mockResponse = mockOperation.getMockResponseByName(correspondingResponse);
if (mockResponse != null) {
// Build response from MockResponse and response from matching one
Response response = buildResponse(mockResponse, dispatchCriteria);
Request request = buildRequest(wtr);
result.put(request, response);
}
}
} else if (DispatchStyles.SCRIPT.equals(operation.getDispatcher())) {
for (WsdlTestRequest wtr : requests) {
MockResponse mockResponse = mockOperation.getMockResponseByName(wtr.getName().replace(" Request", ""));
if (mockResponse == null && wtr.getName().contains("Request")) {
mockResponse = mockOperation.getMockResponseByName(wtr.getName().replace(" Request", " Response"));
}
if (mockResponse == null) {
log.warn("No response found for request " + wtr.getName() + " into SoapUI project " + project.getName());
continue;
}
// Build response from MockResponse and response from matching one.
Response response = buildResponse(mockResponse, mockResponse.getName());
Request request = buildRequest(wtr);
result.put(request, response);
}
}
// Adapt map to list of Exchanges.
return result.entrySet().stream().map(entry -> new RequestResponsePair(entry.getKey(), entry.getValue())).collect(Collectors.toList());
}
use of com.eviware.soapui.impl.wsdl.teststeps.WsdlTestRequest in project microcks by microcks.
the class SoapUIProjectImporter method collectWsdlTestRequests.
/**
* Collect and filter by operation all the WsldTestrequest from the current project.
*/
private Map<String, WsdlTestRequest> collectWsdlTestRequests(Operation operation) {
Map<String, WsdlTestRequest> result = new HashMap<>();
for (TestSuite testsuite : project.getTestSuiteList()) {
for (TestCase testcase : testsuite.getTestCaseList()) {
for (TestStep teststep : testcase.getTestStepList()) {
if (teststep instanceof WsdlTestRequestStep) {
WsdlTestRequestStep ws = (WsdlTestRequestStep) teststep;
WsdlTestRequest wr = ws.getHttpRequest();
if (wr.getOperationName().equals(operation.getName())) {
result.put(wr.getName(), wr);
}
}
}
}
}
return result;
}
use of com.eviware.soapui.impl.wsdl.teststeps.WsdlTestRequest in project microcks by microcks.
the class SoapUIProjectImporter method buildRequest.
/**
* Build a domain Request from SoapUI WsdlTestRequest.
*/
private Request buildRequest(WsdlTestRequest wtr) {
Request request = new Request();
request.setName(wtr.getName());
request.setContent(wtr.getRequestContent());
request.setHeaders(buildHeaders(wtr.getRequestHeaders()));
return request;
}
Aggregations