java.sql.SQLTransientConnectionException Java Examples
The following examples show how to use
java.sql.SQLTransientConnectionException.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: SQLTransientConnectionExceptionTests.java From openjdk-jdk9 with GNU General Public License v2.0 | 6 votes |
/** * Validate that the ordering of the returned Exceptions is correct * using traditional while loop */ @Test public void test12() { SQLTransientConnectionException ex = new SQLTransientConnectionException("Exception 1", t1); SQLTransientConnectionException ex1 = new SQLTransientConnectionException("Exception 2"); SQLTransientConnectionException ex2 = new SQLTransientConnectionException("Exception 3", t2); ex.setNextException(ex1); ex.setNextException(ex2); int num = 0; SQLException sqe = ex; while (sqe != null) { assertTrue(msgs[num++].equals(sqe.getMessage())); Throwable c = sqe.getCause(); while (c != null) { assertTrue(msgs[num++].equals(c.getMessage())); c = c.getCause(); } sqe = sqe.getNextException(); } }
Example #2
Source File: SQLTransientConnectionExceptionTests.java From hottub with GNU General Public License v2.0 | 6 votes |
/** * Validate that the ordering of the returned Exceptions is correct * using traditional while loop */ @Test public void test12() { SQLTransientConnectionException ex = new SQLTransientConnectionException("Exception 1", t1); SQLTransientConnectionException ex1 = new SQLTransientConnectionException("Exception 2"); SQLTransientConnectionException ex2 = new SQLTransientConnectionException("Exception 3", t2); ex.setNextException(ex1); ex.setNextException(ex2); int num = 0; SQLException sqe = ex; while (sqe != null) { assertTrue(msgs[num++].equals(sqe.getMessage())); Throwable c = sqe.getCause(); while (c != null) { assertTrue(msgs[num++].equals(c.getMessage())); c = c.getCause(); } sqe = sqe.getNextException(); } }
Example #3
Source File: SQLTransientConnectionExceptionTests.java From jdk8u-jdk with GNU General Public License v2.0 | 6 votes |
/** * Validate that the ordering of the returned Exceptions is correct * using for-each loop */ @Test public void test11() { SQLTransientConnectionException ex = new SQLTransientConnectionException("Exception 1", t1); SQLTransientConnectionException ex1 = new SQLTransientConnectionException("Exception 2"); SQLTransientConnectionException ex2 = new SQLTransientConnectionException("Exception 3", t2); ex.setNextException(ex1); ex.setNextException(ex2); int num = 0; for (Throwable e : ex) { assertTrue(msgs[num++].equals(e.getMessage())); } }
Example #4
Source File: SQLTransientConnectionExceptionTests.java From dragonwell8_jdk with GNU General Public License v2.0 | 6 votes |
/** * Validate that the ordering of the returned Exceptions is correct * using for-each loop */ @Test public void test11() { SQLTransientConnectionException ex = new SQLTransientConnectionException("Exception 1", t1); SQLTransientConnectionException ex1 = new SQLTransientConnectionException("Exception 2"); SQLTransientConnectionException ex2 = new SQLTransientConnectionException("Exception 3", t2); ex.setNextException(ex1); ex.setNextException(ex2); int num = 0; for (Throwable e : ex) { assertTrue(msgs[num++].equals(e.getMessage())); } }
Example #5
Source File: SQLTransientConnectionExceptionTests.java From dragonwell8_jdk with GNU General Public License v2.0 | 6 votes |
/** * Validate that the ordering of the returned Exceptions is correct * using traditional while loop */ @Test public void test12() { SQLTransientConnectionException ex = new SQLTransientConnectionException("Exception 1", t1); SQLTransientConnectionException ex1 = new SQLTransientConnectionException("Exception 2"); SQLTransientConnectionException ex2 = new SQLTransientConnectionException("Exception 3", t2); ex.setNextException(ex1); ex.setNextException(ex2); int num = 0; SQLException sqe = ex; while (sqe != null) { assertTrue(msgs[num++].equals(sqe.getMessage())); Throwable c = sqe.getCause(); while (c != null) { assertTrue(msgs[num++].equals(c.getMessage())); c = c.getCause(); } sqe = sqe.getNextException(); } }
Example #6
Source File: SQLTransientConnectionExceptionTests.java From jdk8u-jdk with GNU General Public License v2.0 | 6 votes |
/** * Validate that the ordering of the returned Exceptions is correct * using traditional while loop */ @Test public void test12() { SQLTransientConnectionException ex = new SQLTransientConnectionException("Exception 1", t1); SQLTransientConnectionException ex1 = new SQLTransientConnectionException("Exception 2"); SQLTransientConnectionException ex2 = new SQLTransientConnectionException("Exception 3", t2); ex.setNextException(ex1); ex.setNextException(ex2); int num = 0; SQLException sqe = ex; while (sqe != null) { assertTrue(msgs[num++].equals(sqe.getMessage())); Throwable c = sqe.getCause(); while (c != null) { assertTrue(msgs[num++].equals(c.getMessage())); c = c.getCause(); } sqe = sqe.getNextException(); } }
Example #7
Source File: SQLTransientConnectionExceptionTests.java From TencentKona-8 with GNU General Public License v2.0 | 6 votes |
/** * Validate that the ordering of the returned Exceptions is correct * using for-each loop */ @Test public void test11() { SQLTransientConnectionException ex = new SQLTransientConnectionException("Exception 1", t1); SQLTransientConnectionException ex1 = new SQLTransientConnectionException("Exception 2"); SQLTransientConnectionException ex2 = new SQLTransientConnectionException("Exception 3", t2); ex.setNextException(ex1); ex.setNextException(ex2); int num = 0; for (Throwable e : ex) { assertTrue(msgs[num++].equals(e.getMessage())); } }
Example #8
Source File: SQLTransientConnectionExceptionTests.java From TencentKona-8 with GNU General Public License v2.0 | 6 votes |
/** * Validate that the ordering of the returned Exceptions is correct * using traditional while loop */ @Test public void test12() { SQLTransientConnectionException ex = new SQLTransientConnectionException("Exception 1", t1); SQLTransientConnectionException ex1 = new SQLTransientConnectionException("Exception 2"); SQLTransientConnectionException ex2 = new SQLTransientConnectionException("Exception 3", t2); ex.setNextException(ex1); ex.setNextException(ex2); int num = 0; SQLException sqe = ex; while (sqe != null) { assertTrue(msgs[num++].equals(sqe.getMessage())); Throwable c = sqe.getCause(); while (c != null) { assertTrue(msgs[num++].equals(c.getMessage())); c = c.getCause(); } sqe = sqe.getNextException(); } }
Example #9
Source File: SQLTransientConnectionExceptionTests.java From openjdk-jdk9 with GNU General Public License v2.0 | 6 votes |
/** * Validate that the ordering of the returned Exceptions is correct * using for-each loop */ @Test public void test11() { SQLTransientConnectionException ex = new SQLTransientConnectionException("Exception 1", t1); SQLTransientConnectionException ex1 = new SQLTransientConnectionException("Exception 2"); SQLTransientConnectionException ex2 = new SQLTransientConnectionException("Exception 3", t2); ex.setNextException(ex1); ex.setNextException(ex2); int num = 0; for (Throwable e : ex) { assertTrue(msgs[num++].equals(e.getMessage())); } }
Example #10
Source File: SQLTransientConnectionExceptionTests.java From jdk8u_jdk with GNU General Public License v2.0 | 6 votes |
/** * Validate that the ordering of the returned Exceptions is correct * using for-each loop */ @Test public void test11() { SQLTransientConnectionException ex = new SQLTransientConnectionException("Exception 1", t1); SQLTransientConnectionException ex1 = new SQLTransientConnectionException("Exception 2"); SQLTransientConnectionException ex2 = new SQLTransientConnectionException("Exception 3", t2); ex.setNextException(ex1); ex.setNextException(ex2); int num = 0; for (Throwable e : ex) { assertTrue(msgs[num++].equals(e.getMessage())); } }
Example #11
Source File: ConnectionManagerTest.java From pxf with Apache License 2.0 | 6 votes |
@Test public void testGetConnectionPoolEnabledMaxConnOne() throws SQLException { expectedException.expect(SQLTransientConnectionException.class); expectedException.expectMessage(containsString(" - Connection is not available, request timed out after ")); Driver mockDriver = mock(Driver.class); when(DriverManager.getDriver("test-url")).thenReturn(mockDriver); when(mockDriver.connect("test-url", connProps)).thenReturn(mockConnection); poolProps.setProperty("maximumPoolSize", "1"); poolProps.setProperty("connectionTimeout", "250"); // get connection, do not close it manager.getConnection("test-server", "test-url", connProps, true, poolProps, null); // ask for connection again, it should time out manager.getConnection("test-server", "test-url", connProps, true, poolProps, null); }
Example #12
Source File: SQLTransientConnectionExceptionTests.java From jdk8u60 with GNU General Public License v2.0 | 6 votes |
/** * Validate that the ordering of the returned Exceptions is correct * using traditional while loop */ @Test public void test12() { SQLTransientConnectionException ex = new SQLTransientConnectionException("Exception 1", t1); SQLTransientConnectionException ex1 = new SQLTransientConnectionException("Exception 2"); SQLTransientConnectionException ex2 = new SQLTransientConnectionException("Exception 3", t2); ex.setNextException(ex1); ex.setNextException(ex2); int num = 0; SQLException sqe = ex; while (sqe != null) { assertTrue(msgs[num++].equals(sqe.getMessage())); Throwable c = sqe.getCause(); while (c != null) { assertTrue(msgs[num++].equals(c.getMessage())); c = c.getCause(); } sqe = sqe.getNextException(); } }
Example #13
Source File: SQLTransientConnectionExceptionTests.java From jdk8u-jdk with GNU General Public License v2.0 | 5 votes |
/** * Create SQLTransientConnectionException and setting all objects to null */ @Test public void test() { SQLTransientConnectionException e = new SQLTransientConnectionException( null, null, errorCode, null); assertTrue(e.getMessage() == null && e.getSQLState() == null && e.getCause() == null && e.getErrorCode() == errorCode); }
Example #14
Source File: SQLTransientConnectionExceptionTests.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 5 votes |
/** * Create SQLTransientConnectionException and setting all objects to null */ @Test public void test() { SQLTransientConnectionException e = new SQLTransientConnectionException( null, null, errorCode, null); assertTrue(e.getMessage() == null && e.getSQLState() == null && e.getCause() == null && e.getErrorCode() == errorCode); }
Example #15
Source File: SQLTransientConnectionExceptionTests.java From jdk8u-jdk with GNU General Public License v2.0 | 5 votes |
/** * Create SQLTransientConnectionException with message, and Throwable */ @Test public void test7() { SQLTransientConnectionException ex = new SQLTransientConnectionException(reason, t); assertTrue(ex.getMessage().equals(reason) && ex.getSQLState() == null && cause.equals(ex.getCause().toString()) && ex.getErrorCode() == 0); }
Example #16
Source File: SQLTransientConnectionExceptionTests.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 5 votes |
/** * Serialize a SQLTransientConnectionException and make sure you can read it back properly */ @Test public void test10() throws Exception { SQLTransientConnectionException e = new SQLTransientConnectionException(reason, state, errorCode, t); SQLTransientConnectionException ex1 = createSerializedException(e); assertTrue(reason.equals(ex1.getMessage()) && ex1.getSQLState().equals(state) && cause.equals(ex1.getCause().toString()) && ex1.getErrorCode() == errorCode); }
Example #17
Source File: SQLTransientConnectionExceptionTests.java From openjdk-jdk8u with GNU General Public License v2.0 | 5 votes |
/** * Create SQLTransientConnectionException with message, and Throwable */ @Test public void test7() { SQLTransientConnectionException ex = new SQLTransientConnectionException(reason, t); assertTrue(ex.getMessage().equals(reason) && ex.getSQLState() == null && cause.equals(ex.getCause().toString()) && ex.getErrorCode() == 0); }
Example #18
Source File: SQLTransientConnectionExceptionTests.java From openjdk-jdk8u with GNU General Public License v2.0 | 5 votes |
/** * Create SQLTransientConnectionException with message, SQLState, and Throwable */ @Test public void test6() { SQLTransientConnectionException ex = new SQLTransientConnectionException(reason, state, t); assertTrue(ex.getMessage().equals(reason) && ex.getSQLState().equals(state) && cause.equals(ex.getCause().toString()) && ex.getErrorCode() == 0); }
Example #19
Source File: SQLTransientConnectionExceptionTests.java From jdk8u-jdk with GNU General Public License v2.0 | 5 votes |
/** * Create SQLTransientConnectionException with message */ @Test public void test2() { SQLTransientConnectionException ex = new SQLTransientConnectionException(reason); assertTrue(ex.getMessage().equals(reason) && ex.getSQLState() == null && ex.getCause() == null && ex.getErrorCode() == 0); }
Example #20
Source File: SQLTransientConnectionExceptionTests.java From openjdk-jdk9 with GNU General Public License v2.0 | 5 votes |
/** * Create SQLTransientConnectionException with null Throwable */ @Test public void test8() { SQLTransientConnectionException ex = new SQLTransientConnectionException((Throwable)null); assertTrue(ex.getMessage() == null && ex.getSQLState() == null && ex.getCause() == null && ex.getErrorCode() == 0); }
Example #21
Source File: SQLTransientConnectionExceptionTests.java From openjdk-jdk8u with GNU General Public License v2.0 | 5 votes |
/** * Create SQLTransientConnectionException with message, SQLState, and error code */ @Test public void test4() {; SQLTransientConnectionException ex = new SQLTransientConnectionException(reason, state, errorCode); assertTrue(ex.getMessage().equals(reason) && ex.getSQLState().equals(state) && ex.getCause() == null && ex.getErrorCode() == errorCode); }
Example #22
Source File: SQLTransientConnectionExceptionTests.java From jdk8u-jdk with GNU General Public License v2.0 | 5 votes |
/** * Create SQLTransientConnectionException with message, SQLState, errorCode, and Throwable */ @Test public void test5() { SQLTransientConnectionException ex = new SQLTransientConnectionException(reason, state, errorCode, t); assertTrue(ex.getMessage().equals(reason) && ex.getSQLState().equals(state) && cause.equals(ex.getCause().toString()) && ex.getErrorCode() == errorCode); }
Example #23
Source File: SQLTransientConnectionExceptionTests.java From openjdk-jdk8u with GNU General Public License v2.0 | 5 votes |
/** * Create SQLTransientConnectionException with message */ @Test public void test2() { SQLTransientConnectionException ex = new SQLTransientConnectionException(reason); assertTrue(ex.getMessage().equals(reason) && ex.getSQLState() == null && ex.getCause() == null && ex.getErrorCode() == 0); }
Example #24
Source File: SQLTransientConnectionExceptionTests.java From hottub with GNU General Public License v2.0 | 5 votes |
/** * Create SQLTransientConnectionException with message, and Throwable */ @Test public void test7() { SQLTransientConnectionException ex = new SQLTransientConnectionException(reason, t); assertTrue(ex.getMessage().equals(reason) && ex.getSQLState() == null && cause.equals(ex.getCause().toString()) && ex.getErrorCode() == 0); }
Example #25
Source File: SQLTransientConnectionExceptionTests.java From jdk8u_jdk with GNU General Public License v2.0 | 5 votes |
/** * Create SQLTransientConnectionException and setting all objects to null */ @Test public void test() { SQLTransientConnectionException e = new SQLTransientConnectionException( null, null, errorCode, null); assertTrue(e.getMessage() == null && e.getSQLState() == null && e.getCause() == null && e.getErrorCode() == errorCode); }
Example #26
Source File: SQLTransientConnectionExceptionTests.java From openjdk-jdk9 with GNU General Public License v2.0 | 5 votes |
/** * Create SQLTransientConnectionException and setting all objects to null */ @Test public void test() { SQLTransientConnectionException e = new SQLTransientConnectionException( null, null, errorCode, null); assertTrue(e.getMessage() == null && e.getSQLState() == null && e.getCause() == null && e.getErrorCode() == errorCode); }
Example #27
Source File: SQLTransientConnectionExceptionTests.java From openjdk-jdk9 with GNU General Public License v2.0 | 5 votes |
/** * Create SQLTransientConnectionException with no-arg constructor */ @Test public void test1() { SQLTransientConnectionException ex = new SQLTransientConnectionException(); assertTrue(ex.getMessage() == null && ex.getSQLState() == null && ex.getCause() == null && ex.getErrorCode() == 0); }
Example #28
Source File: SQLTransientConnectionExceptionTests.java From jdk8u_jdk with GNU General Public License v2.0 | 5 votes |
/** * Create SQLTransientConnectionException with message, SQLState, and error code */ @Test public void test4() {; SQLTransientConnectionException ex = new SQLTransientConnectionException(reason, state, errorCode); assertTrue(ex.getMessage().equals(reason) && ex.getSQLState().equals(state) && ex.getCause() == null && ex.getErrorCode() == errorCode); }
Example #29
Source File: SQLTransientConnectionExceptionTests.java From openjdk-jdk9 with GNU General Public License v2.0 | 5 votes |
/** * Create SQLTransientConnectionException with message */ @Test public void test2() { SQLTransientConnectionException ex = new SQLTransientConnectionException(reason); assertTrue(ex.getMessage().equals(reason) && ex.getSQLState() == null && ex.getCause() == null && ex.getErrorCode() == 0); }
Example #30
Source File: SQLTransientConnectionExceptionTests.java From openjdk-jdk8u with GNU General Public License v2.0 | 5 votes |
/** * Create SQLTransientConnectionException with null Throwable */ @Test public void test8() { SQLTransientConnectionException ex = new SQLTransientConnectionException((Throwable)null); assertTrue(ex.getMessage() == null && ex.getSQLState() == null && ex.getCause() == null && ex.getErrorCode() == 0); }