File size: 14,206 Bytes
2795186 |
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 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 |
/*
Copyright 2002-2004 MySQL AB, 2008 Sun Microsystems
This program is free software; you can redistribute it and/or modify
it under the terms of version 2 of the GNU General Public License as
published by the Free Software Foundation.
There are special exceptions to the terms and conditions of the GPL
as it is applied to this software. View the full text of the
exception in file EXCEPTIONS-CONNECTOR-J in the directory of this
software distribution.
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 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 testsuite.BaseTestCase;
import com.mysql.jdbc.SQLError;
/**
*
* @author Mark Matthews
* @version $Id$
*/
public class DateTest extends BaseTestCase {
// ~ Constructors
// -----------------------------------------------------------
/**
* Creates a new DateTest object.
*
* @param name
* DOCUMENT ME!
*/
public DateTest(String name) {
super(name);
}
// ~ Methods
// ----------------------------------------------------------------
/**
* Runs all test cases in this test suite
*
* @param args
*/
public static void main(String[] args) {
junit.textui.TestRunner.run(DateTest.class);
}
/**
* DOCUMENT ME!
*
* @throws Exception
* DOCUMENT ME!
*/
public void setUp() throws Exception {
super.setUp();
createTestTable();
}
/**
* DOCUMENT ME!
*
* @throws SQLException
* DOCUMENT ME!
*/
public void testTimestamp() throws SQLException {
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");
}
}
private void createTestTable() throws SQLException {
//
// Catch the error, the table might exist
//
try {
this.stmt.executeUpdate("DROP TABLE DATETEST");
} catch (SQLException SQLE) {
;
}
this.stmt
.executeUpdate("CREATE TABLE DATETEST (tstamp TIMESTAMP, dt DATE, dtime DATETIME, tm TIME)");
}
/**
* Tests the configurability of all-zero date/datetime/timestamp handling in
* the driver.
*
* @throws Exception
* if the test fails.
*/
public void testZeroDateBehavior() throws Exception {
try {
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')");
Properties props = new Properties();
props.setProperty("zeroDateTimeBehavior", "round");
Connection roundConn = getConnectionWithProps(props);
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)));
props = new Properties();
props.setProperty("zeroDateTimeBehavior", "convertToNull");
Connection nullConn = getConnectionWithProps(props);
Statement nullStmt = nullConn.createStatement();
this.rs = nullStmt
.executeQuery("SELECT fieldAsString, fieldAsDateTime FROM testZeroDateBehavior");
this.rs.next();
assertTrue(null == this.rs.getDate(1));
assertTrue(null == this.rs.getTimestamp(1));
assertTrue(null == this.rs.getDate(2));
assertTrue(null == this.rs.getTimestamp(2));
PreparedStatement nullPrepStmt = nullConn
.prepareStatement("SELECT fieldAsString, fieldAsDateTime FROM testZeroDateBehavior");
this.rs = nullPrepStmt.executeQuery();
this.rs.next();
assertTrue(null == this.rs.getDate(1));
assertTrue(null == this.rs.getTimestamp(1));
assertTrue(null == this.rs.getDate(2));
assertTrue(null == this.rs.getTimestamp(2));
assertTrue(null == this.rs.getString(2));
props = new Properties();
props.setProperty("zeroDateTimeBehavior", "exception");
Connection exceptionConn = getConnectionWithProps(props);
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");
}
}
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));
}
}
|