Hi All,
I was trying to run gatling test on RESTFUL API (trying to run the BasicSimulation example) under my maven project.
Unfortunately, I keep getting Connection timed out
- no matter whichever URL I tried.
- even when i added the .disableWarmup
However, it works when I try to “gatling” localhost RESTFUL URL.
I would like to seek some advices to see what am I missing?
gatling-maven-plugin version: 2.0.0
Example Code
package restful // 1
import io.gatling.core.Predef._ // 2
import io.gatling.http.Predef._
import scala.concurrent.duration._
class Test extends Simulation { // 3
val httpConf = http // 4
.baseURL(“http://www.google.com”) // 5
.acceptHeader(“text/html,application/xhtml+xml,application/xml;q=0.9,/;q=0.8”) // 6
.doNotTrackHeader(“1”)
.acceptLanguageHeader(“en-US,en;q=0.5”)
.acceptEncodingHeader(“gzip, deflate”)
.userAgentHeader(“Mozilla/5.0 (Windows NT 5.1; rv:31.0) Gecko/20100101 Firefox/31.0”)
val scn = scenario(“BasicSimulation”) // 7
.exec(http(“request_1”)
.get("/")) // 9
.pause(5) // 10
setUp( // 11
scn.inject(atOnceUsers(1)) // 12
).protocols(httpConf) // 13
}