Last active
August 29, 2015 14:22
-
-
Save jloisel/1cd405b2618b15ae4b73 to your computer and use it in GitHub Desktop.
Gatling sample simulation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package computerdatabase // 1 | |
import io.gatling.core.Predef._ // 2 | |
import io.gatling.http.Predef._ | |
import scala.concurrent.duration._ | |
class BasicSimulation extends Simulation { // 3 | |
val httpConf = http // 4 | |
.baseURL("http://computer-database.herokuapp.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") // 8 | |
.get("/")) // 9 | |
.pause(5) // 10 | |
setUp( // 11 | |
scn.inject(atOnceUsers(1)) // 12 | |
).protocols(httpConf) // 13 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment