如何在 Java 中访问 c​​itrus http 接收消息正文? [英] How do I access a citrus http receive message body in Java?

查看:18
本文介绍了如何在 Java 中访问 c​​itrus 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 中访问 c​​itrus http 接收消息正文?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆