DateTest.java
15.7 KB
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
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
/*
Copyright (c) 2002, 2016, Oracle and/or its affiliates. All rights reserved.
The MySQL Connector/J is licensed under the terms of the GPLv2
<http://www.gnu.org/licenses/old-licenses/gpl-2.0.html>, like most MySQL Connectors.
There are special exceptions to the terms and conditions of the GPLv2 as it is applied to
this software, see the FOSS License Exception
<http://www.mysql.com/about/legal/licensing/foss-exception.html>.
This program is free software; you can redistribute it and/or modify it under the terms
of the GNU General Public License as published by the Free Software Foundation; version 2
of the License.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this
program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth
Floor, Boston, MA 02110-1301 USA
*/
package testsuite.simple;
import java.sql.Connection;
import java.sql.Date;
import java.sql.PreparedStatement;
import java.sql.SQLException;
import java.sql.Statement;
import java.sql.Time;
import java.sql.Timestamp;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Locale;
import java.util.Properties;
import java.util.TimeZone;
import com.mysql.jdbc.SQLError;
import testsuite.BaseTestCase;
public class DateTest extends BaseTestCase {
/**
* Creates a new DateTest object.
*
* @param name
*/
public DateTest(String name) {
super(name);
}
/**
* Runs all test cases in this test suite
*
* @param args
*/
public static void main(String[] args) {
junit.textui.TestRunner.run(DateTest.class);
}
@Override
public void setUp() throws Exception {
super.setUp();
}
public void testTimestamp() throws SQLException {
createTable("DATETEST", "(tstamp TIMESTAMP, dt DATE, dtime DATETIME, tm TIME)");
this.pstmt = this.conn.prepareStatement("INSERT INTO DATETEST(tstamp, dt, dtime, tm) VALUES (?, ?, ?, ?)");
// TimeZone.setDefault(TimeZone.getTimeZone("GMT"));
Calendar cal = Calendar.getInstance();
cal.set(Calendar.MONTH, 6);
cal.set(Calendar.DAY_OF_MONTH, 3);
cal.set(Calendar.YEAR, 2002);
cal.set(Calendar.HOUR, 7);
cal.set(Calendar.MINUTE, 0);
cal.set(Calendar.SECOND, 0);
cal.set(Calendar.MILLISECOND, 0);
cal.set(Calendar.AM_PM, Calendar.AM);
cal.getTime();
System.out.println(cal);
// DateFormat df = SimpleDateFormat.getInstance();
DateFormat df = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss z");
Calendar calGMT = Calendar.getInstance(TimeZone.getTimeZone("GMT"));
// df.setTimeZone(TimeZone.getTimeZone("GMT"));
Timestamp nowTstamp = new Timestamp(cal.getTime().getTime());
java.sql.Date nowDate = new java.sql.Date(cal.getTime().getTime());
Timestamp nowDatetime = new Timestamp(cal.getTime().getTime());
java.sql.Time nowTime = new java.sql.Time(cal.getTime().getTime());
System.out.println("** Times with given calendar (before storing) **\n");
System.out.println("TIMESTAMP:\t" + nowTstamp.getTime() + " -> " + df.format(nowTstamp));
System.out.println("DATE:\t\t" + nowDate.getTime() + " -> " + df.format(nowDate));
System.out.println("DATETIME:\t" + nowDatetime.getTime() + " -> " + df.format(nowDatetime));
System.out.println("DATE:\t\t" + nowDate.getTime() + " -> " + df.format(nowDate));
System.out.println("TIME:\t\t" + nowTime.getTime() + " -> " + df.format(nowTime));
System.out.println("\n");
this.pstmt.setTimestamp(1, nowTstamp, calGMT);
// have to use the same TimeZone as used to create or there will be
// shift
this.pstmt.setDate(2, nowDate, cal);
this.pstmt.setTimestamp(3, nowDatetime, calGMT);
// have to use the same TimeZone as used to create or there will be
// shift
this.pstmt.setTime(4, nowTime, cal);
this.pstmt.execute();
this.pstmt.getUpdateCount();
this.pstmt.clearParameters();
this.rs = this.stmt.executeQuery("SELECT * from DATETEST");
java.sql.Date thenDate = null;
while (this.rs.next()) {
Timestamp thenTstamp = this.rs.getTimestamp(1, calGMT);
thenDate = this.rs.getDate(2, cal);
java.sql.Timestamp thenDatetime = this.rs.getTimestamp(3, calGMT);
java.sql.Time thenTime = this.rs.getTime(4, cal);
System.out.println("** Times with given calendar (retrieved from database) **\n");
System.out.println("TIMESTAMP:\t" + thenTstamp.getTime() + " -> " + df.format(thenTstamp));
System.out.println("DATE:\t\t" + thenDate.getTime() + " -> " + df.format(thenDate));
System.out.println("DATETIME:\t" + thenDatetime.getTime() + " -> " + df.format(thenDatetime));
System.out.println("TIME:\t\t" + thenTime.getTime() + " -> " + df.format(thenTime));
System.out.println("\n");
}
this.rs.close();
this.rs = null;
}
public void testNanosParsing() throws SQLException {
try {
this.stmt.executeUpdate("DROP TABLE IF EXISTS testNanosParsing");
this.stmt.executeUpdate("CREATE TABLE testNanosParsing (dateIndex int, field1 VARCHAR(32))");
this.stmt.executeUpdate("INSERT INTO testNanosParsing VALUES (1, '1969-12-31 18:00:00.0'), (2, '1969-12-31 18:00:00.000000090'), "
+ "(3, '1969-12-31 18:00:00.000000900'), (4, '1969-12-31 18:00:00.000009000'), (5, '1969-12-31 18:00:00.000090000'), "
+ "(6, '1969-12-31 18:00:00.000900000'), (7, '1969-12-31 18:00:00.')");
this.rs = this.stmt.executeQuery("SELECT field1 FROM testNanosParsing ORDER BY dateIndex ASC");
assertTrue(this.rs.next());
assertTrue(this.rs.getTimestamp(1).getNanos() == 0);
assertTrue(this.rs.next());
assertTrue(this.rs.getTimestamp(1).getNanos() + " != 90", this.rs.getTimestamp(1).getNanos() == 90);
assertTrue(this.rs.next());
assertTrue(this.rs.getTimestamp(1).getNanos() + " != 900", this.rs.getTimestamp(1).getNanos() == 900);
assertTrue(this.rs.next());
assertTrue(this.rs.getTimestamp(1).getNanos() + " != 9000", this.rs.getTimestamp(1).getNanos() == 9000);
assertTrue(this.rs.next());
assertTrue(this.rs.getTimestamp(1).getNanos() + " != 90000", this.rs.getTimestamp(1).getNanos() == 90000);
assertTrue(this.rs.next());
assertTrue(this.rs.getTimestamp(1).getNanos() + " != 900000", this.rs.getTimestamp(1).getNanos() == 900000);
assertTrue(this.rs.next());
try {
this.rs.getTimestamp(1);
} catch (SQLException sqlEx) {
assertTrue(SQLError.SQL_STATE_ILLEGAL_ARGUMENT.equals(sqlEx.getSQLState()));
}
} finally {
this.stmt.executeUpdate("DROP TABLE IF EXISTS testNanosParsing");
}
}
/**
* Tests the configurability of all-zero date/datetime/timestamp handling in the driver.
*
* @throws Exception
* if the test fails.
*/
public void testZeroDateBehavior() throws Exception {
Connection testConn = this.conn;
Connection roundConn = null;
Connection nullConn = null;
Connection exceptionConn = null;
try {
if (versionMeetsMinimum(5, 7, 4)) {
Properties props = new Properties();
props.put("jdbcCompliantTruncation", "false");
if (versionMeetsMinimum(5, 7, 5)) {
String sqlMode = getMysqlVariable("sql_mode");
if (sqlMode.contains("STRICT_TRANS_TABLES")) {
sqlMode = removeSqlMode("STRICT_TRANS_TABLES", sqlMode);
props.put("sessionVariables", "sql_mode='" + sqlMode + "'");
}
}
testConn = getConnectionWithProps(props);
this.stmt = testConn.createStatement();
}
this.stmt.executeUpdate("DROP TABLE IF EXISTS testZeroDateBehavior");
this.stmt.executeUpdate("CREATE TABLE testZeroDateBehavior(fieldAsString VARCHAR(32), fieldAsDateTime DATETIME)");
this.stmt.executeUpdate("INSERT INTO testZeroDateBehavior VALUES ('0000-00-00 00:00:00', '0000-00-00 00:00:00')");
roundConn = getConnectionWithProps("zeroDateTimeBehavior=round");
Statement roundStmt = roundConn.createStatement();
this.rs = roundStmt.executeQuery("SELECT fieldAsString, fieldAsDateTime FROM testZeroDateBehavior");
this.rs.next();
assertEquals("0001-01-01", this.rs.getDate(1).toString());
assertEquals("0001-01-01 00:00:00.0", new SimpleDateFormat("yyyy-MM-dd HH:mm:ss.0", Locale.US).format(this.rs.getTimestamp(1)));
assertEquals("0001-01-01", this.rs.getDate(2).toString());
assertEquals("0001-01-01 00:00:00.0", new SimpleDateFormat("yyyy-MM-dd HH:mm:ss.0", Locale.US).format(this.rs.getTimestamp(2)));
PreparedStatement roundPrepStmt = roundConn.prepareStatement("SELECT fieldAsString, fieldAsDateTime FROM testZeroDateBehavior");
this.rs = roundPrepStmt.executeQuery();
this.rs.next();
assertEquals("0001-01-01", this.rs.getDate(1).toString());
assertEquals("0001-01-01 00:00:00.0", new SimpleDateFormat("yyyy-MM-dd HH:mm:ss.0", Locale.US).format(this.rs.getTimestamp(1)));
assertEquals("0001-01-01", this.rs.getDate(2).toString());
assertEquals("0001-01-01 00:00:00.0", new SimpleDateFormat("yyyy-MM-dd HH:mm:ss.0", Locale.US).format(this.rs.getTimestamp(2)));
nullConn = getConnectionWithProps("zeroDateTimeBehavior=convertToNull");
Statement nullStmt = nullConn.createStatement();
this.rs = nullStmt.executeQuery("SELECT fieldAsString, fieldAsDateTime FROM testZeroDateBehavior");
this.rs.next();
assertNull(this.rs.getDate(1));
assertNull(this.rs.getTimestamp(1));
assertNull(this.rs.getDate(2));
assertNull(this.rs.getTimestamp(2));
PreparedStatement nullPrepStmt = nullConn.prepareStatement("SELECT fieldAsString, fieldAsDateTime FROM testZeroDateBehavior");
this.rs = nullPrepStmt.executeQuery();
this.rs.next();
assertNull(this.rs.getDate(1));
assertNull(this.rs.getTimestamp(1));
assertNull(this.rs.getDate(2));
assertNull(this.rs.getTimestamp(2));
assertNull(this.rs.getString(2));
exceptionConn = getConnectionWithProps("zeroDateTimeBehavior=exception");
Statement exceptionStmt = exceptionConn.createStatement();
this.rs = exceptionStmt.executeQuery("SELECT fieldAsString, fieldAsDateTime FROM testZeroDateBehavior");
this.rs.next();
try {
this.rs.getDate(1);
fail("Exception should have been thrown when trying to retrieve invalid date");
} catch (SQLException sqlEx) {
assertTrue(SQLError.SQL_STATE_ILLEGAL_ARGUMENT.equals(sqlEx.getSQLState()));
}
try {
this.rs.getTimestamp(1);
fail("Exception should have been thrown when trying to retrieve invalid date");
} catch (SQLException sqlEx) {
assertTrue(SQLError.SQL_STATE_ILLEGAL_ARGUMENT.equals(sqlEx.getSQLState()));
}
try {
this.rs.getDate(2);
fail("Exception should have been thrown when trying to retrieve invalid date");
} catch (SQLException sqlEx) {
assertTrue(SQLError.SQL_STATE_ILLEGAL_ARGUMENT.equals(sqlEx.getSQLState()));
}
try {
this.rs.getTimestamp(2);
fail("Exception should have been thrown when trying to retrieve invalid date");
} catch (SQLException sqlEx) {
assertTrue(SQLError.SQL_STATE_ILLEGAL_ARGUMENT.equals(sqlEx.getSQLState()));
}
PreparedStatement exceptionPrepStmt = exceptionConn.prepareStatement("SELECT fieldAsString, fieldAsDateTime FROM testZeroDateBehavior");
try {
this.rs = exceptionPrepStmt.executeQuery();
this.rs.next();
this.rs.getDate(2);
fail("Exception should have been thrown when trying to retrieve invalid date");
} catch (SQLException sqlEx) {
assertTrue(SQLError.SQL_STATE_ILLEGAL_ARGUMENT.equals(sqlEx.getSQLState()));
}
} finally {
this.stmt.executeUpdate("DROP TABLE IF EXISTS testZeroDateBehavior");
if (exceptionConn != null) {
exceptionConn.close();
}
if (nullConn != null) {
nullConn.close();
}
if (roundConn != null) {
roundConn.close();
}
if (testConn != this.conn) {
testConn.close();
}
}
}
@SuppressWarnings("deprecation")
public void testReggieBug() throws Exception {
try {
this.stmt.executeUpdate("DROP TABLE IF EXISTS testReggieBug");
this.stmt.executeUpdate("CREATE TABLE testReggieBug (field1 DATE)");
PreparedStatement pStmt = this.conn.prepareStatement("INSERT INTO testReggieBug VALUES (?)");
pStmt.setDate(1, new Date(2004 - 1900, 07, 28));
pStmt.executeUpdate();
this.rs = this.stmt.executeQuery("SELECT * FROM testReggieBug");
this.rs.next();
System.out.println(this.rs.getDate(1));
this.rs = this.conn.prepareStatement("SELECT * FROM testReggieBug").executeQuery();
this.rs.next();
System.out.println(this.rs.getDate(1));
} finally {
this.stmt.executeUpdate("DROP TABLE IF EXISTS testReggieBug");
}
}
public void testNativeConversions() throws Exception {
Timestamp ts = new Timestamp(System.currentTimeMillis());
Date dt = new Date(ts.getTime());
Time tm = new Time(ts.getTime());
createTable("testNativeConversions", "(time_field TIME, date_field DATE, datetime_field DATETIME, timestamp_field TIMESTAMP)");
this.pstmt = this.conn.prepareStatement("INSERT INTO testNativeConversions VALUES (?,?,?,?)");
this.pstmt.setTime(1, tm);
this.pstmt.setDate(2, dt);
this.pstmt.setTimestamp(3, ts);
this.pstmt.setTimestamp(4, ts);
this.pstmt.execute();
this.pstmt.close();
this.pstmt = this.conn.prepareStatement("SELECT time_field, date_field, datetime_field, timestamp_field FROM testNativeConversions");
this.rs = this.pstmt.executeQuery();
assertTrue(this.rs.next());
System.out.println(this.rs.getTime(1));
System.out.println(this.rs.getTime(2));
System.out.println(this.rs.getTime(3));
System.out.println(this.rs.getTime(4));
System.out.println();
System.out.println(this.rs.getDate(1));
System.out.println(this.rs.getDate(2));
System.out.println(this.rs.getDate(3));
System.out.println(this.rs.getDate(4));
System.out.println();
System.out.println(this.rs.getTimestamp(1));
System.out.println(this.rs.getTimestamp(2));
System.out.println(this.rs.getTimestamp(3));
System.out.println(this.rs.getTimestamp(4));
}
}