https://github.com/galax-io/gatling-amqp-plugin
Plugin for support performance testing with AMQP in Gatling
https://github.com/galax-io/gatling-amqp-plugin
amqp gatling gatling-plugin performance performance-testing
Last synced: 3 months ago
JSON representation
Plugin for support performance testing with AMQP in Gatling
- Host: GitHub
- URL: https://github.com/galax-io/gatling-amqp-plugin
- Owner: galax-io
- License: apache-2.0
- Created: 2024-03-24T12:32:51.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-15T19:12:19.000Z (4 months ago)
- Last Synced: 2024-12-15T20:21:03.770Z (4 months ago)
- Topics: amqp, gatling, gatling-plugin, performance, performance-testing
- Language: Scala
- Homepage:
- Size: 93.8 KB
- Stars: 4
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- trackawesomelist - gatling-amqp-plugin (⭐4) - Plugin for support performance testing with AMQP in Gatling (3.2.x). (Recently Updated / [Oct 07, 2024](/content/2024/10/07/README.md))
README
# Gatling AMQP Plugin

[](https://search.maven.org/search?q=org.galaxio.gatling-amqp-plugin)
[](https://scala-steward.org)
[](https://codecov.io/github/galax-io/gatling-amqp-plugin?branch=master)Plugin for support performance testing with AMQP in Gatling(3.9.x)
# Usage
## Getting Started
Plugin is currently available for Scala 2.13, Java 17, Kotlin.You may add plugin as dependency in project with your tests.
### Scala
Write this to your build.sbt:
``` scala
libraryDependencies += "org.galaxio" %% "gatling-amqp-plugin" % % Test
```### Java
Write this to your dependencies block in build.gradle:
```java
gatling "org.galaxio:gatling-amqp-plugin_2.13:"
```### Kotlin
Write this to your dependencies block in build.gradle:
```kotlin
gatling("org.galaxio:gatling-amqp-plugin_2.13:")
```## Example Scenarios
### Scala
* Example scenario for [publishing](src/test/scala/org/galaxio/gatling/amqp/examples/PublishExample.scala)
* Example scenario for [Publish And Reply](src/test/scala/org/galaxio/gatling/amqp/examples/RequestReplyExample.scala)
* Example scenario for [Publish and Reply on different message-brokers](src/test/scala/org/galaxio/gatling/amqp/examples/RequestReplyTwoBrokerExample.scala)### Java
* Example scenario for [publishing](src/test/java/org/galaxio/gatling/amqp/javaapi/examples/PublishExample.java)
* Example scenario for [Publish And Reply](src/test/java/org/galaxio/gatling/amqp/javaapi/examples/RequestReplyExample.java)
* Example scenario for [Publish and Reply on different message-brokers](src/test/java/org/galaxio/gatling/amqp/javaapi/examples/RequestReplyTwoBrokerExample.java)### Kotlin
* Example scenario for [publishing](src/test/kotlin/org/galaxio/gatling/amqp/javaapi/examples/PublishExample.kt)
* Example scenario for [Publish And Reply](src/test/kotlin/org/galaxio/gatling/amqp/javaapi/examples/RequestReplyExample.kt)
* Example scenario for [Publish and Reply on different message-brokers](src/test/kotlin/org/galaxio/gatling/amqp/javaapi/examples/RequestReplyTwoBrokerExample.kt)