对于使用 Citrus Framework 的组件测试,我模拟了一个通过 SOAP 调用的后端系统。
<citrus-ws:server id="backendSimulationServer"
port="8080"
auto-start="true"
interceptors="serverInterceptors"
timeout="5000"/>
我从组件接收 SOAP 请求并发回响应。
runner.receive(action -> action.endpoint("backendSimulationServer")
.name("search-request")
.payload(new ClassPathResource("testfiles/search-request-expectation.xml"))
);
runner.send(action -> action.endpoint("backendSimulationServer")
.name("search-response")
.payload(new ClassPathResource("testfiles/search-response.xml"))
);
但是现在我必须使用 MTOM 附件响应来回答请求。我找到了在soap().client()
上使用.attachment
的柑橘示例,但.attachment
不适用于我的服务器模拟。
这在Java DSL中是可能的,还是我用XML DSL重写测试用例来实现这一点?
SOAP 附件和启用 MTOM 的方法在 Citrus 中的服务器组件上也可用。这应该可以为您解决问题:
soap().server(soapMtomServer)
.send()
.mtomEnabled(true)
.attachment("IMAGE", "application/octet-stream", new ClassPathResource("com/consol/citrus/hugeImageData.png"))
.payload("<image:addImage xmlns:image="http://www.citrusframework.org/imageService/">" +
"<image>cid:IMAGE</image>" +
"</image:addImage>");