Class | Description |
---|---|
_Suite |
Suite to run all JUnit tests in this package:
org.apache.derbyTesting.functionTests.tests.jdbcapi
|
AIjdbcTest |
Test execution of JDBC method, isAutoincrement.
|
AssertEventCatcher | |
AuthenticationTest |
Tests authentication and connection level authorization.
|
AutoGenJDBC30Test |
Tests the JDBC 3.0 ability to establish a result set of auto-generated keys.
|
AutoloadTest |
This JUnit test verifies the autoloading of the jdbc driver.
|
BatchUpdateTest |
Test BatchUpdate functionality.
|
BatchUpdateTest.BatchUpdateExceptionWrapper |
This wrapper is used to expose JDBC 4.2 methods which can run on
VM rev levels lower than Java 8.
|
BlobClob4BlobTest |
Test of JDBC blob and clob
|
BLOBDataModelSetup |
Sets up a data model with very large BLOBs.
|
BlobSetBytesBoundaryTest |
Boundary tests for Blob.setBytes(). see DERBY-3898.
|
BlobStoredProcedureTest |
Tests the stored procedures introduced as part of DERBY-208.
|
BLOBTest |
Tests reading and updating binary large objects (BLOBs).
|
BlobUpdatableStreamTest |
Test if blob stream updates itself to point to LOBInputStream
if the blob is updated after fetching the stream.
|
c3AsciiStream | |
c3Reader | |
CacheSessionDataTest |
This is a test for DERBY-3192 (https://issues.apache.org/jira/browse/DERBY-3192)
which tries to avoid unecessary roundtrips by piggybacking session
information on the messages going back to the client.
|
CallableTest |
Test the CallableStatement interface.
|
cdsXid | |
CharacterStreamsTest |
Tests the following PreparedStatement methods:
-> setCharacterStream(int parameterIndex, InputStream x, int length)
-> setAsciiStream(int parameterIndex, Reader reader, int length)
|
ClientConnectionPoolDataSourceTest |
Basic tests of the
ConnectionPoolDataSource in the client driver. |
ClobStoredProcedureTest |
Tests the stored procedures introduced as part of DERBY-208.
|
ClobTest |
Test the methods defined by the
Clob interface. |
ClobTest.ClobTestSetup |
Decorator creating the neccessary test data.
|
ClobTruncateTest |
Test case for Clob.truncate
|
ClobUpdatableReaderTest |
Test class to test
UpdateableReader for Clob in
embedded driver. |
ClosedObjectTest |
Test that all methods on
ResultSet ,
Statement , PreparedStatement ,
CallableStatement and Connection objects
throw the appropriate exceptions when the objects are closed. |
ClosedObjectTest.CallableStatementObjectDecorator |
Decorator class for testing methods on a closed callable statement.
|
ClosedObjectTest.ConnectionObjectDecorator |
Decorator class for testing methods on a closed connection.
|
ClosedObjectTest.DataSourceDecorator |
Decorator class used for obtaining connections through a
DataSource . |
ClosedObjectTest.ObjectDecorator |
Abstract decorator class with functionality for obtaining a
closed object.
|
ClosedObjectTest.PoolDataSourceDecorator |
Decorator class used for obtaining connections through a
ConnectionPoolDataSource . |
ClosedObjectTest.PreparedStatementObjectDecorator |
Decorator class for testing methods on a closed prepared statement.
|
ClosedObjectTest.ResultSetObjectDecorator |
Decorator class for testing methods on a closed result set.
|
ClosedObjectTest.StatementObjectDecorator |
Decorator class for testing methods on a closed statement.
|
ClosedObjectTest.XADataSourceDecorator |
Decorator class used for obtaining connections through an
XADataSource . |
Compat_BlobClob4BlobTest |
Test of JDBC blob and clob
Create a test suite running BlobClob4BlobTest, but in a server-client setting
where the server has already been started.
|
ConcurrencyTest |
Testing concurrency behaviour in derby when creating the resultsets with
different parameters.
|
ConcurrentAutoloadTest |
Test that autoloading works correctly also in the case where it's invoked
from two threads at the same time.
|
connectionJdbc20 |
This Program Test getConnection()/getStatement().
|
DatabaseMetaDataTest |
Test the DatabaseMetaData api.
|
DataSourcePropertiesTest |
This class tests that properties of data sources are handled correctly.
|
DataSourceReferenceTest |
Test obtaining a
javax.naming.Reference from a Derby data
source and recreating a Derby data source from it. |
DataSourceReferenceTest.DataSourceDescriptor |
A class describing the bean properties of a data source.
|
DataSourceSerializationTest |
Makes sure that old serialized data sources can be de-serialized with the
current version of the data source.
|
DataSourceTest |
Test the various DataSource implementations of Derby, but not
ConnectionPoolDataSource or XADataSource; those are tested in
J2EEDataSourceTest.
|
DaylightSavingTest |
This class contains tests that verify the correct handling of
java.sql.Date , java.sql.Time and java.sql.Timestamp
across DST changes. |
DboPowersTest |
This JUnit tests enforcement of dbo (=database owner) powers, cf.
|
Derby2017LayerATest |
Tests that inserts with streams whose lengths differs from the the length
specified don't insert data into the database when they shouldn't.
|
Derby2017LayerATest.FailingReader |
WARNING: This reader is not a general purpose reader!!!
|
Derby5158Test | |
Derby5165Test | |
Derby5165Test.MyXid | |
DMDBugsTest | |
DriverMgrAuthenticationTest | |
DriverTest |
This test tests java.sql.Driver methods.
|
DSCreateShutdownDBTest | |
DummyReader | |
HoldabilityTest |
Tests holdable resultsets.
|
InternationalConnectSimpleDSTest | |
InternationalConnectTest | |
InvalidLDAPServerAuthenticationTest | |
IsoLevel |
Utility class for representing isolation levels.
|
J2EEDataSourceTest |
Test the ConnectionPoolDataSource and XADataSource implementations of Derby.
|
JDBCDriversAllTest |
Test autoloading with the both the embedded and
client drivers in jdbc.drivers.
|
JDBCDriversClientTest |
Test autoloading with the client driver in jdbc.drivers.
|
JDBCDriversEmbeddedTest |
Test autoloading with the embedded driver in jdbc.drivers.
|
JDBCDriversPropertyTest |
Run an autoload test with the system property
jdbc.drivers being set.
|
JDBCHarnessJavaTest |
Run a jdbcapi '.java' test from the old harness in the Junit infrastructure.
|
LargeDataLocksTest | |
LDAPAuthenticationTest | |
LobLengthTest |
This tests a fix for a defect (DERBY-121) where the server and
client were processing lob lengths incorrectly.
|
LobRsGetterTest |
Tests restrictions and special conditions that apply when calling result set
getters on LOB columns.
|
LobStreamsTest | |
maxfieldsize |
This Program Test SetMaxFieldsize()/getMaxFieldsize().
and the getXXX calls that are affected.
|
metadataMultiConnTest | |
NullSQLTextTest |
This test converts the old jdbcapi/nullSQLText.java
test to JUnit.
|
ParameterMappingTest | |
ParameterMetaDataJdbc30Test |
Test the ParameterMetaData class in JDBC 30.
|
PoolDSAuthenticationTest | |
PoolXADSCreateShutdownDBTest | |
PrepStmtMetaDataTest | |
PrepStmtNullTest |
Tests setting parameters to SQL NULL
This test converts the old jdbcapi/prepStmtNull.java
test to JUnit.
|
ProcedureTest |
Tests of stored procedures.
|
ProcedureTest.AllTypesTuple | |
RelativeTest |
Tests relative scrolling of a resultset.
|
ResultSetCloseTest |
This class is used to test the fix for DERBY-694.
|
resultsetJdbc20 |
Test of additional methods in JDBC2.0 result set meta-data.
|
ResultSetJDBC30Test |
Test of additional methods in JDBC3.0 result set
|
ResultSetMiscTest | |
ResultSetStreamTest | |
rsgetXXXcolumnNames | |
SavepointJdbc30Test |
Test the new class Savepoint in JDBC 30.
|
ScrollResultSetTest |
Tests scrollable result sets
Tests:
- testNextOnLastRowForwardOnly: tests that the result set is closed when all
rows have been retrieved and next has been called from the last row,
autocommit = true, the result set is not holdable and type forward
only.
|
SetQueryTimeoutTest |
Functional test for the Statement.setQueryTimeout() method.
|
SetQueryTimeoutTest.StatementExecutor | |
SetTransactionIsolationTest |
Test setTransactionIsolation
|
StatementJdbc20Test |
Test of additional methods in JDBC2.0 methods in statement and
resultset classes.
|
StatementJdbc30Test |
Test the Statement class in JDBC 30.
|
StatementPoolingTest |
A set of tests specifically targeted at connections that support statement
pooling.
|
StatementPoolingTest.LogicalPooledConnectionFactory |
A simple factory for obtaining logical connections from a pooled
connection created from a data source configured with statement caching.
|
StreamTest |
Tests of ResultSet streams
|
SURBaseTest |
Base class for testing Scrollable Updatable ResultSets.
|
SURDataModelSetup |
This class is a decorator for the Scrollable Updatable Resultset
tests.
|
SURDataModelSetup.SURDataModel |
Enum for the layout of the data model
|
SURijTest |
Test that runs the SURTest_ij.sql script and compares the output
to SURTest_ij.out.
|
SURQueryMixTest |
Tests for Scrollable Updatable ResultSet (SUR).
|
SURTest |
Tests for variants of scrollable updatable resultsets.
|
UpdatableResultSetTest |
Tests updatable result sets.
|
UpdateXXXTest |
Tests updateXXX() methods on updatable resultsets.
|
URCoveringIndexTest |
Tests updatable result sets when there is a index that includes all data for
the query (covering index).
|
Wrapper41DBMD |
A wrapper around the new DatabaseMetaData methods added by JDBC 4.1.
|
Wrapper41Statement |
A wrapper around the new Statement methods added by JDBC 4.1.
|
Wrapper42DBMD |
A wrapper around the new DatabaseMetaData methods added by JDBC 4.2.
|
XADSAuthenticationTest | |
XAJNDITest | |
XATest | |
XATransactionTest |
The test of the properties of the XA transaction interface implementation.
|
Exception | Description |
---|---|
SetQueryTimeoutTest.TestFailedException |
This Exception class is used for getting fail-fast behaviour in
this test.
|
Apache Derby V10.13 Internals - Copyright © 2004,2016 The Apache Software Foundation. All Rights Reserved.