gpt4 book ai didi

scala - 使用进纸器确保 Gatling 中的 CSV 记录

转载 作者:行者123 更新时间:2023-12-01 09:05:19 24 4
gpt4 key购买 nike

我用 Gatling 使用 CSV 创建了一个简单的馈线。该脚本运行良好,没有出现任何错误。我知道在负载测试期间从 CSV 中获取值。但是我怎样才能确保为每个用户获得哪个值(value)。我必须确保第一个用户应该使用用户名登录:user1 和密码:password1。由于我对 Gatling 非常陌生,因此找不到解决方案。因此,请帮助我找到解决方案,在此先感谢......

我的 CSV 包含-

用户名密码

用户1 密码1

用户2 密码2

用户3 密码3

我的 feeder 脚本是:

val userCredentails= csv("user_credentials.csv").random 
val scn = scenario("RecordedSimulation")
.exec(http("request_0")
.get("/thulasi/myhome.php")
.headers(headers_0)
.resources(http("request_1")
.post(uri1 + "/scripts/index.php")
.headers(headers_1)
.formParam("Action", "Offline"),
http("request_2")
.get(uri1 + "/images/footer.jpg"),

.pause(75)
// Login
.feed(userCredentails)
.exec(http("request_3")
.post("/thulasi/index.php")
.headers(headers_0)
.formParam("cand_user_cd", "${Username}")
.formParam("passwd", "${Password}")
.resources(http("request_4")
.post(uri1 + "/scripts/index.php")
.headers(headers_1)
.formParam("Action", "Offline"))
)


setUp(scn.inject(atOnceUsers(3))).protocols(httpProtocol)

最佳答案

检查 Feeder 文档:http://gatling.io/docs/2.2.0/session/feeder.html?highlight=feeders

只是不要在喂食器上使用随机数:

val userCredentails= csv("user_credentials.csv")

  • 这将从第一条记录到最后一条记录,当 CSV 中没有更多记录时崩溃 = 因此您必须确保您的测试不会加载比您拥有的更多记录

或使用通告:

val userCredentails= csv("user_credentials.csv").circular

  • 这将从第一个记录到最后一个记录,一遍又一遍。

关于scala - 使用进纸器确保 Gatling 中的 CSV 记录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37188040/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com