This is an automated email from the ASF dual-hosted git repository. jamesnetherton pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
commit cca405e87b88199b85d934c926583abe739f2c93 Author: James Netherton <[email protected]> AuthorDate: Wed Jan 14 15:37:24 2026 +0000 Disable netty-http authentication tests due to #8147 --- .../apache/camel/quarkus/component/http/netty/NettyHttpResource.java | 4 ++++ .../apache/camel/quarkus/component/http/netty/it/NettyHttpTest.java | 3 +++ 2 files changed, 7 insertions(+) diff --git a/integration-test-groups/http/netty-http/src/main/java/org/apache/camel/quarkus/component/http/netty/NettyHttpResource.java b/integration-test-groups/http/netty-http/src/main/java/org/apache/camel/quarkus/component/http/netty/NettyHttpResource.java index e482ddce8a..bf00aafdaa 100644 --- a/integration-test-groups/http/netty-http/src/main/java/org/apache/camel/quarkus/component/http/netty/NettyHttpResource.java +++ b/integration-test-groups/http/netty-http/src/main/java/org/apache/camel/quarkus/component/http/netty/NettyHttpResource.java @@ -178,9 +178,13 @@ public class NettyHttpResource extends AbstractHttpResource { @Path("/auth/{path}/{user}/{password}") public Response auth(@QueryParam("test-port") int port, @PathParam("path") String path, @PathParam("user") String user, @PathParam("password") String password) { + + System.out.println("===== GOT PORT: " + port); + final Exchange exchange = producerTemplate.toF("netty-http:http://localhost:%d/%s", port, path) .withHeaders(getAuthHeaders(user, password)) .send(); + System.out.println("===== GOT exchange: " + exchange); return Response.status(exchange.getIn().getHeader(Exchange.HTTP_RESPONSE_CODE, Integer.class)).build(); } diff --git a/integration-test-groups/http/netty-http/src/test/java/org/apache/camel/quarkus/component/http/netty/it/NettyHttpTest.java b/integration-test-groups/http/netty-http/src/test/java/org/apache/camel/quarkus/component/http/netty/it/NettyHttpTest.java index 8c5e1c76a0..e6a7999c8f 100644 --- a/integration-test-groups/http/netty-http/src/test/java/org/apache/camel/quarkus/component/http/netty/it/NettyHttpTest.java +++ b/integration-test-groups/http/netty-http/src/test/java/org/apache/camel/quarkus/component/http/netty/it/NettyHttpTest.java @@ -29,6 +29,7 @@ import org.apache.camel.quarkus.component.http.common.AbstractHttpTest; import org.apache.camel.quarkus.component.http.common.HttpTestResource; import org.apache.camel.quarkus.test.support.certificate.TestCertificates; import org.eclipse.microprofile.config.ConfigProvider; +import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; import org.junit.jupiter.params.ParameterizedTest; import org.junit.jupiter.params.provider.CsvSource; @@ -143,6 +144,7 @@ public class NettyHttpTest extends AbstractHttpTest { .body(is("proxy")); } + @Disabled("https://github.com/apache/camel-quarkus/issues/8147") @ParameterizedTest @CsvSource({ "null,null,401", @@ -160,6 +162,7 @@ public class NettyHttpTest extends AbstractHttpTest { .statusCode(responseCode); } + @Disabled("https://github.com/apache/camel-quarkus/issues/8147") @ParameterizedTest @CsvSource({ "admin,admin,adminpass,200",
