feat: NCS-62 Endurance Test #4

Closed
lq64 wants to merge 1 commits from feat/NCS-62 into main
3 changed files with 28 additions and 4 deletions
+3 -1
View File
@@ -22,7 +22,9 @@ tasks.withType(io.gatling.gradle.GatlingRunTask) {
"-Dgatling.authToken=${findProperty('authToken') ?: System.getenv('GATLING_AUTH_TOKEN') ?: ''}", "-Dgatling.authToken=${findProperty('authToken') ?: System.getenv('GATLING_AUTH_TOKEN') ?: ''}",
"-Dhealthz.path=${findProperty('healthzPath') ?: '/health'}", "-Dhealthz.path=${findProperty('healthzPath') ?: '/health'}",
"-DmaxUsers=${findProperty('maxUsers') ?: '10'}", "-DmaxUsers=${findProperty('maxUsers') ?: '10'}",
"-DrampDuration=${findProperty('rampDuration') ?: '60'}" "-DrampDuration=${findProperty('rampDuration') ?: '60'}",
"-DconcurrentUsers=${findProperty('concurrentUsers') ?: '3'}",
"-Dduration=${findProperty('duration') ?: '300'}"
] ]
} }
@@ -6,9 +6,9 @@ object BoardEndpoints {
val createGame: Endpoint = Endpoint( val createGame: Endpoint = Endpoint(
name = "Create Game", name = "Create Game",
method = "POST", method = "GET",
path = "/api/board/game/", path = "/api/account/official-bots/",
expectedStatus = 201 // expectedStatus = 200
) )
val all: List[Endpoint] = List(createGame) val all: List[Endpoint] = List(createGame)
@@ -0,0 +1,22 @@
package simulations
import base.BaseSimulation
import endpoints.BoardEndpoints
import io.gatling.core.Predef._
import scala.concurrent.duration._
class EnduranceTestSimulation extends BaseSimulation {
private val concurrentUsers = sys.props.getOrElse("concurrentUsers", "3").toInt
private val duration = sys.props.getOrElse("duration", "300").toInt
setUp(
BoardEndpoints.all.map { endpoint =>
scenarioFromEndpoint(endpoint)
.inject(
constantConcurrentUsers(concurrentUsers).during(duration.seconds)
)
}: _*
).protocols(httpProtocol)
}