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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
|
package org.postgresql.test;
import junit.framework.TestSuite;
import junit.framework.TestCase;
import org.postgresql.test.jdbc2.*;
import java.sql.*;
/**
* Executes all known tests for JDBC2 and includes some utility methods.
*/
public class JDBC2Tests extends TestSuite {
/**
* Returns the Test database JDBC URL
*/
public static String getURL() {
return System.getProperty("database");
}
/**
* Returns the Postgresql username
*/
public static String getUser() {
return System.getProperty("username");
}
/**
* Returns the user's password
*/
public static String getPassword() {
return System.getProperty("password");
}
/**
* helper - opens a connection. Static so other classes can call it.
*/
public static java.sql.Connection openDB() {
try {
Class.forName("org.postgresql.Driver");
return java.sql.DriverManager.getConnection(JDBC2Tests.getURL(),JDBC2Tests.getUser(),JDBC2Tests.getPassword());
} catch(ClassNotFoundException ex) {
TestCase.assert(ex.getMessage(),false);
} catch(SQLException ex) {
TestCase.assert(ex.getMessage(),false);
}
return null;
}
/**
* Helper - closes an open connection. This rewrites SQLException to a failed
* assertion. It's static so other classes can use it.
*/
public static void closeDB(Connection conn) {
try {
if(conn!=null)
conn.close();
} catch(SQLException ex) {
TestCase.assert(ex.getMessage(),false);
}
}
/**
* Helper - creates a test table for use by a test
*/
public static void createTable(Connection conn,String columns) {
try {
Statement st = conn.createStatement();
// Ignore the drop
try {
st.executeUpdate("drop table "+getTableName());
} catch(SQLException se) {
}
// Now create the table
st.executeUpdate("create table "+getTableName()+" ("+columns+")");
st.close();
} catch(SQLException ex) {
TestCase.assert(ex.getMessage(),false);
}
}
/**
* Variant used when more than one table is required
*/
public static void createTable(Connection conn,String id,String columns) {
try {
Statement st = conn.createStatement();
// Ignore the drop
try {
st.executeUpdate("drop table "+getTableName(id));
} catch(SQLException se) {
}
// Now create the table
st.executeUpdate("create table "+getTableName(id)+" ("+columns+")");
st.close();
} catch(SQLException ex) {
TestCase.assert(ex.getMessage(),false);
}
}
/**
* Helper - generates INSERT SQL - very simple
*/
public static String insert(String values) {
return insert(null,values);
}
public static String insert(String columns,String values) {
String s = "INSERT INTO "+getTableName();
if(columns!=null)
s=s+" ("+columns+")";
return s+" VALUES ("+values+")";
}
/**
* Helper - generates SELECT SQL - very simple
*/
public static String select(String columns) {
return select(columns,null,null);
}
public static String select(String columns,String where) {
return select(columns,where,null);
}
public static String select(String columns,String where,String other) {
String s = "SELECT "+columns+" FROM "+getTableName();
if(where!=null)
s=s+" WHERE "+where;
if(other!=null)
s=s+" "+other;
return s;
}
/**
* Helper - returns the test table's name
* This is defined by the tablename property. If not defined it defaults to
* jdbctest
*/
public static String getTableName() {
if(tablename==null)
tablename=System.getProperty("tablename","jdbctest");
return tablename;
}
/**
* As getTableName() but the id is a suffix. Used when more than one table is
* required in a test.
*/
public static String getTableName(String id) {
if(tablename==null)
tablename=System.getProperty("tablename","jdbctest");
return tablename+"_"+id;
}
/**
* Cache used by getTableName() [its used a lot!]
*/
private static String tablename;
/**
* Helper to prefix a number with leading zeros - ugly but it works...
* @param v value to prefix
* @param l number of digits (0-10)
*/
public static String fix(int v,int l) {
String s = "0000000000".substring(0,l)+Integer.toString(v);
return s.substring(s.length()-l);
}
/**
* Number of milliseconds in a day
*/
public static final long DAYMILLIS = 24*3600*1000;
/**
* The main entry point for JUnit
*/
public static TestSuite suite() {
TestSuite suite= new TestSuite();
//
// Add one line per class in our test cases. These should be in order of
// complexity.
// ANTTest should be first as it ensures that test parameters are
// being sent to the suite. It also initialises the database (if required)
// with some simple global tables (will make each testcase use its own later).
//
suite.addTestSuite(ANTTest.class);
// Basic Driver internals
suite.addTestSuite(DriverTest.class);
suite.addTestSuite(ConnectionTest.class);
suite.addTestSuite(DatabaseMetaDataTest.class);
// Connectivity/Protocols
// ResultSet
suite.addTestSuite(DateTest.class);
suite.addTestSuite(TimeTest.class);
suite.addTestSuite(TimestampTest.class);
// PreparedStatement
// MetaData
// Fastpath/LargeObject
// Other misc tests, based on previous problems users have had or specific
// features some applications require.
suite.addTestSuite(JBuilderTest.class);
suite.addTestSuite(MiscTest.class);
// That's all folks
return suite;
}
}
|