How do I access a citrus http receive message body in Java?(如何在 Java 中访问 citrus http 接收消息正文?)
问题描述
我同时使用黄瓜和柑橘,在我的 @Then
定义中,我有柑橘 HTTP 响应:
I'm using cucumber and citrus together, and in my @Then
definition, I have the citrus HTTP response:
@CitrusResource TestRunner runner;
runner.http(builder -> {
final HttpClientResponseActionBuilder rab =
builder.client("citrusEndpointAPI").receive()
.response(HttpStatus.OK).messageType(MessageType.JSON)
.contentType(MediaType.APPLICATION_JSON_VALUE);
有没有办法将返回的 JSON 消息体存储到 java JSON 对象中?
Is there a way to store the returned JSON message body into a java JSON object?
推荐答案
您可以使用本地消息存储.在测试期间,每条消息都应保存到本地的内存存储中.您可以稍后在该测试用例中通过其名称访问存储的消息:
You can use the local message store. Each message should be saved to that local in memory storage during the test. You can access the stored messages later in that test case via its name:
receive(action -> action.endpoint("sampleEndpoint")
.name("sampleMessage")
.payload("..."));
echo("citrus:message(sampleMessage.payload())");
请注意,我们将收到的消息命名为 sampleMessage
.您也可以通过自定义测试操作中的测试上下文访问消息存储.
Please note that we named the received message sampleMessage
. You can access the message store via test context in custom test actions, too.
context.getMessageStore().getMessage("sampleMessage");
此外,您还可以在 Java DSL 中使用自定义消息验证回调.在这里,您可以完全访问收到的消息内容.
Besides that you could also use a custom message validation callback in Java DSL. Here you have full access to the received message content.
receive(action -> action.endpoint("sampleEndpoint")
.validationCallback((message, context) -> {
//Do something with message content
message.getPayload(String.class);
}));
这篇关于如何在 Java 中访问 citrus http 接收消息正文?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 Java 中访问 citrus http 接收消息正文?


基础教程推荐
- 如何在 Spring @Value 注解中正确指定默认值? 2022-01-01
- 如何在 JFrame 中覆盖 windowsClosing 事件 2022-01-01
- 从 python 访问 JVM 2022-01-01
- 验证是否调用了所有 getter 方法 2022-01-01
- 多个组件的复杂布局 2022-01-01
- Java Swing计时器未清除 2022-01-01
- Java 实例变量在两个语句中声明和初始化 2022-01-01
- 大摇大摆的枚举 2022-01-01
- 不推荐使用 Api 注释的描述 2022-01-01
- 在 Java 中创建日期的正确方法是什么? 2022-01-01