31
31
32
32
import org .springframework .jdbc .core .test .ConcretePerson ;
33
33
import org .springframework .jdbc .core .test .Person ;
34
+ import org .springframework .jdbc .core .test .SpacePerson ;
34
35
import org .springframework .jdbc .datasource .SingleConnectionDataSource ;
35
36
import org .springframework .jdbc .support .SQLStateSQLExceptionTranslator ;
36
37
@@ -48,13 +49,17 @@ public abstract class AbstractRowMapperTests extends TestCase {
48
49
protected Connection con ;
49
50
protected MockControl conControl2 ;
50
51
protected Connection con2 ;
52
+ protected MockControl conControl3 ;
53
+ protected Connection con3 ;
54
+
51
55
protected MockControl rsmdControl ;
52
56
protected ResultSetMetaData rsmd ;
53
57
protected MockControl rsControl ;
54
58
protected ResultSet rs ;
55
59
protected MockControl stmtControl ;
56
60
protected Statement stmt ;
57
61
protected JdbcTemplate jdbcTemplate ;
62
+
58
63
protected MockControl rsmdControl2 ;
59
64
protected ResultSetMetaData rsmd2 ;
60
65
protected MockControl rsControl2 ;
@@ -63,6 +68,14 @@ public abstract class AbstractRowMapperTests extends TestCase {
63
68
protected Statement stmt2 ;
64
69
protected JdbcTemplate jdbcTemplate2 ;
65
70
71
+ protected MockControl rsmdControl3 ;
72
+ protected ResultSetMetaData rsmd3 ;
73
+ protected MockControl rsControl3 ;
74
+ protected ResultSet rs3 ;
75
+ protected MockControl stmtControl3 ;
76
+ protected Statement stmt3 ;
77
+ protected JdbcTemplate jdbcTemplate3 ;
78
+
66
79
protected void setUp () throws SQLException {
67
80
conControl = MockControl .createControl (Connection .class );
68
81
con = (Connection ) conControl .getMock ();
@@ -119,6 +132,9 @@ protected void setUp() throws SQLException {
119
132
stmt .close ();
120
133
stmtControl .setVoidCallable (1 );
121
134
135
+ conControl .replay ();
136
+ stmtControl .replay ();
137
+
122
138
conControl2 = MockControl .createControl (Connection .class );
123
139
con2 = (Connection ) conControl2 .getMock ();
124
140
con2 .isClosed ();
@@ -174,11 +190,67 @@ protected void setUp() throws SQLException {
174
190
stmt2 .close ();
175
191
stmtControl2 .setVoidCallable (2 );
176
192
177
- conControl .replay ();
178
- stmtControl .replay ();
179
193
conControl2 .replay ();
180
194
stmtControl2 .replay ();
181
195
196
+ conControl3 = MockControl .createControl (Connection .class );
197
+ con3 = (Connection ) conControl3 .getMock ();
198
+ con3 .isClosed ();
199
+ conControl3 .setDefaultReturnValue (false );
200
+
201
+ rsmdControl3 = MockControl .createControl (ResultSetMetaData .class );
202
+ rsmd3 = (ResultSetMetaData )rsmdControl3 .getMock ();
203
+ rsmd3 .getColumnCount ();
204
+ rsmdControl3 .setReturnValue (4 , 1 );
205
+ rsmd3 .getColumnLabel (1 );
206
+ rsmdControl3 .setReturnValue ("Last Name" , 1 );
207
+ rsmd3 .getColumnLabel (2 );
208
+ rsmdControl3 .setReturnValue ("age" , 1 );
209
+ rsmd3 .getColumnLabel (3 );
210
+ rsmdControl3 .setReturnValue ("birth_date" , 1 );
211
+ rsmd3 .getColumnLabel (4 );
212
+ rsmdControl3 .setReturnValue ("balance" , 1 );
213
+ rsmdControl3 .replay ();
214
+
215
+ rsControl3 = MockControl .createControl (ResultSet .class );
216
+ rs3 = (ResultSet ) rsControl3 .getMock ();
217
+ rs3 .getMetaData ();
218
+ rsControl3 .setReturnValue (rsmd3 , 1 );
219
+ rs3 .next ();
220
+ rsControl3 .setReturnValue (true , 1 );
221
+ rs3 .getString (1 );
222
+ rsControl3 .setReturnValue ("Gagarin" , 1 );
223
+ rs3 .wasNull ();
224
+ rsControl3 .setReturnValue (false , 1 );
225
+ rs3 .getLong (2 );
226
+ rsControl3 .setReturnValue (22 , 1 );
227
+ rs3 .getTimestamp (3 );
228
+ rsControl3 .setReturnValue (new Timestamp (1221222L ), 1 );
229
+ rs3 .getBigDecimal (4 );
230
+ rsControl3 .setReturnValue (new BigDecimal ("1234.56" ), 1 );
231
+ rs3 .next ();
232
+ rsControl3 .setReturnValue (false , 1 );
233
+ rs3 .close ();
234
+ rsControl3 .setVoidCallable (1 );
235
+ rsControl3 .replay ();
236
+
237
+ stmtControl3 = MockControl .createControl (Statement .class );
238
+ stmt3 = (Statement ) stmtControl3 .getMock ();
239
+
240
+ con3 .createStatement ();
241
+ conControl3 .setReturnValue (stmt3 , 1 );
242
+ stmt3 .executeQuery ("select last_name as \" Last Name\" , age, birth_date, balance from people" );
243
+ stmtControl3 .setReturnValue (rs3 , 1 );
244
+ if (debugEnabled ) {
245
+ stmt3 .getWarnings ();
246
+ stmtControl3 .setReturnValue (null , 1 );
247
+ }
248
+ stmt3 .close ();
249
+ stmtControl3 .setVoidCallable (1 );
250
+
251
+ conControl3 .replay ();
252
+ stmtControl3 .replay ();
253
+
182
254
jdbcTemplate = new JdbcTemplate ();
183
255
jdbcTemplate .setDataSource (new SingleConnectionDataSource (con , false ));
184
256
jdbcTemplate .setExceptionTranslator (new SQLStateSQLExceptionTranslator ());
@@ -188,6 +260,11 @@ protected void setUp() throws SQLException {
188
260
jdbcTemplate2 .setDataSource (new SingleConnectionDataSource (con2 , false ));
189
261
jdbcTemplate2 .setExceptionTranslator (new SQLStateSQLExceptionTranslator ());
190
262
jdbcTemplate2 .afterPropertiesSet ();
263
+
264
+ jdbcTemplate3 = new JdbcTemplate ();
265
+ jdbcTemplate3 .setDataSource (new SingleConnectionDataSource (con3 , false ));
266
+ jdbcTemplate3 .setExceptionTranslator (new SQLStateSQLExceptionTranslator ());
267
+ jdbcTemplate3 .afterPropertiesSet ();
191
268
}
192
269
193
270
protected void verifyPerson (Person bean ) {
@@ -217,6 +294,17 @@ protected void verifyConcretePerson(ConcretePerson bean) {
217
294
assertEquals (new BigDecimal ("1234.56" ), bean .getBalance ());
218
295
}
219
296
297
+ protected void verifySpacePerson (SpacePerson bean ) {
298
+ conControl3 .verify ();
299
+ rsControl3 .verify ();
300
+ rsmdControl3 .verify ();
301
+ stmtControl3 .verify ();
302
+ assertEquals ("Gagarin" , bean .getLastName ());
303
+ assertEquals (22L , bean .getAge ());
304
+ assertEquals (new java .util .Date (1221222L ), bean .getBirthDate ());
305
+ assertEquals (new BigDecimal ("1234.56" ), bean .getBalance ());
306
+ }
307
+
220
308
private void verify () {
221
309
conControl .verify ();
222
310
rsControl .verify ();
0 commit comments