Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/Pravoru/gatling-junitrunner

JUnit wrapper around gatling simulations
https://github.com/Pravoru/gatling-junitrunner

debugging gatling junit

Last synced: 2 days ago
JSON representation

JUnit wrapper around gatling simulations

Awesome Lists containing this project

README

        

# JUnit wrapper around Gatling simulations

## Goal

Gatling do not has an ability to be run as normal unit test. Gatling team has its reasons for this, however we need to debug simulation before running it under heavy load.

## Instalation
We mimic gatling versioning. For our purposes we use fourth digit in version number.
`build.sbt`
```scala
libraryDependencies += "ru.pravo" %% "gatling-junitrunner" % "3.0.0.0"
```

## Using

Just add `@RunWith(classOf[JUnitRunner])` annotation to your simulation classes.

```scala
import io.gatling.core.Predef._
import io.gatling.http.Predef._
import org.junit.runner.RunWith
import ru.pravo.qa.gatling.junit.JUnitRunner

@RunWith(classOf[JUnitRunner])
class ExampleSimulation extends Simulation {
val httpConf = http
.baseUrl("http://google.com")

val scn = scenario("Positive Scenario")
.exec(
http("request_1").get("/")
)

setUp(scn.inject(atOnceUsers(1)).protocols(httpConf))
}
```