diff --git a/vertx-core/src/test/java/io/vertx/tests/http/WebSocketTest.java b/vertx-core/src/test/java/io/vertx/tests/http/WebSocketTest.java index 2d7f5eaa6d8..ec45aeb927c 100644 --- a/vertx-core/src/test/java/io/vertx/tests/http/WebSocketTest.java +++ b/vertx-core/src/test/java/io/vertx/tests/http/WebSocketTest.java @@ -582,8 +582,6 @@ public void testHandleWSManually() throws Exception { @Test public void testSharedServersRoundRobin() throws Exception { - // assumeTrue(TRANSPORT != Transport.IO_URING); - int numServers = VertxOptions.DEFAULT_EVENT_LOOP_POOL_SIZE / 2- 1; int numConnections = numServers * 100; diff --git a/vertx-core/src/test/java/io/vertx/tests/tls/HttpTLSTest.java b/vertx-core/src/test/java/io/vertx/tests/tls/HttpTLSTest.java index 2044bcf0aef..5e3e7cf9835 100755 --- a/vertx-core/src/test/java/io/vertx/tests/tls/HttpTLSTest.java +++ b/vertx-core/src/test/java/io/vertx/tests/tls/HttpTLSTest.java @@ -1552,7 +1552,6 @@ public void testHttpsProxy() throws Exception { } private void testProxy(ProxyType proxyType) throws Exception { - // assumeTrue(TRANSPORT != Transport.IO_URING); startProxy(null, proxyType); testTLS(Cert.NONE, Trust.SERVER_JKS, Cert.SERVER_JKS, Trust.NONE).useProxy(proxyType).pass(); assertNotNull("connection didn't access the proxy", proxy.getLastUri()); @@ -1568,7 +1567,6 @@ public void testHttpsProxyWithSNI() throws Exception { } private void testProxyWithSNI(ProxyType proxyType) throws Exception { - // assumeTrue(TRANSPORT != Transport.IO_URING); startProxy(null, proxyType); Certificate cert = testTLS(Cert.NONE, Trust.SNI_JKS_HOST2, Cert.SNI_JKS, Trust.NONE) .serverSni() @@ -1584,7 +1582,6 @@ private void testProxyWithSNI(ProxyType proxyType) throws Exception { @Test // Check that proxy auth fails if it is missing public void testHttpsProxyAuthFail() throws Exception { - // assumeTrue(TRANSPORT != Transport.IO_URING); startProxy("username", ProxyType.HTTP); testTLS(Cert.NONE, Trust.SERVER_JKS, Cert.SERVER_JKS, Trust.NONE).useProxy(ProxyType.HTTP).fail(); } @@ -1592,7 +1589,6 @@ public void testHttpsProxyAuthFail() throws Exception { @Test // Access https server via connect proxy with proxy auth required public void testHttpsProxyAuth() throws Exception { - // assumeTrue(TRANSPORT != Transport.IO_URING); startProxy("username", ProxyType.HTTP); testTLS(Cert.NONE, Trust.SERVER_JKS, Cert.SERVER_JKS, Trust.NONE).useProxy(ProxyType.HTTP).useProxyAuth().pass(); assertNotNull("connection didn't access the proxy", proxy.getLastUri()); @@ -1606,7 +1602,6 @@ public void testHttpsProxyAuth() throws Exception { // the hostname may resolve at the proxy if that is accessing another DNS // we simulate this by mapping the hostname to localhost:xxx in the test proxy code public void testHttpsProxyUnknownHost() throws Exception { - // assumeTrue(TRANSPORT != Transport.IO_URING); startProxy(null, ProxyType.HTTP); proxy.setForceUri(DEFAULT_HTTPS_HOST_AND_PORT); testTLS(Cert.NONE, Trust.SERVER_JKS, Cert.SERVER_JKS, Trust.NONE).useProxy(ProxyType.HTTP)