0

我有一个带有字符串的文件,我想在每次 X 记录时读取它。我有两个问题:

  1. 我应该保存哪种类型的文件?(“记录。”)
  2. 如何从我的文件中读取 X 记录并将它们作为 HttpRequestBuilder 的 json 作为正文发送?例如:

    val request: HttpRequestBuilder = Utils.createPostBodyRequest(
      "request",
      "localhost:8080/request",
      Map(Constants.Content_Type -> Constants.Application_Json),
      ElFileBody("records.json"))
    
    def createPostBodyRequest(reqName: String, url: String, 
                              headers: Map[String, String], body: Body): HttpRequestBuilder = {
       http(reqName)
        .post(url)
        .headers(headers)
        .body(body)
    }
    
4

1 回答 1

0

您可以使用 Feeders 注入数据https://gatling.io/docs/2.3/session/feeder/#feeder 其他注入数据的方式: https ://gatling.io/docs/2.3/session/session_api/#injecting-数据

于 2018-03-30T15:08:04.237 回答