Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Tinkoff/gatling-amqp-plugin
Plugin for support performance testing with AMQP in Gatling (3.7.x)
https://github.com/Tinkoff/gatling-amqp-plugin
amqp gatling performance scala
Last synced: about 1 month ago
JSON representation
Plugin for support performance testing with AMQP in Gatling (3.7.x)
- Host: GitHub
- URL: https://github.com/Tinkoff/gatling-amqp-plugin
- Owner: Tinkoff
- License: apache-2.0
- Archived: true
- Created: 2019-06-21T09:20:59.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-08-07T22:00:35.000Z (over 1 year ago)
- Last Synced: 2024-01-26T05:13:34.497Z (11 months ago)
- Topics: amqp, gatling, performance, scala
- Language: Scala
- Homepage:
- Size: 146 KB
- Stars: 32
- Watchers: 7
- Forks: 20
- Open Issues: 18
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-gatling - gatling-amqp-plugin - Plugin for support performance testing with AMQP in Gatling (3.2.x). (Tools / Plugins)
README
# Gatling AMQP Plugin
![Build](https://github.com/TinkoffCreditSystems/gatling-amqp-plugin/workflows/Build/badge.svg)
[![Maven Central](https://img.shields.io/maven-central/v/ru.tinkoff/gatling-amqp-plugin_2.13.svg?color=success)](https://search.maven.org/search?q=ru.tinkoff.gatling-amqp-plugin)
[![Scala Steward badge](https://img.shields.io/badge/Scala_Steward-helping-blue.svg?style=flat&logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAQCAMAAAARSr4IAAAAVFBMVEUAAACHjojlOy5NWlrKzcYRKjGFjIbp293YycuLa3pYY2LSqql4f3pCUFTgSjNodYRmcXUsPD/NTTbjRS+2jomhgnzNc223cGvZS0HaSD0XLjbaSjElhIr+AAAAAXRSTlMAQObYZgAAAHlJREFUCNdNyosOwyAIhWHAQS1Vt7a77/3fcxxdmv0xwmckutAR1nkm4ggbyEcg/wWmlGLDAA3oL50xi6fk5ffZ3E2E3QfZDCcCN2YtbEWZt+Drc6u6rlqv7Uk0LdKqqr5rk2UCRXOk0vmQKGfc94nOJyQjouF9H/wCc9gECEYfONoAAAAASUVORK5CYII=)](https://scala-steward.org)
[![codecov.io](https://codecov.io/github/Tinkoff/gatling-amqp-plugin/coverage.svg?branch=master)](https://codecov.io/github/Tinkoff/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 += "ru.tinkoff" %% "gatling-amqp-plugin" % % Test
```### Java
Write this to your dependencies block in build.gradle:
```java
gatling "ru.tinkoff:gatling-amqp-plugin_2.13:"
```### Kotlin
Write this to your dependencies block in build.gradle:
```kotlin
gatling("ru.tinkoff:gatling-amqp-plugin_2.13:")
```## Example Scenarios
### Scala
* Example scenario for [publishing](src/test/scala/ru/tinkoff/gatling/amqp/examples/PublishExample.scala)
* Example scenario for [Publish And Reply](src/test/scala/ru/tinkoff/gatling/amqp/examples/RequestReplyExample.scala)
* Example scenario for [Publish and Reply on different message-brokers](src/test/scala/ru/tinkoff/gatling/amqp/examples/RequestReplyTwoBrokerExample.scala)### Java
* Example scenario for [publishing](src/test/java/ru/tinkoff/gatling/amqp/javaapi/examples/PublishExample.java)
* Example scenario for [Publish And Reply](src/test/java/ru/tinkoff/gatling/amqp/javaapi/examples/RequestReplyExample.java)
* Example scenario for [Publish and Reply on different message-brokers](src/test/java/ru/tinkoff/gatling/amqp/javaapi/examples/RequestReplyTwoBrokerExample.java)### Kotlin
* Example scenario for [publishing](src/test/kotlin/ru/tinkoff/gatling/amqp/javaapi/examples/PublishExample.kt)
* Example scenario for [Publish And Reply](src/test/kotlin/ru/tinkoff/gatling/amqp/javaapi/examples/RequestReplyExample.kt)
* Example scenario for [Publish and Reply on different message-brokers](src/test/kotlin/ru/tinkoff/gatling/amqp/javaapi/examples/RequestReplyTwoBrokerExample.kt)