如何从Gatling的响应体中获取值?

时间:2018-01-16 09:53:10

标签: performance-testing gatling scala-gatling

我尝试过我在Gatling.io上发现的不同方法,但我的问题仍然存在。 当我发送GET请求时,有一个API以JSON格式返回一个简短的响应。

GET请求:

http://localhost:some_port/api/endpoint1?parameter1=1234&parameter2=5678

响应:

{"交易":" 6d638b9b-f131-41b1-bd07-0d1c6a1d4bcc""参考":" SOME_TEXT" }

我需要从响应中获取事务值并在另一个请求中使用它。

下一个请求:

http://localhost:some_port/api/endpoint2?transaction= $ transactionValue&安培;参数= 8

到目前为止,我已尝试使用带有Int或String值的regex,jsonPath,但结果为0或None。

到目前为止,这是我的方案代码:

import io.gatling.core.Predef._
import io.gatling.http.Predef._

class class1 extends Simulation {

    val httpProtocol = http
        .baseURL("http://localhost:port")
        .inferHtmlResources()
        .acceptHeader("text/html,application/json")
        .acceptEncodingHeader("gzip, deflate")
        .acceptLanguageHeader("en-US,en;q=0.9,hr;q=0.8,sr;q=0.7,bs;q=0.6")
        .userAgentHeader("Mozilla/5.0 (X11; Fedora; Linux x86_64)")

    val headers = Map(
        "Content-Type" -> "application/json")

    val uri1 = "http://localhost:port/api/endpoint1"
    val uri2 = "http://localhost:port/api/endpoint2"

    val scn = scenario("getEndpoint1")
        .exec(http("endpoint1")
            .get("/api/endpoint1?parameter1=1234&parameter2=5678")
            .headers(headers)
      .check(jsonPath("$.transaction").findAll.saveAs("transaction")))
    .pause(3)
    .exec(session => {
      val transaction = session("transaction").asOption[String]
      session
    }).exec(http("endpoint2").get(uri2 +s"/transaction=${"transaction"}&parameter=8").headers(headers))

    setUp(scn.inject(atOnceUsers(1))).protocols(httpProtocol)
}

如果您有任何建议或看到我做错的事情,我们将不胜感激。

0 个答案:

没有答案