http://git-wip-us.apache.org/repos/asf/commons-dbcp/blob/64a13ee3/src/test/java/org/apache/commons/dbcp2/TestDelegatingDatabaseMetaData.java ---------------------------------------------------------------------- diff --git a/src/test/java/org/apache/commons/dbcp2/TestDelegatingDatabaseMetaData.java b/src/test/java/org/apache/commons/dbcp2/TestDelegatingDatabaseMetaData.java index 03a806b..57a339e 100644 --- a/src/test/java/org/apache/commons/dbcp2/TestDelegatingDatabaseMetaData.java +++ b/src/test/java/org/apache/commons/dbcp2/TestDelegatingDatabaseMetaData.java @@ -18,11 +18,16 @@ package org.apache.commons.dbcp2; import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertFalse; +import static org.junit.Assert.assertNull; import static org.junit.Assert.assertTrue; +import static org.mockito.Mockito.mock; +import static org.mockito.Mockito.times; +import static org.mockito.Mockito.verify; -import java.sql.Connection; import java.sql.DatabaseMetaData; import java.sql.ResultSet; +import java.sql.SQLException; import org.junit.Before; import org.junit.Test; @@ -32,31 +37,1453 @@ import org.junit.Test; */ public class TestDelegatingDatabaseMetaData { - private DelegatingConnection<Connection> conn = null; - private Connection delegateConn = null; - private DelegatingDatabaseMetaData meta = null; - private DatabaseMetaData delegateMeta = null; + private TesterConnection testConn; + private DelegatingConnection<?> conn = null; + private DelegatingDatabaseMetaData delegate = null; + private DatabaseMetaData obj = null; @Before public void setUp() throws Exception { - delegateConn = new TesterConnection("test", "test"); - delegateMeta = delegateConn.getMetaData(); - conn = new DelegatingConnection<>(delegateConn); - meta = new DelegatingDatabaseMetaData(conn,delegateMeta); + obj = mock(DatabaseMetaData.class); + testConn = new TesterConnection("test", "test"); + conn = new DelegatingConnection<>(testConn); + delegate = new DelegatingDatabaseMetaData(conn, obj); } @Test public void testGetDelegate() throws Exception { - assertEquals(delegateMeta,meta.getDelegate()); + assertEquals(obj ,delegate.getDelegate()); } @Test /* JDBC_4_ANT_KEY_BEGIN */ public void testCheckOpen() throws Exception { - final ResultSet rst = meta.getSchemas(); + delegate = new DelegatingDatabaseMetaData(conn, conn.getMetaData()); + final ResultSet rst = delegate.getSchemas(); assertTrue(!rst.isClosed()); conn.close(); assertTrue(rst.isClosed()); } /* JDBC_4_ANT_KEY_END */ + + @Test + public void testAllProceduresAreCallable() throws Exception { + try { + delegate.allProceduresAreCallable(); + } catch (SQLException e) {} + verify(obj, times(1)).allProceduresAreCallable(); + } + + @Test + public void testAllTablesAreSelectable() throws Exception { + try { + delegate.allTablesAreSelectable(); + } catch (SQLException e) {} + verify(obj, times(1)).allTablesAreSelectable(); + } + + @Test + public void testAutoCommitFailureClosesAllResultSets() throws Exception { + try { + delegate.autoCommitFailureClosesAllResultSets(); + } catch (SQLException e) {} + verify(obj, times(1)).autoCommitFailureClosesAllResultSets(); + } + + @Test + public void testDataDefinitionCausesTransactionCommit() throws Exception { + try { + delegate.dataDefinitionCausesTransactionCommit(); + } catch (SQLException e) {} + verify(obj, times(1)).dataDefinitionCausesTransactionCommit(); + } + + @Test + public void testDataDefinitionIgnoredInTransactions() throws Exception { + try { + delegate.dataDefinitionIgnoredInTransactions(); + } catch (SQLException e) {} + verify(obj, times(1)).dataDefinitionIgnoredInTransactions(); + } + + @Test + public void testDeletesAreDetectedInteger() throws Exception { + try { + delegate.deletesAreDetected(1); + } catch (SQLException e) {} + verify(obj, times(1)).deletesAreDetected(1); + } + + @Test + public void testDoesMaxRowSizeIncludeBlobs() throws Exception { + try { + delegate.doesMaxRowSizeIncludeBlobs(); + } catch (SQLException e) {} + verify(obj, times(1)).doesMaxRowSizeIncludeBlobs(); + } + + @Test + public void testGeneratedKeyAlwaysReturned() throws Exception { + try { + delegate.generatedKeyAlwaysReturned(); + } catch (SQLException e) {} + verify(obj, times(1)).generatedKeyAlwaysReturned(); + } + + @Test + public void testGetAttributesStringStringStringString() throws Exception { + try { + delegate.getAttributes("foo","foo","foo","foo"); + } catch (SQLException e) {} + verify(obj, times(1)).getAttributes("foo","foo","foo","foo"); + } + + @Test + public void testGetBestRowIdentifierStringStringStringIntegerBoolean() throws Exception { + try { + delegate.getBestRowIdentifier("foo","foo","foo",1,Boolean.TRUE); + } catch (SQLException e) {} + verify(obj, times(1)).getBestRowIdentifier("foo","foo","foo",1,Boolean.TRUE); + } + + @Test + public void testGetCatalogSeparator() throws Exception { + try { + delegate.getCatalogSeparator(); + } catch (SQLException e) {} + verify(obj, times(1)).getCatalogSeparator(); + } + + @Test + public void testGetCatalogTerm() throws Exception { + try { + delegate.getCatalogTerm(); + } catch (SQLException e) {} + verify(obj, times(1)).getCatalogTerm(); + } + + @Test + public void testGetCatalogs() throws Exception { + try { + delegate.getCatalogs(); + } catch (SQLException e) {} + verify(obj, times(1)).getCatalogs(); + } + + @Test + public void testGetClientInfoProperties() throws Exception { + try { + delegate.getClientInfoProperties(); + } catch (SQLException e) {} + verify(obj, times(1)).getClientInfoProperties(); + } + + @Test + public void testGetColumnPrivilegesStringStringStringString() throws Exception { + try { + delegate.getColumnPrivileges("foo","foo","foo","foo"); + } catch (SQLException e) {} + verify(obj, times(1)).getColumnPrivileges("foo","foo","foo","foo"); + } + + @Test + public void testGetColumnsStringStringStringString() throws Exception { + try { + delegate.getColumns("foo","foo","foo","foo"); + } catch (SQLException e) {} + verify(obj, times(1)).getColumns("foo","foo","foo","foo"); + } + + /** + * This method is a bit special, and doesn't call the method on the wrapped object, + * instead returning the connection from the delegate object itself. + * @throws Exception + */ + @Test + public void testGetConnection() throws Exception { + try { + delegate.getConnection(); + } catch (SQLException e) {} + verify(obj, times(0)).getConnection(); + } + + @Test + public void testGetCrossReferenceStringStringStringStringStringString() throws Exception { + try { + delegate.getCrossReference("foo","foo","foo","foo","foo","foo"); + } catch (SQLException e) {} + verify(obj, times(1)).getCrossReference("foo","foo","foo","foo","foo","foo"); + } + + @Test + public void testGetDatabaseMajorVersion() throws Exception { + try { + delegate.getDatabaseMajorVersion(); + } catch (SQLException e) {} + verify(obj, times(1)).getDatabaseMajorVersion(); + } + + @Test + public void testGetDatabaseMinorVersion() throws Exception { + try { + delegate.getDatabaseMinorVersion(); + } catch (SQLException e) {} + verify(obj, times(1)).getDatabaseMinorVersion(); + } + + @Test + public void testGetDatabaseProductName() throws Exception { + try { + delegate.getDatabaseProductName(); + } catch (SQLException e) {} + verify(obj, times(1)).getDatabaseProductName(); + } + + @Test + public void testGetDatabaseProductVersion() throws Exception { + try { + delegate.getDatabaseProductVersion(); + } catch (SQLException e) {} + verify(obj, times(1)).getDatabaseProductVersion(); + } + + @Test + public void testGetDefaultTransactionIsolation() throws Exception { + try { + delegate.getDefaultTransactionIsolation(); + } catch (SQLException e) {} + verify(obj, times(1)).getDefaultTransactionIsolation(); + } + + @Test + public void testGetDriverMajorVersion() throws Exception { + delegate.getDriverMajorVersion(); + verify(obj, times(1)).getDriverMajorVersion(); + } + + @Test + public void testGetDriverMinorVersion() throws Exception { + delegate.getDriverMinorVersion(); + verify(obj, times(1)).getDriverMinorVersion(); + } + + @Test + public void testGetDriverName() throws Exception { + try { + delegate.getDriverName(); + } catch (SQLException e) {} + verify(obj, times(1)).getDriverName(); + } + + @Test + public void testGetDriverVersion() throws Exception { + try { + delegate.getDriverVersion(); + } catch (SQLException e) {} + verify(obj, times(1)).getDriverVersion(); + } + + @Test + public void testGetExportedKeysStringStringString() throws Exception { + try { + delegate.getExportedKeys("foo","foo","foo"); + } catch (SQLException e) {} + verify(obj, times(1)).getExportedKeys("foo","foo","foo"); + } + + @Test + public void testGetExtraNameCharacters() throws Exception { + try { + delegate.getExtraNameCharacters(); + } catch (SQLException e) {} + verify(obj, times(1)).getExtraNameCharacters(); + } + + @Test + public void testGetFunctionColumnsStringStringStringString() throws Exception { + try { + delegate.getFunctionColumns("foo","foo","foo","foo"); + } catch (SQLException e) {} + verify(obj, times(1)).getFunctionColumns("foo","foo","foo","foo"); + } + + @Test + public void testGetFunctionsStringStringString() throws Exception { + try { + delegate.getFunctions("foo","foo","foo"); + } catch (SQLException e) {} + verify(obj, times(1)).getFunctions("foo","foo","foo"); + } + + @Test + public void testGetIdentifierQuoteString() throws Exception { + try { + delegate.getIdentifierQuoteString(); + } catch (SQLException e) {} + verify(obj, times(1)).getIdentifierQuoteString(); + } + + @Test + public void testGetImportedKeysStringStringString() throws Exception { + try { + delegate.getImportedKeys("foo","foo","foo"); + } catch (SQLException e) {} + verify(obj, times(1)).getImportedKeys("foo","foo","foo"); + } + + @Test + public void testGetIndexInfoStringStringStringBooleanBoolean() throws Exception { + try { + delegate.getIndexInfo("foo","foo","foo",Boolean.TRUE,Boolean.TRUE); + } catch (SQLException e) {} + verify(obj, times(1)).getIndexInfo("foo","foo","foo",Boolean.TRUE,Boolean.TRUE); + } + + @Test + public void testGetJDBCMajorVersion() throws Exception { + try { + delegate.getJDBCMajorVersion(); + } catch (SQLException e) {} + verify(obj, times(1)).getJDBCMajorVersion(); + } + + @Test + public void testGetJDBCMinorVersion() throws Exception { + try { + delegate.getJDBCMinorVersion(); + } catch (SQLException e) {} + verify(obj, times(1)).getJDBCMinorVersion(); + } + + @Test + public void testGetMaxBinaryLiteralLength() throws Exception { + try { + delegate.getMaxBinaryLiteralLength(); + } catch (SQLException e) {} + verify(obj, times(1)).getMaxBinaryLiteralLength(); + } + + @Test + public void testGetMaxCatalogNameLength() throws Exception { + try { + delegate.getMaxCatalogNameLength(); + } catch (SQLException e) {} + verify(obj, times(1)).getMaxCatalogNameLength(); + } + + @Test + public void testGetMaxCharLiteralLength() throws Exception { + try { + delegate.getMaxCharLiteralLength(); + } catch (SQLException e) {} + verify(obj, times(1)).getMaxCharLiteralLength(); + } + + @Test + public void testGetMaxColumnNameLength() throws Exception { + try { + delegate.getMaxColumnNameLength(); + } catch (SQLException e) {} + verify(obj, times(1)).getMaxColumnNameLength(); + } + + @Test + public void testGetMaxColumnsInGroupBy() throws Exception { + try { + delegate.getMaxColumnsInGroupBy(); + } catch (SQLException e) {} + verify(obj, times(1)).getMaxColumnsInGroupBy(); + } + + @Test + public void testGetMaxColumnsInIndex() throws Exception { + try { + delegate.getMaxColumnsInIndex(); + } catch (SQLException e) {} + verify(obj, times(1)).getMaxColumnsInIndex(); + } + + @Test + public void testGetMaxColumnsInOrderBy() throws Exception { + try { + delegate.getMaxColumnsInOrderBy(); + } catch (SQLException e) {} + verify(obj, times(1)).getMaxColumnsInOrderBy(); + } + + @Test + public void testGetMaxColumnsInSelect() throws Exception { + try { + delegate.getMaxColumnsInSelect(); + } catch (SQLException e) {} + verify(obj, times(1)).getMaxColumnsInSelect(); + } + + @Test + public void testGetMaxColumnsInTable() throws Exception { + try { + delegate.getMaxColumnsInTable(); + } catch (SQLException e) {} + verify(obj, times(1)).getMaxColumnsInTable(); + } + + @Test + public void testGetMaxConnections() throws Exception { + try { + delegate.getMaxConnections(); + } catch (SQLException e) {} + verify(obj, times(1)).getMaxConnections(); + } + + @Test + public void testGetMaxCursorNameLength() throws Exception { + try { + delegate.getMaxCursorNameLength(); + } catch (SQLException e) {} + verify(obj, times(1)).getMaxCursorNameLength(); + } + + @Test + public void testGetMaxIndexLength() throws Exception { + try { + delegate.getMaxIndexLength(); + } catch (SQLException e) {} + verify(obj, times(1)).getMaxIndexLength(); + } + + @Test + public void testGetMaxLogicalLobSize() throws Exception { + try { + delegate.getMaxLogicalLobSize(); + } catch (SQLException e) {} + verify(obj, times(1)).getMaxLogicalLobSize(); + } + + @Test + public void testGetMaxProcedureNameLength() throws Exception { + try { + delegate.getMaxProcedureNameLength(); + } catch (SQLException e) {} + verify(obj, times(1)).getMaxProcedureNameLength(); + } + + @Test + public void testGetMaxRowSize() throws Exception { + try { + delegate.getMaxRowSize(); + } catch (SQLException e) {} + verify(obj, times(1)).getMaxRowSize(); + } + + @Test + public void testGetMaxSchemaNameLength() throws Exception { + try { + delegate.getMaxSchemaNameLength(); + } catch (SQLException e) {} + verify(obj, times(1)).getMaxSchemaNameLength(); + } + + @Test + public void testGetMaxStatementLength() throws Exception { + try { + delegate.getMaxStatementLength(); + } catch (SQLException e) {} + verify(obj, times(1)).getMaxStatementLength(); + } + + @Test + public void testGetMaxStatements() throws Exception { + try { + delegate.getMaxStatements(); + } catch (SQLException e) {} + verify(obj, times(1)).getMaxStatements(); + } + + @Test + public void testGetMaxTableNameLength() throws Exception { + try { + delegate.getMaxTableNameLength(); + } catch (SQLException e) {} + verify(obj, times(1)).getMaxTableNameLength(); + } + + @Test + public void testGetMaxTablesInSelect() throws Exception { + try { + delegate.getMaxTablesInSelect(); + } catch (SQLException e) {} + verify(obj, times(1)).getMaxTablesInSelect(); + } + + @Test + public void testGetMaxUserNameLength() throws Exception { + try { + delegate.getMaxUserNameLength(); + } catch (SQLException e) {} + verify(obj, times(1)).getMaxUserNameLength(); + } + + @Test + public void testGetNumericFunctions() throws Exception { + try { + delegate.getNumericFunctions(); + } catch (SQLException e) {} + verify(obj, times(1)).getNumericFunctions(); + } + + @Test + public void testGetPrimaryKeysStringStringString() throws Exception { + try { + delegate.getPrimaryKeys("foo","foo","foo"); + } catch (SQLException e) {} + verify(obj, times(1)).getPrimaryKeys("foo","foo","foo"); + } + + @Test + public void testGetProcedureColumnsStringStringStringString() throws Exception { + try { + delegate.getProcedureColumns("foo","foo","foo","foo"); + } catch (SQLException e) {} + verify(obj, times(1)).getProcedureColumns("foo","foo","foo","foo"); + } + + @Test + public void testGetProcedureTerm() throws Exception { + try { + delegate.getProcedureTerm(); + } catch (SQLException e) {} + verify(obj, times(1)).getProcedureTerm(); + } + + @Test + public void testGetProceduresStringStringString() throws Exception { + try { + delegate.getProcedures("foo","foo","foo"); + } catch (SQLException e) {} + verify(obj, times(1)).getProcedures("foo","foo","foo"); + } + + @Test + public void testGetPseudoColumnsStringStringStringString() throws Exception { + try { + delegate.getPseudoColumns("foo","foo","foo","foo"); + } catch (SQLException e) {} + verify(obj, times(1)).getPseudoColumns("foo","foo","foo","foo"); + } + + @Test + public void testGetResultSetHoldability() throws Exception { + try { + delegate.getResultSetHoldability(); + } catch (SQLException e) {} + verify(obj, times(1)).getResultSetHoldability(); + } + + @Test + public void testGetRowIdLifetime() throws Exception { + try { + delegate.getRowIdLifetime(); + } catch (SQLException e) {} + verify(obj, times(1)).getRowIdLifetime(); + } + + @Test + public void testGetSQLKeywords() throws Exception { + try { + delegate.getSQLKeywords(); + } catch (SQLException e) {} + verify(obj, times(1)).getSQLKeywords(); + } + + @Test + public void testGetSQLStateType() throws Exception { + try { + delegate.getSQLStateType(); + } catch (SQLException e) {} + verify(obj, times(1)).getSQLStateType(); + } + + @Test + public void testGetSchemaTerm() throws Exception { + try { + delegate.getSchemaTerm(); + } catch (SQLException e) {} + verify(obj, times(1)).getSchemaTerm(); + } + + @Test + public void testGetSchemasStringString() throws Exception { + try { + delegate.getSchemas("foo","foo"); + } catch (SQLException e) {} + verify(obj, times(1)).getSchemas("foo","foo"); + } + + @Test + public void testGetSchemas() throws Exception { + try { + delegate.getSchemas(); + } catch (SQLException e) {} + verify(obj, times(1)).getSchemas(); + } + + @Test + public void testGetSearchStringEscape() throws Exception { + try { + delegate.getSearchStringEscape(); + } catch (SQLException e) {} + verify(obj, times(1)).getSearchStringEscape(); + } + + @Test + public void testGetStringFunctions() throws Exception { + try { + delegate.getStringFunctions(); + } catch (SQLException e) {} + verify(obj, times(1)).getStringFunctions(); + } + + @Test + public void testGetSuperTablesStringStringString() throws Exception { + try { + delegate.getSuperTables("foo","foo","foo"); + } catch (SQLException e) {} + verify(obj, times(1)).getSuperTables("foo","foo","foo"); + } + + @Test + public void testGetSuperTypesStringStringString() throws Exception { + try { + delegate.getSuperTypes("foo","foo","foo"); + } catch (SQLException e) {} + verify(obj, times(1)).getSuperTypes("foo","foo","foo"); + } + + @Test + public void testGetSystemFunctions() throws Exception { + try { + delegate.getSystemFunctions(); + } catch (SQLException e) {} + verify(obj, times(1)).getSystemFunctions(); + } + + @Test + public void testGetTablePrivilegesStringStringString() throws Exception { + try { + delegate.getTablePrivileges("foo","foo","foo"); + } catch (SQLException e) {} + verify(obj, times(1)).getTablePrivileges("foo","foo","foo"); + } + + @Test + public void testGetTableTypes() throws Exception { + try { + delegate.getTableTypes(); + } catch (SQLException e) {} + verify(obj, times(1)).getTableTypes(); + } + + @Test + public void testGetTablesStringStringStringStringArray() throws Exception { + try { + delegate.getTables("foo","foo","foo",(String[]) null); + } catch (SQLException e) {} + verify(obj, times(1)).getTables("foo","foo","foo",(String[]) null); + } + + @Test + public void testGetTimeDateFunctions() throws Exception { + try { + delegate.getTimeDateFunctions(); + } catch (SQLException e) {} + verify(obj, times(1)).getTimeDateFunctions(); + } + + @Test + public void testGetTypeInfo() throws Exception { + try { + delegate.getTypeInfo(); + } catch (SQLException e) {} + verify(obj, times(1)).getTypeInfo(); + } + + @Test + public void testGetUDTsStringStringStringIntegerArray() throws Exception { + try { + delegate.getUDTs("foo","foo","foo",(int[]) null); + } catch (SQLException e) {} + verify(obj, times(1)).getUDTs("foo","foo","foo",(int[]) null); + } + + @Test + public void testGetURL() throws Exception { + try { + delegate.getURL(); + } catch (SQLException e) {} + verify(obj, times(1)).getURL(); + } + + @Test + public void testGetUserName() throws Exception { + try { + delegate.getUserName(); + } catch (SQLException e) {} + verify(obj, times(1)).getUserName(); + } + + @Test + public void testGetVersionColumnsStringStringString() throws Exception { + try { + delegate.getVersionColumns("foo","foo","foo"); + } catch (SQLException e) {} + verify(obj, times(1)).getVersionColumns("foo","foo","foo"); + } + + @Test + public void testInsertsAreDetectedInteger() throws Exception { + try { + delegate.insertsAreDetected(1); + } catch (SQLException e) {} + verify(obj, times(1)).insertsAreDetected(1); + } + + @Test + public void testIsCatalogAtStart() throws Exception { + try { + delegate.isCatalogAtStart(); + } catch (SQLException e) {} + verify(obj, times(1)).isCatalogAtStart(); + } + + @Test + public void testIsReadOnly() throws Exception { + try { + delegate.isReadOnly(); + } catch (SQLException e) {} + verify(obj, times(1)).isReadOnly(); + } + + @Test + public void testLocatorsUpdateCopy() throws Exception { + try { + delegate.locatorsUpdateCopy(); + } catch (SQLException e) {} + verify(obj, times(1)).locatorsUpdateCopy(); + } + + @Test + public void testNullPlusNonNullIsNull() throws Exception { + try { + delegate.nullPlusNonNullIsNull(); + } catch (SQLException e) {} + verify(obj, times(1)).nullPlusNonNullIsNull(); + } + + @Test + public void testNullsAreSortedAtEnd() throws Exception { + try { + delegate.nullsAreSortedAtEnd(); + } catch (SQLException e) {} + verify(obj, times(1)).nullsAreSortedAtEnd(); + } + + @Test + public void testNullsAreSortedAtStart() throws Exception { + try { + delegate.nullsAreSortedAtStart(); + } catch (SQLException e) {} + verify(obj, times(1)).nullsAreSortedAtStart(); + } + + @Test + public void testNullsAreSortedHigh() throws Exception { + try { + delegate.nullsAreSortedHigh(); + } catch (SQLException e) {} + verify(obj, times(1)).nullsAreSortedHigh(); + } + + @Test + public void testNullsAreSortedLow() throws Exception { + try { + delegate.nullsAreSortedLow(); + } catch (SQLException e) {} + verify(obj, times(1)).nullsAreSortedLow(); + } + + @Test + public void testOthersDeletesAreVisibleInteger() throws Exception { + try { + delegate.othersDeletesAreVisible(1); + } catch (SQLException e) {} + verify(obj, times(1)).othersDeletesAreVisible(1); + } + + @Test + public void testOthersInsertsAreVisibleInteger() throws Exception { + try { + delegate.othersInsertsAreVisible(1); + } catch (SQLException e) {} + verify(obj, times(1)).othersInsertsAreVisible(1); + } + + @Test + public void testOthersUpdatesAreVisibleInteger() throws Exception { + try { + delegate.othersUpdatesAreVisible(1); + } catch (SQLException e) {} + verify(obj, times(1)).othersUpdatesAreVisible(1); + } + + @Test + public void testOwnDeletesAreVisibleInteger() throws Exception { + try { + delegate.ownDeletesAreVisible(1); + } catch (SQLException e) {} + verify(obj, times(1)).ownDeletesAreVisible(1); + } + + @Test + public void testOwnInsertsAreVisibleInteger() throws Exception { + try { + delegate.ownInsertsAreVisible(1); + } catch (SQLException e) {} + verify(obj, times(1)).ownInsertsAreVisible(1); + } + + @Test + public void testOwnUpdatesAreVisibleInteger() throws Exception { + try { + delegate.ownUpdatesAreVisible(1); + } catch (SQLException e) {} + verify(obj, times(1)).ownUpdatesAreVisible(1); + } + + @Test + public void testStoresLowerCaseIdentifiers() throws Exception { + try { + delegate.storesLowerCaseIdentifiers(); + } catch (SQLException e) {} + verify(obj, times(1)).storesLowerCaseIdentifiers(); + } + + @Test + public void testStoresLowerCaseQuotedIdentifiers() throws Exception { + try { + delegate.storesLowerCaseQuotedIdentifiers(); + } catch (SQLException e) {} + verify(obj, times(1)).storesLowerCaseQuotedIdentifiers(); + } + + @Test + public void testStoresMixedCaseIdentifiers() throws Exception { + try { + delegate.storesMixedCaseIdentifiers(); + } catch (SQLException e) {} + verify(obj, times(1)).storesMixedCaseIdentifiers(); + } + + @Test + public void testStoresMixedCaseQuotedIdentifiers() throws Exception { + try { + delegate.storesMixedCaseQuotedIdentifiers(); + } catch (SQLException e) {} + verify(obj, times(1)).storesMixedCaseQuotedIdentifiers(); + } + + @Test + public void testStoresUpperCaseIdentifiers() throws Exception { + try { + delegate.storesUpperCaseIdentifiers(); + } catch (SQLException e) {} + verify(obj, times(1)).storesUpperCaseIdentifiers(); + } + + @Test + public void testStoresUpperCaseQuotedIdentifiers() throws Exception { + try { + delegate.storesUpperCaseQuotedIdentifiers(); + } catch (SQLException e) {} + verify(obj, times(1)).storesUpperCaseQuotedIdentifiers(); + } + + @Test + public void testSupportsANSI92EntryLevelSQL() throws Exception { + try { + delegate.supportsANSI92EntryLevelSQL(); + } catch (SQLException e) {} + verify(obj, times(1)).supportsANSI92EntryLevelSQL(); + } + + @Test + public void testSupportsANSI92FullSQL() throws Exception { + try { + delegate.supportsANSI92FullSQL(); + } catch (SQLException e) {} + verify(obj, times(1)).supportsANSI92FullSQL(); + } + + @Test + public void testSupportsANSI92IntermediateSQL() throws Exception { + try { + delegate.supportsANSI92IntermediateSQL(); + } catch (SQLException e) {} + verify(obj, times(1)).supportsANSI92IntermediateSQL(); + } + + @Test + public void testSupportsAlterTableWithAddColumn() throws Exception { + try { + delegate.supportsAlterTableWithAddColumn(); + } catch (SQLException e) {} + verify(obj, times(1)).supportsAlterTableWithAddColumn(); + } + + @Test + public void testSupportsAlterTableWithDropColumn() throws Exception { + try { + delegate.supportsAlterTableWithDropColumn(); + } catch (SQLException e) {} + verify(obj, times(1)).supportsAlterTableWithDropColumn(); + } + + @Test + public void testSupportsBatchUpdates() throws Exception { + try { + delegate.supportsBatchUpdates(); + } catch (SQLException e) {} + verify(obj, times(1)).supportsBatchUpdates(); + } + + @Test + public void testSupportsCatalogsInDataManipulation() throws Exception { + try { + delegate.supportsCatalogsInDataManipulation(); + } catch (SQLException e) {} + verify(obj, times(1)).supportsCatalogsInDataManipulation(); + } + + @Test + public void testSupportsCatalogsInIndexDefinitions() throws Exception { + try { + delegate.supportsCatalogsInIndexDefinitions(); + } catch (SQLException e) {} + verify(obj, times(1)).supportsCatalogsInIndexDefinitions(); + } + + @Test + public void testSupportsCatalogsInPrivilegeDefinitions() throws Exception { + try { + delegate.supportsCatalogsInPrivilegeDefinitions(); + } catch (SQLException e) {} + verify(obj, times(1)).supportsCatalogsInPrivilegeDefinitions(); + } + + @Test + public void testSupportsCatalogsInProcedureCalls() throws Exception { + try { + delegate.supportsCatalogsInProcedureCalls(); + } catch (SQLException e) {} + verify(obj, times(1)).supportsCatalogsInProcedureCalls(); + } + + @Test + public void testSupportsCatalogsInTableDefinitions() throws Exception { + try { + delegate.supportsCatalogsInTableDefinitions(); + } catch (SQLException e) {} + verify(obj, times(1)).supportsCatalogsInTableDefinitions(); + } + + @Test + public void testSupportsColumnAliasing() throws Exception { + try { + delegate.supportsColumnAliasing(); + } catch (SQLException e) {} + verify(obj, times(1)).supportsColumnAliasing(); + } + + @Test + public void testSupportsConvertIntegerInteger() throws Exception { + try { + delegate.supportsConvert(1,1); + } catch (SQLException e) {} + verify(obj, times(1)).supportsConvert(1,1); + } + + @Test + public void testSupportsConvert() throws Exception { + try { + delegate.supportsConvert(); + } catch (SQLException e) {} + verify(obj, times(1)).supportsConvert(); + } + + @Test + public void testSupportsCoreSQLGrammar() throws Exception { + try { + delegate.supportsCoreSQLGrammar(); + } catch (SQLException e) {} + verify(obj, times(1)).supportsCoreSQLGrammar(); + } + + @Test + public void testSupportsCorrelatedSubqueries() throws Exception { + try { + delegate.supportsCorrelatedSubqueries(); + } catch (SQLException e) {} + verify(obj, times(1)).supportsCorrelatedSubqueries(); + } + + @Test + public void testSupportsDataDefinitionAndDataManipulationTransactions() throws Exception { + try { + delegate.supportsDataDefinitionAndDataManipulationTransactions(); + } catch (SQLException e) {} + verify(obj, times(1)).supportsDataDefinitionAndDataManipulationTransactions(); + } + + @Test + public void testSupportsDataManipulationTransactionsOnly() throws Exception { + try { + delegate.supportsDataManipulationTransactionsOnly(); + } catch (SQLException e) {} + verify(obj, times(1)).supportsDataManipulationTransactionsOnly(); + } + + @Test + public void testSupportsDifferentTableCorrelationNames() throws Exception { + try { + delegate.supportsDifferentTableCorrelationNames(); + } catch (SQLException e) {} + verify(obj, times(1)).supportsDifferentTableCorrelationNames(); + } + + @Test + public void testSupportsExpressionsInOrderBy() throws Exception { + try { + delegate.supportsExpressionsInOrderBy(); + } catch (SQLException e) {} + verify(obj, times(1)).supportsExpressionsInOrderBy(); + } + + @Test + public void testSupportsExtendedSQLGrammar() throws Exception { + try { + delegate.supportsExtendedSQLGrammar(); + } catch (SQLException e) {} + verify(obj, times(1)).supportsExtendedSQLGrammar(); + } + + @Test + public void testSupportsFullOuterJoins() throws Exception { + try { + delegate.supportsFullOuterJoins(); + } catch (SQLException e) {} + verify(obj, times(1)).supportsFullOuterJoins(); + } + + @Test + public void testSupportsGetGeneratedKeys() throws Exception { + try { + delegate.supportsGetGeneratedKeys(); + } catch (SQLException e) {} + verify(obj, times(1)).supportsGetGeneratedKeys(); + } + + @Test + public void testSupportsGroupBy() throws Exception { + try { + delegate.supportsGroupBy(); + } catch (SQLException e) {} + verify(obj, times(1)).supportsGroupBy(); + } + + @Test + public void testSupportsGroupByBeyondSelect() throws Exception { + try { + delegate.supportsGroupByBeyondSelect(); + } catch (SQLException e) {} + verify(obj, times(1)).supportsGroupByBeyondSelect(); + } + + @Test + public void testSupportsGroupByUnrelated() throws Exception { + try { + delegate.supportsGroupByUnrelated(); + } catch (SQLException e) {} + verify(obj, times(1)).supportsGroupByUnrelated(); + } + + @Test + public void testSupportsIntegrityEnhancementFacility() throws Exception { + try { + delegate.supportsIntegrityEnhancementFacility(); + } catch (SQLException e) {} + verify(obj, times(1)).supportsIntegrityEnhancementFacility(); + } + + @Test + public void testSupportsLikeEscapeClause() throws Exception { + try { + delegate.supportsLikeEscapeClause(); + } catch (SQLException e) {} + verify(obj, times(1)).supportsLikeEscapeClause(); + } + + @Test + public void testSupportsLimitedOuterJoins() throws Exception { + try { + delegate.supportsLimitedOuterJoins(); + } catch (SQLException e) {} + verify(obj, times(1)).supportsLimitedOuterJoins(); + } + + @Test + public void testSupportsMinimumSQLGrammar() throws Exception { + try { + delegate.supportsMinimumSQLGrammar(); + } catch (SQLException e) {} + verify(obj, times(1)).supportsMinimumSQLGrammar(); + } + + @Test + public void testSupportsMixedCaseIdentifiers() throws Exception { + try { + delegate.supportsMixedCaseIdentifiers(); + } catch (SQLException e) {} + verify(obj, times(1)).supportsMixedCaseIdentifiers(); + } + + @Test + public void testSupportsMixedCaseQuotedIdentifiers() throws Exception { + try { + delegate.supportsMixedCaseQuotedIdentifiers(); + } catch (SQLException e) {} + verify(obj, times(1)).supportsMixedCaseQuotedIdentifiers(); + } + + @Test + public void testSupportsMultipleOpenResults() throws Exception { + try { + delegate.supportsMultipleOpenResults(); + } catch (SQLException e) {} + verify(obj, times(1)).supportsMultipleOpenResults(); + } + + @Test + public void testSupportsMultipleResultSets() throws Exception { + try { + delegate.supportsMultipleResultSets(); + } catch (SQLException e) {} + verify(obj, times(1)).supportsMultipleResultSets(); + } + + @Test + public void testSupportsMultipleTransactions() throws Exception { + try { + delegate.supportsMultipleTransactions(); + } catch (SQLException e) {} + verify(obj, times(1)).supportsMultipleTransactions(); + } + + @Test + public void testSupportsNamedParameters() throws Exception { + try { + delegate.supportsNamedParameters(); + } catch (SQLException e) {} + verify(obj, times(1)).supportsNamedParameters(); + } + + @Test + public void testSupportsNonNullableColumns() throws Exception { + try { + delegate.supportsNonNullableColumns(); + } catch (SQLException e) {} + verify(obj, times(1)).supportsNonNullableColumns(); + } + + @Test + public void testSupportsOpenCursorsAcrossCommit() throws Exception { + try { + delegate.supportsOpenCursorsAcrossCommit(); + } catch (SQLException e) {} + verify(obj, times(1)).supportsOpenCursorsAcrossCommit(); + } + + @Test + public void testSupportsOpenCursorsAcrossRollback() throws Exception { + try { + delegate.supportsOpenCursorsAcrossRollback(); + } catch (SQLException e) {} + verify(obj, times(1)).supportsOpenCursorsAcrossRollback(); + } + + @Test + public void testSupportsOpenStatementsAcrossCommit() throws Exception { + try { + delegate.supportsOpenStatementsAcrossCommit(); + } catch (SQLException e) {} + verify(obj, times(1)).supportsOpenStatementsAcrossCommit(); + } + + @Test + public void testSupportsOpenStatementsAcrossRollback() throws Exception { + try { + delegate.supportsOpenStatementsAcrossRollback(); + } catch (SQLException e) {} + verify(obj, times(1)).supportsOpenStatementsAcrossRollback(); + } + + @Test + public void testSupportsOrderByUnrelated() throws Exception { + try { + delegate.supportsOrderByUnrelated(); + } catch (SQLException e) {} + verify(obj, times(1)).supportsOrderByUnrelated(); + } + + @Test + public void testSupportsOuterJoins() throws Exception { + try { + delegate.supportsOuterJoins(); + } catch (SQLException e) {} + verify(obj, times(1)).supportsOuterJoins(); + } + + @Test + public void testSupportsPositionedDelete() throws Exception { + try { + delegate.supportsPositionedDelete(); + } catch (SQLException e) {} + verify(obj, times(1)).supportsPositionedDelete(); + } + + @Test + public void testSupportsPositionedUpdate() throws Exception { + try { + delegate.supportsPositionedUpdate(); + } catch (SQLException e) {} + verify(obj, times(1)).supportsPositionedUpdate(); + } + + @Test + public void testSupportsRefCursors() throws Exception { + try { + delegate.supportsRefCursors(); + } catch (SQLException e) {} + verify(obj, times(1)).supportsRefCursors(); + } + + @Test + public void testSupportsResultSetConcurrencyIntegerInteger() throws Exception { + try { + delegate.supportsResultSetConcurrency(1,1); + } catch (SQLException e) {} + verify(obj, times(1)).supportsResultSetConcurrency(1,1); + } + + @Test + public void testSupportsResultSetHoldabilityInteger() throws Exception { + try { + delegate.supportsResultSetHoldability(1); + } catch (SQLException e) {} + verify(obj, times(1)).supportsResultSetHoldability(1); + } + + @Test + public void testSupportsResultSetTypeInteger() throws Exception { + try { + delegate.supportsResultSetType(1); + } catch (SQLException e) {} + verify(obj, times(1)).supportsResultSetType(1); + } + + @Test + public void testSupportsSavepoints() throws Exception { + try { + delegate.supportsSavepoints(); + } catch (SQLException e) {} + verify(obj, times(1)).supportsSavepoints(); + } + + @Test + public void testSupportsSchemasInDataManipulation() throws Exception { + try { + delegate.supportsSchemasInDataManipulation(); + } catch (SQLException e) {} + verify(obj, times(1)).supportsSchemasInDataManipulation(); + } + + @Test + public void testSupportsSchemasInIndexDefinitions() throws Exception { + try { + delegate.supportsSchemasInIndexDefinitions(); + } catch (SQLException e) {} + verify(obj, times(1)).supportsSchemasInIndexDefinitions(); + } + + @Test + public void testSupportsSchemasInPrivilegeDefinitions() throws Exception { + try { + delegate.supportsSchemasInPrivilegeDefinitions(); + } catch (SQLException e) {} + verify(obj, times(1)).supportsSchemasInPrivilegeDefinitions(); + } + + @Test + public void testSupportsSchemasInProcedureCalls() throws Exception { + try { + delegate.supportsSchemasInProcedureCalls(); + } catch (SQLException e) {} + verify(obj, times(1)).supportsSchemasInProcedureCalls(); + } + + @Test + public void testSupportsSchemasInTableDefinitions() throws Exception { + try { + delegate.supportsSchemasInTableDefinitions(); + } catch (SQLException e) {} + verify(obj, times(1)).supportsSchemasInTableDefinitions(); + } + + @Test + public void testSupportsSelectForUpdate() throws Exception { + try { + delegate.supportsSelectForUpdate(); + } catch (SQLException e) {} + verify(obj, times(1)).supportsSelectForUpdate(); + } + + @Test + public void testSupportsStatementPooling() throws Exception { + try { + delegate.supportsStatementPooling(); + } catch (SQLException e) {} + verify(obj, times(1)).supportsStatementPooling(); + } + + @Test + public void testSupportsStoredFunctionsUsingCallSyntax() throws Exception { + try { + delegate.supportsStoredFunctionsUsingCallSyntax(); + } catch (SQLException e) {} + verify(obj, times(1)).supportsStoredFunctionsUsingCallSyntax(); + } + + @Test + public void testSupportsStoredProcedures() throws Exception { + try { + delegate.supportsStoredProcedures(); + } catch (SQLException e) {} + verify(obj, times(1)).supportsStoredProcedures(); + } + + @Test + public void testSupportsSubqueriesInComparisons() throws Exception { + try { + delegate.supportsSubqueriesInComparisons(); + } catch (SQLException e) {} + verify(obj, times(1)).supportsSubqueriesInComparisons(); + } + + @Test + public void testSupportsSubqueriesInExists() throws Exception { + try { + delegate.supportsSubqueriesInExists(); + } catch (SQLException e) {} + verify(obj, times(1)).supportsSubqueriesInExists(); + } + + @Test + public void testSupportsSubqueriesInIns() throws Exception { + try { + delegate.supportsSubqueriesInIns(); + } catch (SQLException e) {} + verify(obj, times(1)).supportsSubqueriesInIns(); + } + + @Test + public void testSupportsSubqueriesInQuantifieds() throws Exception { + try { + delegate.supportsSubqueriesInQuantifieds(); + } catch (SQLException e) {} + verify(obj, times(1)).supportsSubqueriesInQuantifieds(); + } + + @Test + public void testSupportsTableCorrelationNames() throws Exception { + try { + delegate.supportsTableCorrelationNames(); + } catch (SQLException e) {} + verify(obj, times(1)).supportsTableCorrelationNames(); + } + + @Test + public void testSupportsTransactionIsolationLevelInteger() throws Exception { + try { + delegate.supportsTransactionIsolationLevel(1); + } catch (SQLException e) {} + verify(obj, times(1)).supportsTransactionIsolationLevel(1); + } + + @Test + public void testSupportsTransactions() throws Exception { + try { + delegate.supportsTransactions(); + } catch (SQLException e) {} + verify(obj, times(1)).supportsTransactions(); + } + + @Test + public void testSupportsUnion() throws Exception { + try { + delegate.supportsUnion(); + } catch (SQLException e) {} + verify(obj, times(1)).supportsUnion(); + } + + @Test + public void testSupportsUnionAll() throws Exception { + try { + delegate.supportsUnionAll(); + } catch (SQLException e) {} + verify(obj, times(1)).supportsUnionAll(); + } + + @Test + public void testUpdatesAreDetectedInteger() throws Exception { + try { + delegate.updatesAreDetected(1); + } catch (SQLException e) {} + verify(obj, times(1)).updatesAreDetected(1); + } + + @Test + public void testUsesLocalFilePerTable() throws Exception { + try { + delegate.usesLocalFilePerTable(); + } catch (SQLException e) {} + verify(obj, times(1)).usesLocalFilePerTable(); + } + + @Test + public void testUsesLocalFiles() throws Exception { + try { + delegate.usesLocalFiles(); + } catch (SQLException e) {} + verify(obj, times(1)).usesLocalFiles(); + } + + @Test + public void testWrap() throws SQLException { + assertEquals(delegate, delegate.unwrap(DatabaseMetaData.class)); + assertEquals(delegate, delegate.unwrap(DelegatingDatabaseMetaData.class)); + assertEquals(obj, delegate.unwrap(obj.getClass())); + assertNull(delegate.unwrap(String.class)); + assertTrue(delegate.isWrapperFor(DatabaseMetaData.class)); + assertTrue(delegate.isWrapperFor(DelegatingDatabaseMetaData.class)); + assertTrue(delegate.isWrapperFor(obj.getClass())); + assertFalse(delegate.isWrapperFor(String.class)); + } }
http://git-wip-us.apache.org/repos/asf/commons-dbcp/blob/64a13ee3/src/test/java/org/apache/commons/dbcp2/TestDelegatingPreparedStatement.java ---------------------------------------------------------------------- diff --git a/src/test/java/org/apache/commons/dbcp2/TestDelegatingPreparedStatement.java b/src/test/java/org/apache/commons/dbcp2/TestDelegatingPreparedStatement.java index fc5890a..af60ae2 100644 --- a/src/test/java/org/apache/commons/dbcp2/TestDelegatingPreparedStatement.java +++ b/src/test/java/org/apache/commons/dbcp2/TestDelegatingPreparedStatement.java @@ -20,46 +20,515 @@ package org.apache.commons.dbcp2; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertNull; import static org.junit.Assert.assertTrue; +import static org.mockito.Mockito.mock; +import static org.mockito.Mockito.times; +import static org.mockito.Mockito.verify; -import java.sql.Connection; import java.sql.PreparedStatement; +import java.sql.SQLException; import org.junit.Before; import org.junit.Test; -/** - */ +@SuppressWarnings({ "deprecation", "rawtypes" }) // BigDecimal methods, and casting for mocks public class TestDelegatingPreparedStatement { - private DelegatingConnection<Connection> conn = null; - private Connection delegateConn = null; - private DelegatingPreparedStatement stmt = null; - private PreparedStatement delegateStmt = null; + private TesterConnection testerConn = null; + private DelegatingConnection connection = null; + private PreparedStatement obj = null; + private DelegatingPreparedStatement delegate = null; @Before public void setUp() throws Exception { - delegateConn = new TesterConnection("test", "test"); - conn = new DelegatingConnection<>(delegateConn); + testerConn = new TesterConnection("test", "test"); + connection = new DelegatingConnection<>(testerConn); + obj = mock(PreparedStatement.class); + delegate = new DelegatingPreparedStatement(connection, obj); } @Test public void testExecuteQueryReturnsNull() throws Exception { - delegateStmt = new TesterPreparedStatement(delegateConn,"null"); - stmt = new DelegatingPreparedStatement(conn,delegateStmt); - assertNull(stmt.executeQuery()); + obj = new TesterPreparedStatement(testerConn,"null"); + delegate = new DelegatingPreparedStatement(connection,obj); + assertNull(delegate.executeQuery()); } @Test public void testExecuteQueryReturnsNotNull() throws Exception { - delegateStmt = new TesterPreparedStatement(delegateConn,"select * from foo"); - stmt = new DelegatingPreparedStatement(conn,delegateStmt); - assertTrue(null != stmt.executeQuery()); + obj = new TesterPreparedStatement(testerConn,"select * from foo"); + delegate = new DelegatingPreparedStatement(connection,obj); + assertTrue(null != delegate.executeQuery()); } @Test public void testGetDelegate() throws Exception { - delegateStmt = new TesterPreparedStatement(delegateConn,"select * from foo"); - stmt = new DelegatingPreparedStatement(conn,delegateStmt); - assertEquals(delegateStmt,stmt.getDelegate()); + obj = new TesterPreparedStatement(testerConn,"select * from foo"); + delegate = new DelegatingPreparedStatement(connection,obj); + assertEquals(obj,delegate.getDelegate()); + } + + @Test + public void testAddBatch() throws Exception { + try { + delegate.addBatch(); + } catch (SQLException e) {} + verify(obj, times(1)).addBatch(); + } + + @Test + public void testClearParameters() throws Exception { + try { + delegate.clearParameters(); + } catch (SQLException e) {} + verify(obj, times(1)).clearParameters(); + } + + @Test + public void testExecute() throws Exception { + try { + delegate.execute(); + } catch (SQLException e) {} + verify(obj, times(1)).execute(); + } + + @Test + public void testExecuteLargeUpdate() throws Exception { + try { + delegate.executeLargeUpdate(); + } catch (SQLException e) {} + verify(obj, times(1)).executeLargeUpdate(); + } + + @Test + public void testExecuteQuery() throws Exception { + try { + delegate.executeQuery(); + } catch (SQLException e) {} + verify(obj, times(1)).executeQuery(); + } + + @Test + public void testExecuteUpdate() throws Exception { + try { + delegate.executeUpdate(); + } catch (SQLException e) {} + verify(obj, times(1)).executeUpdate(); + } + + @Test + public void testGetMetaData() throws Exception { + try { + delegate.getMetaData(); + } catch (SQLException e) {} + verify(obj, times(1)).getMetaData(); + } + + @Test + public void testGetParameterMetaData() throws Exception { + try { + delegate.getParameterMetaData(); + } catch (SQLException e) {} + verify(obj, times(1)).getParameterMetaData(); + } + + @Test + public void testSetArrayIntegerArray() throws Exception { + try { + delegate.setArray(1,(java.sql.Array) null); + } catch (SQLException e) {} + verify(obj, times(1)).setArray(1,(java.sql.Array) null); + } + + @Test + public void testSetAsciiStreamIntegerInputStreamLong() throws Exception { + try { + delegate.setAsciiStream(1,(java.io.InputStream) null,1l); + } catch (SQLException e) {} + verify(obj, times(1)).setAsciiStream(1,(java.io.InputStream) null,1l); + } + + @Test + public void testSetAsciiStreamIntegerInputStreamInteger() throws Exception { + try { + delegate.setAsciiStream(1,(java.io.InputStream) null,1); + } catch (SQLException e) {} + verify(obj, times(1)).setAsciiStream(1,(java.io.InputStream) null,1); + } + + @Test + public void testSetAsciiStreamIntegerInputStream() throws Exception { + try { + delegate.setAsciiStream(1,(java.io.InputStream) null); + } catch (SQLException e) {} + verify(obj, times(1)).setAsciiStream(1,(java.io.InputStream) null); + } + + @Test + public void testSetBigDecimalIntegerBigDecimal() throws Exception { + try { + delegate.setBigDecimal(1,java.math.BigDecimal.valueOf(1.0d)); + } catch (SQLException e) {} + verify(obj, times(1)).setBigDecimal(1,java.math.BigDecimal.valueOf(1.0d)); + } + + @Test + public void testSetBinaryStreamIntegerInputStreamLong() throws Exception { + try { + delegate.setBinaryStream(1,(java.io.InputStream) null,1l); + } catch (SQLException e) {} + verify(obj, times(1)).setBinaryStream(1,(java.io.InputStream) null,1l); + } + + @Test + public void testSetBinaryStreamIntegerInputStream() throws Exception { + try { + delegate.setBinaryStream(1,(java.io.InputStream) null); + } catch (SQLException e) {} + verify(obj, times(1)).setBinaryStream(1,(java.io.InputStream) null); + } + + @Test + public void testSetBinaryStreamIntegerInputStreamInteger() throws Exception { + try { + delegate.setBinaryStream(1,(java.io.InputStream) null,1); + } catch (SQLException e) {} + verify(obj, times(1)).setBinaryStream(1,(java.io.InputStream) null,1); + } + + @Test + public void testSetBlobIntegerBlob() throws Exception { + try { + delegate.setBlob(1,(java.sql.Blob) null); + } catch (SQLException e) {} + verify(obj, times(1)).setBlob(1,(java.sql.Blob) null); + } + + @Test + public void testSetBlobIntegerInputStream() throws Exception { + try { + delegate.setBlob(1,(java.io.InputStream) null); + } catch (SQLException e) {} + verify(obj, times(1)).setBlob(1,(java.io.InputStream) null); + } + + @Test + public void testSetBlobIntegerInputStreamLong() throws Exception { + try { + delegate.setBlob(1,(java.io.InputStream) null,1l); + } catch (SQLException e) {} + verify(obj, times(1)).setBlob(1,(java.io.InputStream) null,1l); + } + + @Test + public void testSetBooleanIntegerBoolean() throws Exception { + try { + delegate.setBoolean(1,Boolean.TRUE); + } catch (SQLException e) {} + verify(obj, times(1)).setBoolean(1,Boolean.TRUE); + } + + @Test + public void testSetByteIntegerByte() throws Exception { + try { + delegate.setByte(1,(byte) 1); + } catch (SQLException e) {} + verify(obj, times(1)).setByte(1,(byte) 1); + } + + @Test + public void testSetBytesIntegerByteArray() throws Exception { + try { + delegate.setBytes(1,new byte[] { 1 }); + } catch (SQLException e) {} + verify(obj, times(1)).setBytes(1,new byte[] { 1 }); + } + + @Test + public void testSetCharacterStreamIntegerReader() throws Exception { + try { + delegate.setCharacterStream(1,(java.io.StringReader) null); + } catch (SQLException e) {} + verify(obj, times(1)).setCharacterStream(1,(java.io.StringReader) null); + } + + @Test + public void testSetCharacterStreamIntegerReaderInteger() throws Exception { + try { + delegate.setCharacterStream(1,(java.io.StringReader) null,1); + } catch (SQLException e) {} + verify(obj, times(1)).setCharacterStream(1,(java.io.StringReader) null,1); + } + + @Test + public void testSetCharacterStreamIntegerReaderLong() throws Exception { + try { + delegate.setCharacterStream(1,(java.io.StringReader) null,1l); + } catch (SQLException e) {} + verify(obj, times(1)).setCharacterStream(1,(java.io.StringReader) null,1l); + } + + @Test + public void testSetClobIntegerClob() throws Exception { + try { + delegate.setClob(1,(java.sql.Clob) null); + } catch (SQLException e) {} + verify(obj, times(1)).setClob(1,(java.sql.Clob) null); + } + + @Test + public void testSetClobIntegerReaderLong() throws Exception { + try { + delegate.setClob(1,(java.io.StringReader) null,1l); + } catch (SQLException e) {} + verify(obj, times(1)).setClob(1,(java.io.StringReader) null,1l); + } + + @Test + public void testSetClobIntegerReader() throws Exception { + try { + delegate.setClob(1,(java.io.StringReader) null); + } catch (SQLException e) {} + verify(obj, times(1)).setClob(1,(java.io.StringReader) null); + } + + @Test + public void testSetDateIntegerSqlDateCalendar() throws Exception { + try { + delegate.setDate(1,new java.sql.Date(1529827548745l),(java.util.Calendar) null); + } catch (SQLException e) {} + verify(obj, times(1)).setDate(1,new java.sql.Date(1529827548745l),(java.util.Calendar) null); } + + @Test + public void testSetDateIntegerSqlDate() throws Exception { + try { + delegate.setDate(1,new java.sql.Date(1529827548745l)); + } catch (SQLException e) {} + verify(obj, times(1)).setDate(1,new java.sql.Date(1529827548745l)); + } + + @Test + public void testSetDoubleIntegerDouble() throws Exception { + try { + delegate.setDouble(1,1.0d); + } catch (SQLException e) {} + verify(obj, times(1)).setDouble(1,1.0d); + } + + @Test + public void testSetFloatIntegerFloat() throws Exception { + try { + delegate.setFloat(1,1.0f); + } catch (SQLException e) {} + verify(obj, times(1)).setFloat(1,1.0f); + } + + @Test + public void testSetIntIntegerInteger() throws Exception { + try { + delegate.setInt(1,1); + } catch (SQLException e) {} + verify(obj, times(1)).setInt(1,1); + } + + @Test + public void testSetLongIntegerLong() throws Exception { + try { + delegate.setLong(1,1l); + } catch (SQLException e) {} + verify(obj, times(1)).setLong(1,1l); + } + + @Test + public void testSetNCharacterStreamIntegerReader() throws Exception { + try { + delegate.setNCharacterStream(1,(java.io.StringReader) null); + } catch (SQLException e) {} + verify(obj, times(1)).setNCharacterStream(1,(java.io.StringReader) null); + } + + @Test + public void testSetNCharacterStreamIntegerReaderLong() throws Exception { + try { + delegate.setNCharacterStream(1,(java.io.StringReader) null,1l); + } catch (SQLException e) {} + verify(obj, times(1)).setNCharacterStream(1,(java.io.StringReader) null,1l); + } + + @Test + public void testSetNClobIntegerNClob() throws Exception { + try { + delegate.setNClob(1,(java.sql.NClob) null); + } catch (SQLException e) {} + verify(obj, times(1)).setNClob(1,(java.sql.NClob) null); + } + + @Test + public void testSetNClobIntegerReader() throws Exception { + try { + delegate.setNClob(1,(java.io.StringReader) null); + } catch (SQLException e) {} + verify(obj, times(1)).setNClob(1,(java.io.StringReader) null); + } + + @Test + public void testSetNClobIntegerReaderLong() throws Exception { + try { + delegate.setNClob(1,(java.io.StringReader) null,1l); + } catch (SQLException e) {} + verify(obj, times(1)).setNClob(1,(java.io.StringReader) null,1l); + } + + @Test + public void testSetNStringIntegerString() throws Exception { + try { + delegate.setNString(1,"foo"); + } catch (SQLException e) {} + verify(obj, times(1)).setNString(1,"foo"); + } + + @Test + public void testSetNullIntegerIntegerString() throws Exception { + try { + delegate.setNull(1,1,"foo"); + } catch (SQLException e) {} + verify(obj, times(1)).setNull(1,1,"foo"); + } + + @Test + public void testSetNullIntegerInteger() throws Exception { + try { + delegate.setNull(1,1); + } catch (SQLException e) {} + verify(obj, times(1)).setNull(1,1); + } + + @Test + public void testSetObjectIntegerObjectSQLType() throws Exception { + try { + delegate.setObject(1,System.err,(java.sql.SQLType) null); + } catch (SQLException e) {} + verify(obj, times(1)).setObject(1,System.err,(java.sql.SQLType) null); + } + + @Test + public void testSetObjectIntegerObjectSQLTypeInteger() throws Exception { + try { + delegate.setObject(1,System.err,(java.sql.SQLType) null,1); + } catch (SQLException e) {} + verify(obj, times(1)).setObject(1,System.err,(java.sql.SQLType) null,1); + } + + @Test + public void testSetObjectIntegerObjectIntegerInteger() throws Exception { + try { + delegate.setObject(1,System.err,1,1); + } catch (SQLException e) {} + verify(obj, times(1)).setObject(1,System.err,1,1); + } + + @Test + public void testSetObjectIntegerObjectInteger() throws Exception { + try { + delegate.setObject(1,System.err,1); + } catch (SQLException e) {} + verify(obj, times(1)).setObject(1,System.err,1); + } + + @Test + public void testSetObjectIntegerObject() throws Exception { + try { + delegate.setObject(1,System.err); + } catch (SQLException e) {} + verify(obj, times(1)).setObject(1,System.err); + } + + @Test + public void testSetRefIntegerRef() throws Exception { + try { + delegate.setRef(1,(java.sql.Ref) null); + } catch (SQLException e) {} + verify(obj, times(1)).setRef(1,(java.sql.Ref) null); + } + + @Test + public void testSetRowIdIntegerRowId() throws Exception { + try { + delegate.setRowId(1,(java.sql.RowId) null); + } catch (SQLException e) {} + verify(obj, times(1)).setRowId(1,(java.sql.RowId) null); + } + + @Test + public void testSetSQLXMLIntegerSQLXML() throws Exception { + try { + delegate.setSQLXML(1,(java.sql.SQLXML) null); + } catch (SQLException e) {} + verify(obj, times(1)).setSQLXML(1,(java.sql.SQLXML) null); + } + + @Test + public void testSetShortIntegerShort() throws Exception { + try { + delegate.setShort(1,(short) 1); + } catch (SQLException e) {} + verify(obj, times(1)).setShort(1,(short) 1); + } + + @Test + public void testSetStringIntegerString() throws Exception { + try { + delegate.setString(1,"foo"); + } catch (SQLException e) {} + verify(obj, times(1)).setString(1,"foo"); + } + + @Test + public void testSetTimeIntegerTime() throws Exception { + try { + delegate.setTime(1,(java.sql.Time) null); + } catch (SQLException e) {} + verify(obj, times(1)).setTime(1,(java.sql.Time) null); + } + + @Test + public void testSetTimeIntegerTimeCalendar() throws Exception { + try { + delegate.setTime(1,(java.sql.Time) null,(java.util.Calendar) null); + } catch (SQLException e) {} + verify(obj, times(1)).setTime(1,(java.sql.Time) null,(java.util.Calendar) null); + } + + @Test + public void testSetTimestampIntegerTimestamp() throws Exception { + try { + delegate.setTimestamp(1,(java.sql.Timestamp) null); + } catch (SQLException e) {} + verify(obj, times(1)).setTimestamp(1,(java.sql.Timestamp) null); + } + + @Test + public void testSetTimestampIntegerTimestampCalendar() throws Exception { + try { + delegate.setTimestamp(1,(java.sql.Timestamp) null,(java.util.Calendar) null); + } catch (SQLException e) {} + verify(obj, times(1)).setTimestamp(1,(java.sql.Timestamp) null,(java.util.Calendar) null); + } + + @Test + public void testSetURLIntegerUrl() throws Exception { + try { + delegate.setURL(1,(java.net.URL) null); + } catch (SQLException e) {} + verify(obj, times(1)).setURL(1,(java.net.URL) null); + } + + @Test + public void testSetUnicodeStreamIntegerInputStreamInteger() throws Exception { + try { + delegate.setUnicodeStream(1,(java.io.InputStream) null,1); + } catch (SQLException e) {} + verify(obj, times(1)).setUnicodeStream(1,(java.io.InputStream) null,1); + } + }