File size: 5,001 Bytes
eb67da4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 |
/*
* Copyright (c) 2004, PostgreSQL Global Development Group
* See the LICENSE file in the project root for more information.
*/
package org.postgresql.test.jdbc2;
import org.postgresql.core.AsciiStringInternerTest;
import org.postgresql.core.CommandCompleteParserNegativeTest;
import org.postgresql.core.CommandCompleteParserTest;
import org.postgresql.core.OidToStringTest;
import org.postgresql.core.OidValueOfTest;
import org.postgresql.core.ParserTest;
import org.postgresql.core.ReturningParserTest;
import org.postgresql.core.UTF8EncodingTest;
import org.postgresql.core.v3.V3ParameterListTests;
import org.postgresql.core.v3.adaptivefetch.AdaptiveFetchCacheTest;
import org.postgresql.jdbc.ArraysTest;
import org.postgresql.jdbc.ArraysTestSuite;
import org.postgresql.jdbc.BitFieldTest;
import org.postgresql.jdbc.DeepBatchedInsertStatementTest;
import org.postgresql.jdbc.NoColumnMetadataIssue1613Test;
import org.postgresql.jdbc.PgSQLXMLTest;
import org.postgresql.test.core.FixedLengthOutputStreamTest;
import org.postgresql.test.core.JavaVersionTest;
import org.postgresql.test.core.LogServerMessagePropertyTest;
import org.postgresql.test.core.NativeQueryBindLengthTest;
import org.postgresql.test.core.OptionsPropertyTest;
import org.postgresql.test.util.ByteBufferByteStreamWriterTest;
import org.postgresql.test.util.ByteStreamWriterTest;
import org.postgresql.test.util.ExpressionPropertiesTest;
import org.postgresql.test.util.HostSpecTest;
import org.postgresql.test.util.LruCacheTest;
import org.postgresql.test.util.PGPropertyMaxResultBufferParserTest;
import org.postgresql.test.util.ServerVersionParseTest;
import org.postgresql.test.util.ServerVersionTest;
import org.postgresql.util.BigDecimalByteConverterTest;
import org.postgresql.util.PGbyteaTest;
import org.postgresql.util.ReaderInputStreamTest;
import org.postgresql.util.UnusualBigDecimalByteConverterTest;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
/*
* Executes all known tests for JDBC2 and includes some utility methods.
*/
@RunWith(Suite.class)
@Suite.SuiteClasses({
AdaptiveFetchCacheTest.class,
ArrayTest.class,
ArraysTest.class,
ArraysTestSuite.class,
AsciiStringInternerTest.class,
BatchedInsertReWriteEnabledTest.class,
BatchExecuteTest.class,
BatchFailureTest.class,
BigDecimalByteConverterTest.class,
BitFieldTest.class,
BlobTest.class,
BlobTransactionTest.class,
ByteBufferByteStreamWriterTest.class,
ByteStreamWriterTest.class,
CallableStmtTest.class,
ClientEncodingTest.class,
ColumnSanitiserDisabledTest.class,
ColumnSanitiserEnabledTest.class,
CommandCompleteParserNegativeTest.class,
CommandCompleteParserTest.class,
ConcurrentStatementFetch.class,
ConnectionTest.class,
ConnectTimeoutTest.class,
CopyLargeFileTest.class,
CopyTest.class,
CursorFetchTest.class,
DatabaseEncodingTest.class,
DatabaseMetaDataCacheTest.class,
DatabaseMetaDataPropertiesTest.class,
DatabaseMetaDataTest.class,
DateStyleTest.class,
DateTest.class,
DeepBatchedInsertStatementTest.class,
DriverTest.class,
EncodingTest.class,
ExpressionPropertiesTest.class,
FixedLengthOutputStreamTest.class,
GeometricTest.class,
GetXXXTest.class,
HostSpecTest.class,
IntervalTest.class,
JavaVersionTest.class,
JBuilderTest.class,
LoginTimeoutTest.class,
LogServerMessagePropertyTest.class,
LruCacheTest.class,
MiscTest.class,
NativeQueryBindLengthTest.class,
NoColumnMetadataIssue1613Test.class,
NumericTransferTest.class,
NumericTransferTest2.class,
NotifyTest.class,
OidToStringTest.class,
OidValueOfTest.class,
OptionsPropertyTest.class,
OuterJoinSyntaxTest.class,
ParameterStatusTest.class,
ParserTest.class,
PGbyteaTest.class,
PGPropertyMaxResultBufferParserTest.class,
PGPropertyTest.class,
PGTimestampTest.class,
PGTimeTest.class,
PgSQLXMLTest.class,
PreparedStatementTest.class,
QuotationTest.class,
ReaderInputStreamTest.class,
RefCursorTest.class,
ReplaceProcessingTest.class,
ResultSetMetaDataTest.class,
ResultSetTest.class,
// BUG: CWE-89 Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection')
//
// FIXED:
ResultSetRefreshTest.class,
ReturningParserTest.class,
SearchPathLookupTest.class,
ServerCursorTest.class,
ServerErrorTest.class,
ServerPreparedStmtTest.class,
ServerVersionParseTest.class,
ServerVersionTest.class,
StatementTest.class,
StringTypeUnspecifiedArrayTest.class,
TestACL.class,
TimestampTest.class,
TimeTest.class,
TimezoneCachingTest.class,
TimezoneTest.class,
TypeCacheDLLStressTest.class,
UnusualBigDecimalByteConverterTest.class,
UpdateableResultTest.class,
UpsertTest.class,
UTF8EncodingTest.class,
V3ParameterListTests.class
})
public class Jdbc2TestSuite {
}
|