我最近升级到Gatling 3.0。但是,它们改变了为新基准创建SSL上下文的方式。有没有人成功地从使用feed转换为新的处理方式。以下是我以前的工作方式的示例代码:
scenario(scenarioName+ ": " + baseUrl + path)
.feed(sslConfig)
.forever() {
exec(http(requestName).post(path)
.headers(Map(HeaderConstants.CONTENT_TYPE -> HeaderConstants.JSON_HEADER))
.body(StringBody(session => fetchJson(jsonFile)))
.check(status.is(200)))
所有帮助将不胜感激。