blob: 5a660507eee9d9681fc2f128bd72b30672d52751 [file] [log] [blame]
/*
* Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code 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
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
package test.sql;
import java.sql.Date;
import java.time.Instant;
import java.time.LocalDate;
import static org.testng.Assert.*;
import org.testng.annotations.AfterClass;
import org.testng.annotations.AfterMethod;
import org.testng.annotations.BeforeClass;
import org.testng.annotations.BeforeMethod;
import org.testng.annotations.Test;
public class DateTests {
public DateTests() {
}
@BeforeClass
public static void setUpClass() throws Exception {
}
@AfterClass
public static void tearDownClass() throws Exception {
}
@BeforeMethod
public void setUpMethod() throws Exception {
}
@AfterMethod
public void tearDownMethod() throws Exception {
}
/**
* Validate an IllegalArgumentException is thrown for an invalid Date string
*/
@Test(expectedExceptions = IllegalArgumentException.class)
public void testInvalid_year() throws Exception {
String expResult = "20009-11-01";
Date.valueOf(expResult);
}
/**
* Validate an IllegalArgumentException is thrown for an invalid Date string
*/
@Test(expectedExceptions = IllegalArgumentException.class)
public void testInvalid_year2() throws Exception {
String expResult = "09-11-01";
Date.valueOf(expResult);
}
/**
* Validate an IllegalArgumentException is thrown for an invalid Date string
*/
@Test(expectedExceptions = IllegalArgumentException.class)
public void testInvalid_year3() throws Exception {
String expResult = "-11-01";
Date.valueOf(expResult);
}
/**
* Validate an IllegalArgumentException is thrown for an invalid Date string
*/
@Test(expectedExceptions = IllegalArgumentException.class)
public void testInvalid_month() throws Exception {
String expResult = "2009-111-01";
Date.valueOf(expResult);
}
/**
* Validate an IllegalArgumentException is thrown for an invalid Date string
*/
@Test(expectedExceptions = IllegalArgumentException.class)
public void testInvalid_month3() throws Exception {
String expResult = "2009--01";
Date.valueOf(expResult);
}
/**
* Validate an IllegalArgumentException is thrown for an invalid Date string
*/
@Test(expectedExceptions = IllegalArgumentException.class)
public void testInvalid_month4() throws Exception {
String expResult = "2009-13-01";
Date.valueOf(expResult);
}
/**
* Validate an IllegalArgumentException is thrown for an invalid Date string
*/
@Test(expectedExceptions = IllegalArgumentException.class)
public void testInvalid_day() throws Exception {
String expResult = "2009-11-011";
Date.valueOf(expResult);
}
/**
* Validate an IllegalArgumentException is thrown for an invalid Date string
*/
@Test(expectedExceptions = IllegalArgumentException.class)
public void testInvalid_day3() throws Exception {
String expResult = "2009-11-";
Date.valueOf(expResult);
}
/**
* Validate an IllegalArgumentException is thrown for an invalid Date string
*/
@Test(expectedExceptions = IllegalArgumentException.class)
public void testInvalid_day4() throws Exception {
String expResult = "2009-11-00";
Date.valueOf(expResult);
}
/**
* Validate an IllegalArgumentException is thrown for an invalid Date string
*/
@Test(expectedExceptions = IllegalArgumentException.class)
public void testInvalid_day5() throws Exception {
String expResult = "2009-11-33";
Date.valueOf(expResult);
}
/**
* Validate an IllegalArgumentException is thrown for an invalid Date string
*/
@Test(expectedExceptions = IllegalArgumentException.class)
public void testInvalid_valueOf() throws Exception {
String expResult = "--";
Date.valueOf(expResult);
}
/**
* Validate an IllegalArgumentException is thrown for an invalid Date string
*/
@Test(expectedExceptions = IllegalArgumentException.class)
public void testInvalid_valueOf2() throws Exception {
String expResult = "";
Date.valueOf(expResult);
}
/**
* Validate an IllegalArgumentException is thrown for an invalid Date string
*/
@Test(expectedExceptions = IllegalArgumentException.class)
public void testInvalid_valueOf3() throws Exception {
String expResult = null;
Date.valueOf(expResult);
}
/**
* Validate an IllegalArgumentException is thrown for an invalid Date string
*/
@Test(expectedExceptions = IllegalArgumentException.class)
public void testInvalid_valueOf4() throws Exception {
String expResult = "-";
Date.valueOf(expResult);
}
/**
* Validate an IllegalArgumentException is thrown for an invalid Date string
*/
@Test(expectedExceptions = IllegalArgumentException.class)
public void testInvalid_valueOf5() throws Exception {
String expResult = "2009";
Date.valueOf(expResult);
}
/**
* Validate an IllegalArgumentException is thrown for an invalid Date string
*/
@Test(expectedExceptions = IllegalArgumentException.class)
public void testInvalid_valueOf6() throws Exception {
String expResult = "2009-01";
Date.valueOf(expResult);
}
/**
* Validate an IllegalArgumentException is thrown for an invalid Date string
*/
@Test(expectedExceptions = IllegalArgumentException.class)
public void testInvalid_valueOf7() throws Exception {
String expResult = "---";
Date.valueOf(expResult);
}
/**
* Validate an IllegalArgumentException is thrown for an invalid Date string
*/
@Test(expectedExceptions = IllegalArgumentException.class)
public void testInvalid_valueOf8() throws Exception {
String expResult = "2009-13--1";
Date.valueOf(expResult);
}
/**
* Validate an IllegalArgumentException is thrown for an invalid Date string
*/
@Test(expectedExceptions = IllegalArgumentException.class)
public void testInvalid_valueOf10() {
String expResult = "1900-1-0";
Date.valueOf(expResult);
}
/**
* Test that a date created from a date string is equal to the value
* returned from toString()
*/
@Test
public void test_valueOf() {
String expResult = "2009-08-30";
Date d = Date.valueOf(expResult);
assertEquals(expResult, d.toString());
}
/**
* Test that two dates, one with lead 0s omitted for month are equal
*/
@Test
public void testValid_month_single_digit() {
String testDate = "2009-1-01";
String expResult = "2009-01-01";
Date d = Date.valueOf(testDate);
Date d2 = Date.valueOf(expResult);
assertEquals(d, d2);
}
/**
* Test that two dates, one with lead 0s omitted for day are equal
*/
@Test
public void testValid_day_single_digit() {
String testDate = "2009-11-1";
String expResult = "2009-11-01";
Date d = Date.valueOf(testDate);
Date d2 = Date.valueOf(expResult);
assertEquals(d, d2);
}
/**
* Test that two dates, one with lead 0s omitted for month and day are equal
*/
@Test
public void testValid_month_day_single_digit() {
String testDate = "2009-1-1";
String expResult = "2009-01-01";
Date d = Date.valueOf(testDate);
Date d2 = Date.valueOf(expResult);
assertEquals(d, d2);
}
/**
* Validate that a Date.after() returns false when same date is compared
*/
@Test
public void test1() {
Date d = Date.valueOf("1961-08-30");
assertFalse(d.after(d), "Error d.after(d) = true");
}
/**
* Validate that a Date.after() returns true when later date is compared to
* earlier date
*/
@Test
public void test2() {
Date d = Date.valueOf("1961-08-30");
Date d2 = new Date(System.currentTimeMillis());
assertTrue(d2.after(d), "Error d2.after(d) = false");
}
/**
* Validate that a Date.after() returns false when earlier date is compared
* to later date
*/
@Test
public void test3() {
Date d = Date.valueOf("1961-08-30");
Date d2 = new Date(d.getTime());
assertFalse(d.after(d2), "Error d.after(d2) = true");
}
/**
* Validate that a Date.after() returns false when date compared to another
* date created from the original date
*/
@Test
public void test4() {
Date d = Date.valueOf("1961-08-30");
Date d2 = new Date(d.getTime());
assertFalse(d.after(d2), "Error d.after(d2) = true");
assertFalse(d2.after(d), "Error d2.after(d) = true");
}
/**
* Validate that a Date.before() returns false when same date is compared
*/
@Test
public void test5() {
Date d = Date.valueOf("1961-08-30");
assertFalse(d.before(d), "Error d.before(d) = true");
}
/**
* Validate that a Date.before() returns true when earlier date is compared
* to later date
*/
@Test
public void test6() {
Date d = Date.valueOf("1961-08-30");
Date d2 = new Date(System.currentTimeMillis());
assertTrue(d.before(d2), "Error d.before(d2) = false");
}
/**
* Validate that a Date.before() returns false when later date is compared
* to earlier date
*/
@Test
public void test7() {
Date d = Date.valueOf("1961-08-30");
Date d2 = new Date(d.getTime());
assertFalse(d2.before(d), "Error d2.before(d) = true");
}
/**
* Validate that a Date.before() returns false when date compared to another
* date created from the original date
*/
@Test
public void test8() {
Date d = Date.valueOf("1961-08-30");
Date d2 = new Date(d.getTime());
assertFalse(d.before(d2), "Error d.before(d2) = true");
assertFalse(d2.before(d), "Error d2.before(d) = true");
}
/**
* Validate that a Date.compareTo returns 0 when both Date objects are the
* same
*/
@Test
public void test9() {
Date d = Date.valueOf("1961-08-30");
assertTrue(d.compareTo(d) == 0, "Error d.compareTo(d) !=0");
}
/**
* Validate that a Date.compareTo returns 0 when both Date objects represent
* the same date
*/
@Test
public void test10() {
Date d = Date.valueOf("1961-08-30");
Date d2 = new Date(d.getTime());
assertTrue(d.compareTo(d2) == 0, "Error d.compareTo(d2) !=0");
}
/**
* Validate that a Date.compareTo returns -1 when comparing a date to a
* later date
*/
@Test
public void test11() {
Date d = Date.valueOf("1961-08-30");
Date d2 = new Date(System.currentTimeMillis());
assertTrue(d.compareTo(d2) == -1, "Error d.compareTo(d2) != -1");
}
/**
* Validate that a Date.compareTo returns 1 when comparing a date to an
* earlier date
*/
@Test
public void test12() {
Date d = Date.valueOf("1961-08-30");
Date d2 = new Date(System.currentTimeMillis());
assertTrue(d2.compareTo(d) == 1, "Error d.compareTo(d2) != 1");
}
/**
* Validate that a Date made from a LocalDate are equal
*/
@Test
public void test13() {
Date d = Date.valueOf("1961-08-30");
LocalDate ldt = d.toLocalDate();
Date d2 = Date.valueOf(ldt);
assertTrue(d.equals(d2), "Error d != d2");
}
/**
* Validate that a Date LocalDate value, made from a LocalDate are equal
*/
@Test
public void test14() {
LocalDate ldt = LocalDate.now();
Date d = Date.valueOf(ldt);
assertTrue(ldt.equals(d.toLocalDate()),
"Error LocalDate values are not equal");
}
/**
* Validate an NPE occurs when a null LocalDate is passed to valueOf
*/
@Test(expectedExceptions = NullPointerException.class)
public void test15() throws Exception {
LocalDate ld = null;
Date.valueOf(ld);
}
/**
* Validate an UnsupportedOperationException occurs when toInstant() is
* called
*/
@Test(expectedExceptions = UnsupportedOperationException.class)
public void test16() throws Exception {
Date d = Date.valueOf("1961-08-30");
Instant instant = d.toInstant();
}
/**
* Validate that two Date objects are equal when one is created from the
* toString() of the other
*/
@Test
public void test17() {
Date d = Date.valueOf("1961-08-30");
Date d2 = Date.valueOf(d.toString());
assertTrue(d.equals(d2) && d2.equals(d), "Error d != d2");
}
/**
* Validate that two Date values one created using valueOf and another via a
* constructor are equal
*/
@Test
public void test18() {
Date d = Date.valueOf("1961-08-30");
Date d2 = new Date(61, 7, 30);
assertTrue(d.equals(d2), "Error d != d2");
}
/**
* Validate that two Date values one created using getTime() of the other
* are equal
*/
@Test
public void test19() {
Date d = Date.valueOf("1961-08-30");
Date d2 = new Date(d.getTime());
assertTrue(d.equals(d2), "Error d != d2");
}
/**
* Validate that a Date value is equal to itself
*/
@Test
public void test20() {
Date d = Date.valueOf("1961-08-30");
assertTrue(d.equals(d), "Error d != d");
}
/**
* Validate an IllegalArgumentException is thrown for calling getHours
*/
@Test(expectedExceptions = IllegalArgumentException.class)
public void test21() throws Exception {
Date d = Date.valueOf("1961-08-30");
d.getHours();
}
/**
* Validate an IllegalArgumentException is thrown for calling getMinutes
*/
@Test(expectedExceptions = IllegalArgumentException.class)
public void test22() throws Exception {
Date d = Date.valueOf("1961-08-30");
d.getMinutes();
}
/**
* Validate an IllegalArgumentException is thrown for calling getSeconds
*/
@Test(expectedExceptions = IllegalArgumentException.class)
public void test23() throws Exception {
Date d = Date.valueOf("1961-08-30");
d.getSeconds();
}
/**
* Validate an IllegalArgumentException is thrown for calling setHours
*/
@Test(expectedExceptions = IllegalArgumentException.class)
public void test24() throws Exception {
Date d = Date.valueOf("1961-08-30");
d.setHours(8);
}
/**
* Validate an IllegalArgumentException is thrown for calling setMinutes
*/
@Test(expectedExceptions = IllegalArgumentException.class)
public void test25() throws Exception {
Date d = Date.valueOf("1961-08-30");
d.setMinutes(0);
}
/**
* Validate an IllegalArgumentException is thrown for calling setSeconds
*/
@Test(expectedExceptions = IllegalArgumentException.class)
public void test26() throws Exception {
Date d = Date.valueOf("1961-08-30");
d.setSeconds(0);
}
}