sonataflow-devmode-image
can't load Dev UI during e2e tests
#1818
Labels
area:sonataflow
Related to CNCF Serverless Workflow Spec and SonataFlow
With the update to Quarkus 3.15, the Dev UI is only accessible via
localhost
or127.0.0.1
[1].It can be configured to be accessed via another hostname via
quarkus.dev-ui.hosts
property orQUARKUS_DEV_UI_HOSTS
env var. Unfortunately, during automated tests, we can't always know what the container's hostname will be, and this configuration can only accept a list of strings.From Quarkus 3.16 onwards this configuration accepts regex [2], so this may be fixed when we update to that.
With this limitation, the
Scenario: verify that the serverless workflow devui is running
test from thesonataflow-devmode-image
package was changed to check for an HTTP status403
instead of200
for now. [3][1] quarkusio/quarkus#40979
[2] quarkusio/quarkus#42618
[3] apache/incubator-kie-tools#2892
The text was updated successfully, but these errors were encountered: