旧版应用程序具有以下有效的 Gatling 测试
private val getUserByTuid = scenario("GetActiveUserInfoWrapper")
.feed(users.toArray.circular)
.exec(
http("GET /v1/foo/{id}")
.get("/v1/foo/${id}")
.header("Content-Type", "application/json")
.header("User-Agent", "gatling")
.check(status is 200)
.check(jsonPath("$..ID") exists)
)
我需要将其更改为状态为 200,在这种情况下,它会检查 jsonnode ID 是否存在(就像上面一样),或者状态为 401,在这种情况下,它会检查 jsonnode 描述是否存在。任何其他状态都应导致失败。
这是我到目前为止所拥有的,但它似乎没有按预期工作,因为 Gatling 会考虑所有响应失败,即使是 ID 为 200 且描述为 401 的响应失败。
private val getUserByTuid = scenario("GetActiveUserInfoWrapper")
.feed(users.toArray.circular)
.exec(
http("GET /v1/foo/{id}")
.get("/v1/foo/${id}")
.header("Content-Type", "application/json")
.header("User-Agent", "gatling")
.check(checkIf((response: Response, session: Session) => response.status.get.getStatusCode == 200)(jsonPath("$..ID") exists))
.check(checkIf((response: Response, session: Session) => response.status.get.getStatusCode == 401)(jsonPath("$..Description") exists))
)
我查看了文档并在网上搜索,但无法找出实现我想要的正确方法,因此在这里询问。