我正在使用 Gatling 2.1.7,但找不到使用 JsonPath 检查多个值的方法。

让我们假装我有这个 Json:

{
  "messageTyp": "wsopen",
  "userId": "1"
}

我确实需要检查这两个值。
很容易检查这些值:
.check(wsAwait.within(2).expect(1).jsonPath("$..messageType").is("wsopen"))

但是因为这个测试是在“feeder”循环中运行的,所以有很多“wsopen”消息,异步返回。我需要检查,每个用户都收到一条“wsopen”消息。

我需要类似的东西
.check(wsAwait.within(2).expect(1).jsonPath("$..messageType").is("wsopen").and.jsonPath("$..userId").is("${userid}")) // won't compile

有人提示吗?

最佳答案

你可以直接用 JSONPath 来做:

jsonPath("$[?(@.messageTyp=='wsopen' && @.userId=='1')]").exists

关于scala - Gatling - 使用 JsonPath 检查多个值,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35859608/

10-12 04:58