Skip to content

Commit f0178c4

Browse files
committed
Revert "Disable OracleConnectionTest#testConnectNoLeak tests (eclipse-vertx#1482)"
This reverts commit c30df2f.
1 parent 25d9056 commit f0178c4

File tree

1 file changed

+0
-22
lines changed

1 file changed

+0
-22
lines changed

vertx-oracle-client/src/test/java/io/vertx/oracleclient/test/tck/OracleConnectionTest.java

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@
1616
import io.vertx.sqlclient.spi.DatabaseMetadata;
1717
import io.vertx.sqlclient.tck.ConnectionTestBase;
1818
import org.junit.ClassRule;
19-
import org.junit.Ignore;
20-
import org.junit.Test;
2119
import org.junit.runner.RunWith;
2220

2321
@RunWith(VertxUnitRunner.class)
@@ -43,24 +41,4 @@ protected void validateDatabaseMetaData(TestContext ctx, DatabaseMetadata md) {
4341
ctx.assertTrue(md.fullVersion().contains("Oracle"));
4442
ctx.assertTrue(md.productName().contains("Oracle"));
4543
}
46-
47-
@Test
48-
@Ignore
49-
@Override
50-
public void testConnectNoLeak(TestContext ctx) throws Exception {
51-
// Disabled for Oracle because we frequently get ORA-12516 Cannot connect to database
52-
// https://docs.oracle.com/en/error-help/db/ora-12516/?r=23ai
53-
// Probable cause is that the service handler gets in a blocked state and is not accepting new connections
54-
super.testConnectNoLeak(ctx);
55-
}
56-
57-
@Test
58-
@Ignore
59-
@Override
60-
public void testConnectNoLeakInVerticle(TestContext ctx) throws Exception {
61-
// Disabled for Oracle because we frequently get ORA-12516 Cannot connect to database
62-
// https://docs.oracle.com/en/error-help/db/ora-12516/?r=23ai
63-
// Probable cause is that the service handler gets in a blocked state and is not accepting new connections
64-
super.testConnectNoLeakInVerticle(ctx);
65-
}
6644
}

0 commit comments

Comments
 (0)