在我的Gatling场景中,一个值存储在用户的会话中。 稍后在同一场景中,调用Feed并传递自定义进纸器。自定义进纸器需要使用会话中存储的值生成其下一个值。
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" -> ""
)
如何将此存储的会话值传递给进纸器或让进纸器从会话中检索此值?
答案 0 :(得分:0)
正如documentation所述:
有时,您可能希望过滤注入的数据,具体取决于 会议中的一些信息。
馈线无法实现这一点,因为它只是一个迭代器,所以它没有意识到 背景。
如果您的值独立于您运行的测试,可能一个好方法是在运行测试之前生成csv,然后将此csv提供给您的测试。