A Gatling load test plugin for gRPC.
Because of gRPC's need of code generation, I assume you are running the tests using the SBT plugin. For a quickstart guide, see this Medium article.
For usage with the Gradle Gatling plugin, see this example project.
To use this library, add this library to the test dependencies along with the two required by Gatling.
libraryDependencies ++= Seq(
"io.gatling.highcharts" % "gatling-charts-highcharts" % gatlingVersion % "test",
"io.gatling" % "gatling-test-framework" % gatlingVersion % "test",
"com.github.phisgr" % "gatling-grpc" % "0.11.1" % "test"
)
enablePlugins(GatlingPlugin)
For setting up the code generation, see the documentation in ScalaPB.
If your protobuf files are in src/test/protobuf
instead of src/main/protobuf
, change Compile
to Test
.
PB.targets in Test := Seq(
scalapb.gen() -> (sourceManaged in Test).value
)
To make a gRPC call:
exec(
grpc("my_request")
.rpc(ChatServiceGrpc.METHOD_GREET)
.payload(GreetRequest(
username = "myUserName",
name = "My name"
))
)
For a complete demo and various examples
including the proper syntax to include
session attributes
(e.g. from a feeder, or saved in a check),
see GrpcExample
in test.
For more complex manipulations with session attributes and protobuf objects, like repeated fields and map fields, see the unit test.
There are helper methods in gatling-grpc
for
generating dynamic ScalaPB objects with Lens
es,
as demonstrated in the example linked above.
It makes uses of extension methods,
and requires importing com.github.phisgr.gatling.pb._
.
If you want to use Java Protobuf classes,
you can use the gatling-javapb
library.
If the expressive power of these two plumbing tools are not enough,
you can always resort to writing a lambda.
Because an Expression[T]
is
just an alias
for Session => Validation[T]
.
In logback.xml
, add
<logger name="com.github.phisgr.gatling.grpc" level="DEBUG" />
to log the requests that are failed;
or set the level
to TRACE
to log all gRPC requests.
sbt clean coverage test gatling:test coverageReport
for a coverage report.
sbt clean bench/clean 'bench/jmh:run -i 3 -wi 3 -f10 -t1 -prof gc'
for JMH tests.