javax.sql.rowset.spi.SyncFactoryException Java Examples
The following examples show how to use
javax.sql.rowset.spi.SyncFactoryException.
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: SyncFactoryExceptionTests.java From jdk8u-jdk with GNU General Public License v2.0 | 6 votes |
@Test public void test04() { SQLException ex = new SyncFactoryException("Exception 1"); ex.initCause(t1); SyncFactoryException ex1 = new SyncFactoryException("Exception 2"); SyncFactoryException ex2 = new SyncFactoryException("Exception 3"); ex2.initCause(t2); ex.setNextException(ex1); ex.setNextException(ex2); int num = 0; while (ex != null) { assertTrue(msgs[num++].equals(ex.getMessage())); Throwable c = ex.getCause(); while (c != null) { assertTrue(msgs[num++].equals(c.getMessage())); c = c.getCause(); } ex = ex.getNextException(); } }
Example #2
Source File: SyncFactoryTests.java From jdk8u60 with GNU General Public License v2.0 | 6 votes |
@Test public void test07() throws SyncFactoryException { // Validate that only the default providers and any specified via // a System property are available validateProviders(initialProviders); // Register a provider and make sure it is avaiable SyncFactory.registerProvider(stubProvider); validateProviders(allProviders); // Check that if a provider is unregistered, it does not show as // registered SyncFactory.unregisterProvider(stubProvider); validateProviders(initialProviders); }
Example #3
Source File: SyncFactoryExceptionTests.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 6 votes |
@Test public void test04() { SQLException ex = new SyncFactoryException("Exception 1"); ex.initCause(t1); SyncFactoryException ex1 = new SyncFactoryException("Exception 2"); SyncFactoryException ex2 = new SyncFactoryException("Exception 3"); ex2.initCause(t2); ex.setNextException(ex1); ex.setNextException(ex2); int num = 0; while (ex != null) { assertTrue(msgs[num++].equals(ex.getMessage())); Throwable c = ex.getCause(); while (c != null) { assertTrue(msgs[num++].equals(c.getMessage())); c = c.getCause(); } ex = ex.getNextException(); } }
Example #4
Source File: SyncFactoryExceptionTests.java From hottub with GNU General Public License v2.0 | 6 votes |
@Test public void test04() { SQLException ex = new SyncFactoryException("Exception 1"); ex.initCause(t1); SyncFactoryException ex1 = new SyncFactoryException("Exception 2"); SyncFactoryException ex2 = new SyncFactoryException("Exception 3"); ex2.initCause(t2); ex.setNextException(ex1); ex.setNextException(ex2); int num = 0; while (ex != null) { assertTrue(msgs[num++].equals(ex.getMessage())); Throwable c = ex.getCause(); while (c != null) { assertTrue(msgs[num++].equals(c.getMessage())); c = c.getCause(); } ex = ex.getNextException(); } }
Example #5
Source File: SyncFactoryExceptionTests.java From jdk8u_jdk with GNU General Public License v2.0 | 6 votes |
@Test public void test04() { SQLException ex = new SyncFactoryException("Exception 1"); ex.initCause(t1); SyncFactoryException ex1 = new SyncFactoryException("Exception 2"); SyncFactoryException ex2 = new SyncFactoryException("Exception 3"); ex2.initCause(t2); ex.setNextException(ex1); ex.setNextException(ex2); int num = 0; while (ex != null) { assertTrue(msgs[num++].equals(ex.getMessage())); Throwable c = ex.getCause(); while (c != null) { assertTrue(msgs[num++].equals(c.getMessage())); c = c.getCause(); } ex = ex.getNextException(); } }
Example #6
Source File: SyncFactoryTests.java From jdk8u-jdk with GNU General Public License v2.0 | 6 votes |
@Test public void test07() throws SyncFactoryException { // Validate that only the default providers and any specified via // a System property are available validateProviders(initialProviders); // Register a provider and make sure it is avaiable SyncFactory.registerProvider(stubProvider); validateProviders(allProviders); // Check that if a provider is unregistered, it does not show as // registered SyncFactory.unregisterProvider(stubProvider); validateProviders(initialProviders); }
Example #7
Source File: SyncFactoryExceptionTests.java From dragonwell8_jdk with GNU General Public License v2.0 | 6 votes |
@Test public void test04() { SQLException ex = new SyncFactoryException("Exception 1"); ex.initCause(t1); SyncFactoryException ex1 = new SyncFactoryException("Exception 2"); SyncFactoryException ex2 = new SyncFactoryException("Exception 3"); ex2.initCause(t2); ex.setNextException(ex1); ex.setNextException(ex2); int num = 0; while (ex != null) { assertTrue(msgs[num++].equals(ex.getMessage())); Throwable c = ex.getCause(); while (c != null) { assertTrue(msgs[num++].equals(c.getMessage())); c = c.getCause(); } ex = ex.getNextException(); } }
Example #8
Source File: SyncFactoryExceptionTests.java From openjdk-jdk9 with GNU General Public License v2.0 | 6 votes |
@Test public void test04() { SQLException ex = new SyncFactoryException("Exception 1"); ex.initCause(t1); SyncFactoryException ex1 = new SyncFactoryException("Exception 2"); SyncFactoryException ex2 = new SyncFactoryException("Exception 3"); ex2.initCause(t2); ex.setNextException(ex1); ex.setNextException(ex2); int num = 0; while (ex != null) { assertTrue(msgs[num++].equals(ex.getMessage())); Throwable c = ex.getCause(); while (c != null) { assertTrue(msgs[num++].equals(c.getMessage())); c = c.getCause(); } ex = ex.getNextException(); } }
Example #9
Source File: SyncFactoryTests.java From jdk8u_jdk with GNU General Public License v2.0 | 6 votes |
@Test public void test07() throws SyncFactoryException { // Validate that only the default providers and any specified via // a System property are available validateProviders(initialProviders); // Register a provider and make sure it is avaiable SyncFactory.registerProvider(stubProvider); validateProviders(allProviders); // Check that if a provider is unregistered, it does not show as // registered SyncFactory.unregisterProvider(stubProvider); validateProviders(initialProviders); }
Example #10
Source File: SyncFactoryTests.java From dragonwell8_jdk with GNU General Public License v2.0 | 6 votes |
@Test public void test07() throws SyncFactoryException { // Validate that only the default providers and any specified via // a System property are available validateProviders(initialProviders); // Register a provider and make sure it is avaiable SyncFactory.registerProvider(stubProvider); validateProviders(allProviders); // Check that if a provider is unregistered, it does not show as // registered SyncFactory.unregisterProvider(stubProvider); validateProviders(initialProviders); }
Example #11
Source File: SyncFactoryTests.java From jdk8u60 with GNU General Public License v2.0 | 5 votes |
private void validateProviders(List<String> expectedProviders) throws SyncFactoryException { List<String> results = new ArrayList<>(); Enumeration<SyncProvider> providers = SyncFactory.getRegisteredProviders(); while (providers.hasMoreElements()) { SyncProvider p = providers.nextElement(); results.add(p.getProviderID()); } assertTrue(expectedProviders.containsAll(results) && results.size() == expectedProviders.size()); }
Example #12
Source File: SyncFactoryTests.java From jdk8u-jdk with GNU General Public License v2.0 | 5 votes |
@Test public void test02() throws SyncFactoryException { SyncProvider p = SyncFactory.getInstance(""); assertTrue(p instanceof RIOptimisticProvider); // Attempt to get an invalid provider and get the default provider p = SyncFactory.getInstance("util.InvalidSyncProvider"); assertTrue(p instanceof RIOptimisticProvider); }
Example #13
Source File: SyncFactoryExceptionTests.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 5 votes |
@Test public void test05() throws Exception { SyncFactoryException e = new SyncFactoryException(reason); SyncFactoryException ex1 = createSerializedException(e); assertTrue(ex1.getMessage().equals(reason) && ex1.getSQLState() == null && ex1.getCause() == null && ex1.getErrorCode() == 0); }
Example #14
Source File: SyncFactoryExceptionTests.java From openjdk-jdk9 with GNU General Public License v2.0 | 5 votes |
@Test public void test01() { SyncFactoryException ex = new SyncFactoryException(); assertTrue(ex.getMessage() == null && ex.getSQLState() == null && ex.getCause() == null && ex.getErrorCode() == 0); }
Example #15
Source File: SyncFactoryExceptionTests.java From jdk8u60 with GNU General Public License v2.0 | 5 votes |
@Test public void test05() throws Exception { SyncFactoryException e = new SyncFactoryException(reason); SyncFactoryException ex1 = createSerializedException(e); assertTrue(ex1.getMessage().equals(reason) && ex1.getSQLState() == null && ex1.getCause() == null && ex1.getErrorCode() == 0); }
Example #16
Source File: SyncFactoryTests.java From openjdk-jdk9 with GNU General Public License v2.0 | 5 votes |
@Test public void test02() throws SyncFactoryException { SyncProvider p = SyncFactory.getInstance(""); assertTrue(p instanceof RIOptimisticProvider); // Attempt to get an invalid provider and get the default provider p = SyncFactory.getInstance("util.InvalidSyncProvider"); assertTrue(p instanceof RIOptimisticProvider); }
Example #17
Source File: SyncFactoryExceptionTests.java From hottub with GNU General Public License v2.0 | 5 votes |
@Test public void test01() { SyncFactoryException ex = new SyncFactoryException(); assertTrue(ex.getMessage() == null && ex.getSQLState() == null && ex.getCause() == null && ex.getErrorCode() == 0); }
Example #18
Source File: SyncFactoryExceptionTests.java From dragonwell8_jdk with GNU General Public License v2.0 | 5 votes |
@Test public void test03() { SyncFactoryException ex = new SyncFactoryException("Exception 1"); ex.initCause(t1); SyncFactoryException ex1 = new SyncFactoryException("Exception 2"); SyncFactoryException ex2 = new SyncFactoryException("Exception 3"); ex2.initCause(t2); ex.setNextException(ex1); ex.setNextException(ex2); int num = 0; for (Throwable e : ex) { assertTrue(msgs[num++].equals(e.getMessage())); } }
Example #19
Source File: SyncFactoryExceptionTests.java From jdk8u-jdk with GNU General Public License v2.0 | 5 votes |
@Test public void test05() throws Exception { SyncFactoryException e = new SyncFactoryException(reason); SyncFactoryException ex1 = createSerializedException(e); assertTrue(ex1.getMessage().equals(reason) && ex1.getSQLState() == null && ex1.getCause() == null && ex1.getErrorCode() == 0); }
Example #20
Source File: SyncFactoryExceptionTests.java From jdk8u_jdk with GNU General Public License v2.0 | 5 votes |
@Test public void test05() throws Exception { SyncFactoryException e = new SyncFactoryException(reason); SyncFactoryException ex1 = createSerializedException(e); assertTrue(ex1.getMessage().equals(reason) && ex1.getSQLState() == null && ex1.getCause() == null && ex1.getErrorCode() == 0); }
Example #21
Source File: SyncFactoryTests.java From TencentKona-8 with GNU General Public License v2.0 | 5 votes |
private void validateProviders(List<String> expectedProviders) throws SyncFactoryException { List<String> results = new ArrayList<>(); Enumeration<SyncProvider> providers = SyncFactory.getRegisteredProviders(); while (providers.hasMoreElements()) { SyncProvider p = providers.nextElement(); results.add(p.getProviderID()); } assertTrue(expectedProviders.containsAll(results) && results.size() == expectedProviders.size()); }
Example #22
Source File: SyncFactoryTests.java From jdk8u_jdk with GNU General Public License v2.0 | 5 votes |
private void validateProviders(List<String> expectedProviders) throws SyncFactoryException { List<String> results = new ArrayList<>(); Enumeration<SyncProvider> providers = SyncFactory.getRegisteredProviders(); while (providers.hasMoreElements()) { SyncProvider p = providers.nextElement(); results.add(p.getProviderID()); } assertTrue(expectedProviders.containsAll(results) && results.size() == expectedProviders.size()); }
Example #23
Source File: SyncFactoryExceptionTests.java From TencentKona-8 with GNU General Public License v2.0 | 5 votes |
@Test public void test03() { SyncFactoryException ex = new SyncFactoryException("Exception 1"); ex.initCause(t1); SyncFactoryException ex1 = new SyncFactoryException("Exception 2"); SyncFactoryException ex2 = new SyncFactoryException("Exception 3"); ex2.initCause(t2); ex.setNextException(ex1); ex.setNextException(ex2); int num = 0; for (Throwable e : ex) { assertTrue(msgs[num++].equals(e.getMessage())); } }
Example #24
Source File: SyncFactoryTests.java From openjdk-jdk9 with GNU General Public License v2.0 | 5 votes |
private void validateProviders(List<String> expectedProviders) throws SyncFactoryException { List<String> results = new ArrayList<>(); Enumeration<SyncProvider> providers = SyncFactory.getRegisteredProviders(); while (providers.hasMoreElements()) { SyncProvider p = providers.nextElement(); results.add(p.getProviderID()); } assertTrue(expectedProviders.containsAll(results) && results.size() == expectedProviders.size()); }
Example #25
Source File: SyncFactoryExceptionTests.java From TencentKona-8 with GNU General Public License v2.0 | 5 votes |
@Test public void test05() throws Exception { SyncFactoryException e = new SyncFactoryException(reason); SyncFactoryException ex1 = createSerializedException(e); assertTrue(ex1.getMessage().equals(reason) && ex1.getSQLState() == null && ex1.getCause() == null && ex1.getErrorCode() == 0); }
Example #26
Source File: SyncFactoryExceptionTests.java From hottub with GNU General Public License v2.0 | 5 votes |
@Test public void test05() throws Exception { SyncFactoryException e = new SyncFactoryException(reason); SyncFactoryException ex1 = createSerializedException(e); assertTrue(ex1.getMessage().equals(reason) && ex1.getSQLState() == null && ex1.getCause() == null && ex1.getErrorCode() == 0); }
Example #27
Source File: SyncFactoryTests.java From openjdk-jdk8u with GNU General Public License v2.0 | 5 votes |
@Test public void test02() throws SyncFactoryException { SyncProvider p = SyncFactory.getInstance(""); assertTrue(p instanceof RIOptimisticProvider); // Attempt to get an invalid provider and get the default provider p = SyncFactory.getInstance("util.InvalidSyncProvider"); assertTrue(p instanceof RIOptimisticProvider); }
Example #28
Source File: SyncFactoryTests.java From hottub with GNU General Public License v2.0 | 5 votes |
@Test public void test02() throws SyncFactoryException { SyncProvider p = SyncFactory.getInstance(""); assertTrue(p instanceof RIOptimisticProvider); // Attempt to get an invalid provider and get the default provider p = SyncFactory.getInstance("util.InvalidSyncProvider"); assertTrue(p instanceof RIOptimisticProvider); }
Example #29
Source File: SyncFactoryExceptionTests.java From jdk8u-jdk with GNU General Public License v2.0 | 5 votes |
@Test public void test02() { SyncFactoryException ex = new SyncFactoryException(reason); assertTrue(ex.getMessage().equals(reason) && ex.getSQLState() == null && ex.getCause() == null && ex.getErrorCode() == 0); }
Example #30
Source File: SyncFactoryExceptionTests.java From hottub with GNU General Public License v2.0 | 5 votes |
@Test public void test03() { SyncFactoryException ex = new SyncFactoryException("Exception 1"); ex.initCause(t1); SyncFactoryException ex1 = new SyncFactoryException("Exception 2"); SyncFactoryException ex2 = new SyncFactoryException("Exception 3"); ex2.initCause(t2); ex.setNextException(ex1); ex.setNextException(ex2); int num = 0; for (Throwable e : ex) { assertTrue(msgs[num++].equals(e.getMessage())); } }