diff options
author | Fiete Ostkamp <Fiete.Ostkamp@telekom.de> | 2024-06-19 13:06:14 +0200 |
---|---|---|
committer | Fiete Ostkamp <Fiete.Ostkamp@telekom.de> | 2024-06-19 14:17:04 +0200 |
commit | c8520cf5ae8d4f9f5df7064c6a6e8f8c85f0cc89 (patch) | |
tree | 9ab205deec11ebccca81991da7bcd7d3accb4877 /aai-resources/pom.xml | |
parent | ce2dccf65d754332d208fad1afc0ce5fcf9d0c78 (diff) |
Add performance test for resources
- add a K6-based performance test
- exact thresholds are not important for now, it's rather meant to
assist development
Issue-ID: AAI-3892
Change-Id: I1387f97acaa593ae8be84a0782f42274b1b100a7
Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
Diffstat (limited to 'aai-resources/pom.xml')
-rw-r--r-- | aai-resources/pom.xml | 29 |
1 files changed, 26 insertions, 3 deletions
diff --git a/aai-resources/pom.xml b/aai-resources/pom.xml index 8ef378c..d50695d 100644 --- a/aai-resources/pom.xml +++ b/aai-resources/pom.xml @@ -571,6 +571,10 @@ <groupId>org.springframework</groupId> <artifactId>spring-web</artifactId> </exclusion> + <exclusion> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + </exclusion> </exclusions> </dependency> <dependency> @@ -661,13 +665,14 @@ <version>${groovy.version}</version> </dependency> <dependency> - <groupId>org.springframework</groupId> - <artifactId>spring-test</artifactId> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-test</artifactId> <scope>test</scope> </dependency> + <!-- Only used for the WebTestClient --> <dependency> <groupId>org.springframework.boot</groupId> - <artifactId>spring-boot-test</artifactId> + <artifactId>spring-boot-starter-webflux</artifactId> <scope>test</scope> </dependency> <dependency> @@ -710,6 +715,24 @@ <scope>test</scope> </dependency> <dependency> + <groupId>org.testcontainers</groupId> + <artifactId>testcontainers</artifactId> + <version>1.19.8</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.testcontainers</groupId> + <artifactId>junit-jupiter</artifactId> + <version>1.19.8</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.testcontainers</groupId> + <artifactId>k6</artifactId> + <version>1.19.8</version> + <scope>test</scope> + </dependency> + <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.18.30</version> |