我尝试使用gatling中的json feeder为每个请求动态生成header,代码如下:
import io.gatling.core.Predef._
import io.gatling.http.Predef._
import scala.concurrent.duration._
class LoadTest extends Simulation {
val httpConf = http
.baseURL("http://example.com")
val tokensFeeder = jsonFile("Tokens.json");
val user1 = scenario("Download")
feed(tokensFeeder)
.exec(
http("req")
.post("/download")
.headers("${header}")
.body(StringBody("""{ "Device_Type":"iOS","Locations":[{"Latitude":"51.50719197","Longitude":"-0.127214091"}] }""")).asJSON
)
setUp(
user1.inject(atOnceUsers(2))
).protocols(httpConf)
}
其中Tokens.json包含以下格式的数据:
[
{"header" : {"token" : "12234"}},
{"header" : {"token" : "12235"}},
{"header" : {"token" : "12236"}}
]
但我得到以下错误:
type mismatch;
found : String("${header}")
required: Map[String,String]
11:23:07.862 [ERROR] i.g.c.ZincCompiler$ - .headers("${header}")
11:23:07.864 [ERROR] i.g.c.ZincCompiler$ - ^
11:23:07.908 [ERROR] i.g.c.ZincCompiler$ - one error found
11:23:07.910 [ERROR] i.g.c.ZincCompiler$ - Compilation crashed
sbt.compiler.CompileFailed: null
我的理解是,feeders包含一个map向量,所以“${header}”不应该计算为{token:{\fnSimHei\bord1\shad1\pos(200,288)}
任何帮助将不胜感激。
1条答案
按热度按时间guykilcj1#
已修复标题的以下更改: