Skip to content

quarkus-qe/beefy-scenarios

Folders and files

NameName
Last commit message
Last commit date
Sep 29, 2024
Mar 13, 2024
Jul 25, 2023
Sep 29, 2024
Sep 6, 2024
Sep 5, 2024
Feb 17, 2023
Sep 5, 2024
Mar 23, 2021
Mar 24, 2021
Jul 29, 2024
Sep 5, 2024
Sep 29, 2024
Aug 27, 2024
Jul 29, 2024
Apr 29, 2021
Jul 29, 2024
Sep 29, 2024
Jul 29, 2024
Mar 25, 2024
Sep 29, 2024
Sep 29, 2024
Aug 14, 2024
Jul 29, 2024
Sep 29, 2024
Jul 29, 2024
Sep 29, 2024
Feb 17, 2023
Sep 5, 2024
Jun 13, 2024
Jul 29, 2024
Jun 3, 2019
Apr 29, 2021
Mar 4, 2021
May 30, 2019
Dec 1, 2023
May 4, 2021
Mar 13, 2024
Mar 13, 2024
Apr 29, 2021
Sep 23, 2024

Repository files navigation

beefy-scenarios

Beefy scenarios for Quarkus

Prerequisites

  • JDK 17+
  • Docker

Test-suite Execution

Run mvn clean verify command to execute the testsuite

NOTE: Build Quarkus with relocations enabled - e.g. mvn clean install -Dquickly -Prelocations

Scenarios IDs

Range Name Description
000 - 099 Quarkus Quarkus native scenarios
100 - 199 QuarkEE Quarkus scenarios with Java EE-like experience
200 - 299 QuarkTT Quarkus scenarios with Thorntail-like experience
300 - 399 QuarkVert Quarkus scenarios with Vert.x experience
400 - 499 QuarkConf Quarkus scenarios presented at conferences
500 - 599 QuarkUser Quarkus scenarios adopted by end users
600 - 699 QuarkSpring Quarkus scenarios with Spring experience

Note: It's expected that the majority of modules will go into 000 - 099 Quarkus bucket

Tips

LargeStaticResourceTest - testBigFileAvailability failure

On some system you may hit LargeStaticResourceTest.testBigFileAvailability:35 » Connect Connection refuse issue.

The root cause is that the standard JDK code can't handle properly sun.net.www.protocol.http.HttpURLConnection with value http://0.0.0.0:8081/big-file.

Use quarkus.http.host property to explicitly specify 127.0.0.1 as the bind address.

mvn clean verify -pl 201-large-static-content -Dquarkus.http.host=127.0.0.1