1

在我的 Gatling 场景中,一个值存储在用户的会话中。稍后在同一场景中,调用 feed 并将其传递给自定义 feeder。自定义馈线需要使用会话中存储的值生成其下一个值。

val MyScenario = scenario("ScenerioName")
  .repeat(10, "repetition") {
    exitBlockOnFail {
      group("WorkflowGroupName") {
        exec(session => {
            // SETTING A VALUE INTO THE USER'S SESSION
            session.set("sessionVariable", 99)  // value that is stored changes for every run of the workflow (99 just for example purposes)
        })
        // CUSTOM FEEDER THAT GENERATES ITS NEXT VALUE USING THE SESSION VARIABLE 'sessionVariable' STORED ABOVE
        .feed(myFeeder)
        .group("RequestGroup1") {
          exec(httpPost1)
        }
      }
    }
  }

val myFeeder = Iterator.continually(Map("jsonFileValue" -> {

  // WANT TO RETRIEVE VALUE OF 'sessionVariable' STORED IN THE SESSION
  val returnValue = /* logic that generates its value based on value of 'sessionVariable' retrieved */
  returnValue

}
))

val httpPost1 = http("Request1")
  .post("http://IPAddress/service.svc")
  .headers(httpHeaders)
  .body(ELFileBody("MyJsonFile.json"))
  .check(status.is(200))
val httpHeaders = Map(
  "Content-Type" -> "application/json; charset=UTF-8",
  "X-Pod" -> ""
)

如何将此存储的会话值传递给馈线或让馈线从会话中检索此值?

4

1 回答 1

1

正如文档所述:

有时,您可能希望根据 Session 中的某些信息过滤注入的数据。

Feeder 无法实现这一点,因为它只是一个迭代器,所以它不知道上下文。

如果您的值与您运行的测试无关,那么一个好方法可能是在运行测试之前生成一个 csv,然后将此 csv 提供给您的测试。

于 2017-09-22T12:45:20.363 回答