123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623 |
- package goja
- import (
- "testing"
- "time"
- )
- func TestDateUTC(t *testing.T) {
- const SCRIPT = `
- assert.sameValue(Date.UTC(1970, 0), 0, '1970, 0');
- assert.sameValue(Date.UTC(2016, 0), 1451606400000, '2016, 0');
- assert.sameValue(Date.UTC(2016, 6), 1467331200000, '2016, 6');
- assert.sameValue(Date.UTC(2016, 6, 1), 1467331200000, '2016, 6, 1');
- assert.sameValue(Date.UTC(2016, 6, 5), 1467676800000, '2016, 6, 5');
- assert.sameValue(Date.UTC(2016, 6, 5, 0), 1467676800000, '2016, 6, 5, 0');
- assert.sameValue(Date.UTC(2016, 6, 5, 15), 1467730800000, '2016, 6, 5, 15');
- assert.sameValue(
- Date.UTC(2016, 6, 5, 15, 0), 1467730800000, '2016, 6, 5, 15, 0'
- );
- assert.sameValue(
- Date.UTC(2016, 6, 5, 15, 34), 1467732840000, '2016, 6, 5, 15, 34'
- );
- assert.sameValue(
- Date.UTC(2016, 6, 5, 15, 34, 0), 1467732840000, '2016, 6, 5, 15, 34, 0'
- );
- assert.sameValue(
- Date.UTC(2016, 6, 5, 15, 34, 45), 1467732885000, '2016, 6, 5, 15, 34, 45'
- );
- `
- testScriptWithTestLib(SCRIPT, _undefined, t)
- }
- func TestNewDate(t *testing.T) {
- const SCRIPT = `
- var d1 = new Date("2016-09-01T12:34:56Z");
- d1.getUTCHours() === 12;
- `
- testScript(SCRIPT, valueTrue, t)
- }
- func TestNewDate0(t *testing.T) {
- const SCRIPT = `
- (new Date(0)).toUTCString();
- `
- testScript(SCRIPT, asciiString("Thu, 01 Jan 1970 00:00:00 GMT"), t)
- }
- func TestSetHour(t *testing.T) {
- l := time.Local
- defer func() {
- time.Local = l
- }()
- var err error
- time.Local, err = time.LoadLocation("America/New_York")
- if err != nil {
- t.Fatal(err)
- }
- const SCRIPT = `
- var d = new Date(2016, 8, 1, 12, 23, 45)
- assert.sameValue(d.getHours(), 12);
- assert.sameValue(d.getUTCHours(), 16);
- d.setHours(13);
- assert.sameValue(d.getHours(), 13);
- assert.sameValue(d.getMinutes(), 23);
- assert.sameValue(d.getSeconds(), 45);
- d.setUTCHours(13);
- assert.sameValue(d.getHours(), 9);
- assert.sameValue(d.getMinutes(), 23);
- assert.sameValue(d.getSeconds(), 45);
- `
- testScriptWithTestLib(SCRIPT, _undefined, t)
- }
- func TestSetMinute(t *testing.T) {
- l := time.Local
- defer func() {
- time.Local = l
- }()
- time.Local = time.FixedZone("Asia/Delhi", 5*60*60+30*60)
- const SCRIPT = `
- var d = new Date(2016, 8, 1, 12, 23, 45)
- assert.sameValue(d.getHours(), 12);
- assert.sameValue(d.getUTCHours(), 6);
- assert.sameValue(d.getMinutes(), 23);
- assert.sameValue(d.getUTCMinutes(), 53);
- d.setMinutes(55);
- assert.sameValue(d.getMinutes(), 55);
- assert.sameValue(d.getSeconds(), 45);
- d.setUTCMinutes(52);
- assert.sameValue(d.getMinutes(), 22);
- assert.sameValue(d.getHours(), 13);
- `
- testScriptWithTestLib(SCRIPT, _undefined, t)
- }
- func TestTimezoneOffset(t *testing.T) {
- const SCRIPT = `
- var d = new Date(0);
- d.getTimezoneOffset();
- `
- l := time.Local
- defer func() {
- time.Local = l
- }()
- var err error
- time.Local, err = time.LoadLocation("Europe/London")
- if err != nil {
- t.Fatal(err)
- }
- testScript(SCRIPT, intToValue(-60), t)
- }
- func TestDateValueOf(t *testing.T) {
- const SCRIPT = `
- var d9 = new Date(1.23e15);
- d9.valueOf();
- `
- testScript(SCRIPT, intToValue(1.23e15), t)
- }
- func TestDateSetters(t *testing.T) {
- const SCRIPT = `
- assert.sameValue((new Date(0)).setMilliseconds(2345), 2345, "setMilliseconds(2345)");
- assert.sameValue(new Date(1000).setMilliseconds(23450000000000), 23450000001000, "setMilliseconds(23450000000000)");
- assert.sameValue((new Date(0)).setUTCMilliseconds(2345), 2345, "setUTCMilliseconds()");
- assert.sameValue((new Date(0)).setSeconds(12), 12000, "setSeconds()");
- assert.sameValue((new Date(0)).setUTCSeconds(12), 12000, "setUTCSeconds()");
- assert.sameValue((new Date(0)).setMinutes(12), 12 * 60 * 1000, "setMinutes()");
- assert.sameValue((new Date(0)).setUTCMinutes(12), 12 * 60 * 1000, "setUTCMinutes()");
- assert.sameValue((new Date("2016-06-01")).setHours(1), 1464739200000, "setHours()");
- assert.sameValue((new Date("2016-06-01")).setUTCHours(1), 1464742800000, "setUTCHours()");
- assert.sameValue((new Date(0)).setDate(2), 86400000, "setDate()");
- assert.sameValue((new Date(0)).setUTCDate(2), 86400000, "setUTCDate()");
- assert.sameValue((new Date(0)).setMonth(2), 5097600000, "setMonth()");
- assert.sameValue((new Date(0)).setUTCMonth(2), 5097600000, "setUTCMonth()");
- assert.sameValue((new Date(0)).setFullYear(1971), 31536000000, "setFullYear()");
- assert.sameValue((new Date(0)).setFullYear(1971, 2, 3), 36806400000, "setFullYear(Y,M,D)");
- assert.sameValue((new Date(0)).setUTCFullYear(1971), 31536000000, "setUTCFullYear()");
- assert.sameValue((new Date(0)).setUTCFullYear(1971, 2, 3), 36806400000, "setUTCFullYear(Y,M,D)");
- var d = new Date();
- d.setTime(1151877845000);
- assert.sameValue(d.getHours(), 23, "d.getHours()");
- `
- l := time.Local
- defer func() {
- time.Local = l
- }()
- var err error
- time.Local, err = time.LoadLocation("Europe/London")
- if err != nil {
- t.Fatal(err)
- }
- testScriptWithTestLib(SCRIPT, _undefined, t)
- }
- func TestDateParse(t *testing.T) {
- const SCRIPT = `
- var zero = new Date(0);
- assert.sameValue(zero.valueOf(), Date.parse(zero.toString()),
- "Date.parse(zeroDate.toString())");
- assert.sameValue(zero.valueOf(), Date.parse(zero.toUTCString()),
- "Date.parse(zeroDate.toUTCString())");
- assert.sameValue(zero.valueOf(), Date.parse(zero.toISOString()),
- "Date.parse(zeroDate.toISOString())");
- function testParse(str, expected) {
- assert.sameValue(Date.parse(str), expected, str);
- }
- testParse("Mon, 02 Jan 2006 15:04:05 MST", 1136239445000);
- testParse("Tue, 22 Jun 2021 13:54:40 GMT", 1624370080000);
- testParse("Tuesday, 22 Jun 2021 13:54:40 GMT", 1624370080000);
- testParse("Mon, 02 Jan 2006 15:04:05 GMT-07:00 (MST)", 1136239445000);
- testParse("Mon, 02 Jan 2006 15:04:05 -07:00 (MST)", 1136239445000);
- testParse("Monday, 02 Jan 2006 15:04:05 -0700 (MST)", 1136239445000);
- testParse("Mon Jan 02 2006 15:04:05 GMT-0700 (GMT Standard Time)", 1136239445000);
- testParse("Mon Jan 2 15:04:05 MST 2006", 1136239445000);
- testParse("Mon Jan 02 15:04:05 MST 2006", 1136239445000);
- testParse("Mon Jan 2 15:04:05 2006", 1136232245000);
- testParse("Mon Jan 02 15:04:05 -0700 2006", 1136239445000);
- testParse("Mon Jan 02 3:4 PM -0700 2006", 1136239440000);
- testParse("December 04, 1986", 534056400000);
- testParse("Dec 04, 1986", 534056400000);
- testParse("Dec 4, 1986", 534056400000);
- testParse("2006-01-02T15:04:05.000Z", 1136214245000);
- testParse("2006-06-02T15:04:05.000", 1149275045000);
- testParse("2006-01-02T15:04:05", 1136232245000);
- testParse("2006-01-02 15:04:05.123", 1136232245123);
- testParse("2006-01-02", 1136160000000);
- testParse("2006T15:04-0700", 1136153040000);
- testParse("2006T15:04+07:00", 1136102640000);
- testParse("2006T15:04Z", 1136127840000);
- testParse("2019-01-01T12:00:00.52Z", 1546344000520);
- testParse("2019-01T12:00:00.52Z", 1546344000520);
- testParse("+002019-01-01T12:00:00.52Z", 1546344000520);
- var d = new Date("Mon, 02 Jan 2006 15:04:05 MST");
- assert.sameValue(d.getUTCHours(), 22,
- "new Date(\"Mon, 02 Jan 2006 15:04:05 MST\").getUTCHours()");
- assert.sameValue(d.getHours(), 17,
- "new Date(\"Mon, 02 Jan 2006 15:04:05 MST\").getHours()");
- assert.sameValue(Date.parse("Mon, 02 Jan 2006 15:04:05 zzz"), NaN,
- "Date.parse(\"Mon, 02 Jan 2006 15:04:05 zzz\")");
- assert.sameValue(Date.parse("Mon, 02 Jan 2006 15:04:05 ZZZ"), NaN,
- "Date.parse(\"Mon, 02 Jan 2006 15:04:05 ZZZ\")");
- var minDateStr = "-271821-04-20T00:00:00.000Z";
- var minDate = new Date(-8640000000000000);
- assert.sameValue(minDate.toISOString(), minDateStr, "minDateStr");
- assert.sameValue(Date.parse(minDateStr), minDate.valueOf(), "parse minDateStr");
- var maxDateStr = "+275760-09-13T00:00:00.000Z";
- var maxDate = new Date(8640000000000000);
- assert.sameValue(maxDate.toISOString(), maxDateStr, "maxDateStr");
- assert.sameValue(Date.parse(maxDateStr), maxDate.valueOf(), "parse maxDateStr");
- var belowRange = "-271821-04-19T23:59:59.999Z";
- var aboveRange = "+275760-09-13T00:00:00.001Z";
- assert.sameValue(Date.parse(belowRange), NaN, "parse below minimum time value");
- assert.sameValue(Date.parse(aboveRange), NaN, "parse above maximum time value");
- `
- l := time.Local
- defer func() {
- time.Local = l
- }()
- var err error
- time.Local, err = time.LoadLocation("America/New_York")
- if err != nil {
- t.Fatal(err)
- }
- testScriptWithTestLib(SCRIPT, _undefined, t)
- }
- func TestDateMaxValues(t *testing.T) {
- const SCRIPT = `
- assert.sameValue((new Date(0)).setUTCMilliseconds(8.64e15), 8.64e15);
- assert.sameValue((new Date(0)).setUTCSeconds(8640000000000), 8.64e15);
- assert.sameValue((new Date(0)).setUTCMilliseconds(-8.64e15), -8.64e15);
- assert.sameValue((new Date(0)).setUTCSeconds(-8640000000000), -8.64e15);
- `
- testScriptWithTestLib(SCRIPT, _undefined, t)
- }
- func TestDateExport(t *testing.T) {
- vm := New()
- res, err := vm.RunString(`new Date(1000)`)
- if err != nil {
- t.Fatal(err)
- }
- exp := res.Export()
- if d, ok := exp.(time.Time); ok {
- if d.UnixNano()/1e6 != 1000 {
- t.Fatalf("Invalid exported date: %v", d)
- }
- if loc := d.Location(); loc != time.Local {
- t.Fatalf("Invalid timezone: %v", loc)
- }
- } else {
- t.Fatalf("Invalid export type: %T", exp)
- }
- }
- func TestDateToJSON(t *testing.T) {
- const SCRIPT = `
- Date.prototype.toJSON.call({ toISOString: function () { return 1; } })
- `
- testScript(SCRIPT, intToValue(1), t)
- }
- func TestDateExportType(t *testing.T) {
- vm := New()
- v, err := vm.RunString(`new Date()`)
- if err != nil {
- t.Fatal(err)
- }
- if typ := v.ExportType(); typ != typeTime {
- t.Fatal(typ)
- }
- }
- func TestDateParseV8(t *testing.T) {
- // Taken from https://chromium.googlesource.com/v8/v8/+/refs/heads/main/test/mjsunit/date-parse.js
- const SCRIPT = `
- const assertEquals = assert.sameValue,
- assertTrue = assert;
- // Copyright 2008 the V8 project authors. All rights reserved.
- // Redistribution and use in source and binary forms, with or without
- // modification, are permitted provided that the following conditions are
- // met:
- //
- // * Redistributions of source code must retain the above copyright
- // notice, this list of conditions and the following disclaimer.
- // * Redistributions in binary form must reproduce the above
- // copyright notice, this list of conditions and the following
- // disclaimer in the documentation and/or other materials provided
- // with the distribution.
- // * Neither the name of Google Inc. nor the names of its
- // contributors may be used to endorse or promote products derived
- // from this software without specific prior written permission.
- //
- // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- // Test that we can parse dates in all the different formats that we
- // have to support.
- //
- // These formats are all supported by KJS but a lot of them are not
- // supported by Spidermonkey.
- function testDateParse(string) {
- var d = Date.parse(string);
- assertEquals(946713600000, d, "parse: " + string);
- };
- // For local time we just test that parsing returns non-NaN positive
- // number of milliseconds to make it timezone independent.
- function testDateParseLocalTime(string) {
- var d = Date.parse("parse-local-time:" + string);
- assertTrue(!isNaN(d), "parse-local-time: " + string + " is NaN.");
- assertTrue(d > 0, "parse-local-time: " + string + " <= 0.");
- };
- function testDateParseMisc(array) {
- assertEquals(2, array.length, "array [" + array + "] length != 2.");
- var string = array[0];
- var expected = array[1];
- var d = Date.parse(string);
- assertEquals(expected, d, "parse-misc: " + string);
- }
- //
- // Test all the formats in UT timezone.
- //
- var testCasesUT = [
- 'Sat, 01-Jan-2000 08:00:00 UT',
- 'Sat, 01 Jan 2000 08:00:00 UT',
- 'Jan 01 2000 08:00:00 UT',
- 'Jan 01 08:00:00 UT 2000',
- 'Saturday, 01-Jan-00 08:00:00 UT',
- '01 Jan 00 08:00 +0000',
- // Ignore weekdays.
- 'Mon, 01 Jan 2000 08:00:00 UT',
- 'Tue, 01 Jan 2000 08:00:00 UT',
- // Ignore prefix that is not part of a date.
- '[Saturday] Jan 01 08:00:00 UT 2000',
- 'Ignore all of this stuff because it is annoying 01 Jan 2000 08:00:00 UT',
- '[Saturday] Jan 01 2000 08:00:00 UT',
- 'All of this stuff is really annoying, so it will be ignored Jan 01 2000 08:00:00 UT',
- // If the three first letters of the month is a
- // month name we are happy - ignore the rest.
- 'Sat, 01-Janisamonth-2000 08:00:00 UT',
- 'Sat, 01 Janisamonth 2000 08:00:00 UT',
- 'Janisamonth 01 2000 08:00:00 UT',
- 'Janisamonth 01 08:00:00 UT 2000',
- 'Saturday, 01-Janisamonth-00 08:00:00 UT',
- '01 Janisamonth 00 08:00 +0000',
- // Allow missing space between month and day.
- 'Janisamonthandtherestisignored01 2000 08:00:00 UT',
- 'Jan01 2000 08:00:00 UT',
- // Allow year/month/day format.
- 'Sat, 2000/01/01 08:00:00 UT',
- // Allow month/day/year format.
- 'Sat, 01/01/2000 08:00:00 UT',
- // Allow month/day year format.
- 'Sat, 01/01 2000 08:00:00 UT',
- // Allow comma instead of space after day, month and year.
- 'Sat, 01,Jan,2000,08:00:00 UT',
- // Seconds are optional.
- 'Sat, 01-Jan-2000 08:00 UT',
- 'Sat, 01 Jan 2000 08:00 UT',
- 'Jan 01 2000 08:00 UT',
- 'Jan 01 08:00 UT 2000',
- 'Saturday, 01-Jan-00 08:00 UT',
- '01 Jan 00 08:00 +0000',
- // Allow AM/PM after the time.
- 'Sat, 01-Jan-2000 08:00 AM UT',
- 'Sat, 01 Jan 2000 08:00 AM UT',
- 'Jan 01 2000 08:00 AM UT',
- 'Jan 01 08:00 AM UT 2000',
- 'Saturday, 01-Jan-00 08:00 AM UT',
- '01 Jan 00 08:00 AM +0000',
- // White space and stuff in parenthesis is
- // apparently allowed in most places where white
- // space is allowed.
- ' Sat, 01-Jan-2000 08:00:00 UT ',
- ' Sat, 01 Jan 2000 08:00:00 UT ',
- ' Saturday, 01-Jan-00 08:00:00 UT ',
- ' 01 Jan 00 08:00 +0000 ',
- ' ()(Sat, 01-Jan-2000) Sat, 01-Jan-2000 08:00:00 UT ',
- ' Sat()(Sat, 01-Jan-2000)01 Jan 2000 08:00:00 UT ',
- ' Sat,(02)01 Jan 2000 08:00:00 UT ',
- ' Sat, 01(02)Jan 2000 08:00:00 UT ',
- ' Sat, 01 Jan 2000 (2001)08:00:00 UT ',
- ' Sat, 01 Jan 2000 (01)08:00:00 UT ',
- ' Sat, 01 Jan 2000 (01:00:00)08:00:00 UT ',
- ' Sat, 01 Jan 2000 08:00:00 (CDT)UT ',
- ' Sat, 01 Jan 2000 08:00:00 UT((((CDT))))',
- ' Saturday, 01-Jan-00 ()(((asfd)))(Sat, 01-Jan-2000)08:00:00 UT ',
- ' 01 Jan 00 08:00 ()(((asdf)))(Sat, 01-Jan-2000)+0000 ',
- ' 01 Jan 00 08:00 +0000()((asfd)(Sat, 01-Jan-2000)) '];
- //
- // Test that we do the right correction for different time zones.
- // I'll assume that we can handle the same formats as for UT and only
- // test a few formats for each of the timezones.
- //
- // GMT = UT
- var testCasesGMT = [
- 'Sat, 01-Jan-2000 08:00:00 GMT',
- 'Sat, 01-Jan-2000 08:00:00 GMT+0',
- 'Sat, 01-Jan-2000 08:00:00 GMT+00',
- 'Sat, 01-Jan-2000 08:00:00 GMT+000',
- 'Sat, 01-Jan-2000 08:00:00 GMT+0000',
- 'Sat, 01-Jan-2000 08:00:00 GMT+00:00', // Interestingly, KJS cannot handle this.
- 'Sat, 01 Jan 2000 08:00:00 GMT',
- 'Saturday, 01-Jan-00 08:00:00 GMT',
- '01 Jan 00 08:00 -0000',
- '01 Jan 00 08:00 +0000'];
- // EST = UT minus 5 hours.
- var testCasesEST = [
- 'Sat, 01-Jan-2000 03:00:00 UTC-0500',
- 'Sat, 01-Jan-2000 03:00:00 UTC-05:00', // Interestingly, KJS cannot handle this.
- 'Sat, 01-Jan-2000 03:00:00 EST',
- 'Sat, 01 Jan 2000 03:00:00 EST',
- 'Saturday, 01-Jan-00 03:00:00 EST',
- '01 Jan 00 03:00 -0500'];
- // EDT = UT minus 4 hours.
- var testCasesEDT = [
- 'Sat, 01-Jan-2000 04:00:00 EDT',
- 'Sat, 01 Jan 2000 04:00:00 EDT',
- 'Saturday, 01-Jan-00 04:00:00 EDT',
- '01 Jan 00 04:00 -0400'];
- // CST = UT minus 6 hours.
- var testCasesCST = [
- 'Sat, 01-Jan-2000 02:00:00 CST',
- 'Sat, 01 Jan 2000 02:00:00 CST',
- 'Saturday, 01-Jan-00 02:00:00 CST',
- '01 Jan 00 02:00 -0600'];
- // CDT = UT minus 5 hours.
- var testCasesCDT = [
- 'Sat, 01-Jan-2000 03:00:00 CDT',
- 'Sat, 01 Jan 2000 03:00:00 CDT',
- 'Saturday, 01-Jan-00 03:00:00 CDT',
- '01 Jan 00 03:00 -0500'];
- // MST = UT minus 7 hours.
- var testCasesMST = [
- 'Sat, 01-Jan-2000 01:00:00 MST',
- 'Sat, 01 Jan 2000 01:00:00 MST',
- 'Saturday, 01-Jan-00 01:00:00 MST',
- '01 Jan 00 01:00 -0700'];
- // MDT = UT minus 6 hours.
- var testCasesMDT = [
- 'Sat, 01-Jan-2000 02:00:00 MDT',
- 'Sat, 01 Jan 2000 02:00:00 MDT',
- 'Saturday, 01-Jan-00 02:00:00 MDT',
- '01 Jan 00 02:00 -0600'];
- // PST = UT minus 8 hours.
- var testCasesPST = [
- 'Sat, 01-Jan-2000 00:00:00 PST',
- 'Sat, 01 Jan 2000 00:00:00 PST',
- 'Saturday, 01-Jan-00 00:00:00 PST',
- '01 Jan 00 00:00 -0800',
- // Allow missing time.
- 'Sat, 01-Jan-2000 PST'];
- // PDT = UT minus 7 hours.
- var testCasesPDT = [
- 'Sat, 01-Jan-2000 01:00:00 PDT',
- 'Sat, 01 Jan 2000 01:00:00 PDT',
- 'Saturday, 01-Jan-00 01:00:00 PDT',
- '01 Jan 00 01:00 -0700'];
- // Local time cases.
- var testCasesLocalTime = [
- // Allow timezone omission.
- 'Sat, 01-Jan-2000 08:00:00',
- 'Sat, 01 Jan 2000 08:00:00',
- 'Jan 01 2000 08:00:00',
- 'Jan 01 08:00:00 2000',
- 'Saturday, 01-Jan-00 08:00:00',
- '01 Jan 00 08:00'];
- // Misc. test cases that result in a different time value.
- var testCasesMisc = [
- // Special handling for years in the [0, 100) range.
- ['Sat, 01 Jan 0 08:00:00 UT', 946713600000], // year 2000
- ['Sat, 01 Jan 49 08:00:00 UT', 2493100800000], // year 2049
- ['Sat, 01 Jan 50 08:00:00 UT', -631123200000], // year 1950
- ['Sat, 01 Jan 99 08:00:00 UT', 915177600000], // year 1999
- ['Sat, 01 Jan 100 08:00:00 UT', -59011430400000], // year 100
- // Test PM after time.
- ['Sat, 01-Jan-2000 08:00 PM UT', 946756800000],
- ['Sat, 01 Jan 2000 08:00 PM UT', 946756800000],
- ['Jan 01 2000 08:00 PM UT', 946756800000],
- ['Jan 01 08:00 PM UT 2000', 946756800000],
- ['Saturday, 01-Jan-00 08:00 PM UT', 946756800000],
- ['01 Jan 00 08:00 PM +0000', 946756800000]];
- // Test different version of the ES5 date time string format.
- var testCasesES5Misc = [
- ['2000-01-01T08:00:00.000Z', 946713600000],
- ['2000-01-01T08:00:00Z', 946713600000],
- ['2000-01-01T08:00Z', 946713600000],
- ['2000-01T08:00:00.000Z', 946713600000],
- ['2000T08:00:00.000Z', 946713600000],
- ['2000T08:00Z', 946713600000],
- ['2000-01T00:00:00.000-08:00', 946713600000],
- ['2000-01T08:00:00.001Z', 946713600001],
- ['2000-01T08:00:00.099Z', 946713600099],
- ['2000-01T08:00:00.999Z', 946713600999],
- ['2000-01T00:00:00.001-08:00', 946713600001],
- ['2000-01-01T24:00Z', 946771200000],
- ['2000-01-01T24:00:00Z', 946771200000],
- ['2000-01-01T24:00:00.000Z', 946771200000],
- ['2000-01-01T24:00:00.000Z', 946771200000]];
- var testCasesES5MiscNegative = [
- '2000-01-01TZ',
- '2000-01-01T60Z',
- '2000-01-01T60:60Z',
- '2000-01-0108:00Z',
- '2000-01-01T08Z',
- '2000-01-01T24:01',
- '2000-01-01T24:00:01',
- '2000-01-01T24:00:00.001',
- '2000-01-01T24:00:00.999Z'];
- // TODO(littledan): This is an hack that could break in historically
- // changing timezones that happened on this day, but allows us to
- // check the date value for local times.
- var localOffset = new Date('2000-01-01').getTimezoneOffset()*1000*60;
- // Sanity check which is even more of a hack: in the timezones where
- // these tests are likely to be run, the offset is nonzero because
- // dates which don't include Z are in the local timezone.
- if (this.Intl &&
- ["America/Los_Angeles", "Europe/Berlin", "Europe/Madrid"].indexOf(
- Intl.DateTimeFormat().resolvedOptions().timeZone) != -1) {
- assertTrue(localOffset != 0);
- }
- var testCasesES2016TZ = [
- // If the timezone is absent and time is present, use local time
- ['2000-01-02T00:00', 946771200000 + localOffset],
- ['2000-01-02T00:00:00', 946771200000 + localOffset],
- ['2000-01-02T00:00:00.000', 946771200000 + localOffset],
- // If timezone is absent and time is absent, use UTC
- ['2000-01-02', 946771200000],
- ['2000-01-02', 946771200000],
- ['2000-01-02', 946771200000],
- ];
- // Run all the tests.
- testCasesUT.forEach(testDateParse);
- testCasesGMT.forEach(testDateParse);
- testCasesEST.forEach(testDateParse);
- testCasesEDT.forEach(testDateParse);
- testCasesCST.forEach(testDateParse);
- testCasesCDT.forEach(testDateParse);
- testCasesMST.forEach(testDateParse);
- testCasesMDT.forEach(testDateParse);
- testCasesPST.forEach(testDateParse);
- testCasesPDT.forEach(testDateParse);
- testCasesLocalTime.forEach(testDateParseLocalTime);
- testCasesMisc.forEach(testDateParseMisc);
- // ES5 date time string format compliance.
- testCasesES5Misc.forEach(testDateParseMisc);
- testCasesES5MiscNegative.forEach(function (s) {
- assertTrue(isNaN(Date.parse(s)), s + " is not NaN.");
- });
- testCasesES2016TZ.forEach(testDateParseMisc);
- // Test that we can parse our own date format.
- // (Dates from 1970 to ~2070 with 150h steps.)
- for (var i = 0; i < 24 * 365 * 100; i += 150) {
- var ms = i * (3600 * 1000);
- var s = (new Date(ms)).toString();
- assertEquals(ms, Date.parse(s), "parse own: " + s);
- }
- // Negative tests.
- var testCasesNegative = [
- 'May 25 2008 1:30 (PM)) UTC', // Bad unmatched ')' after number.
- 'May 25 2008 1:30( )AM (PM)', //
- 'a1', // Issue 126448, 53209.
- 'nasfdjklsfjoaifg1',
- 'x_2',
- 'May 25 2008 AAA (GMT)']; // Unknown word after number.
- testCasesNegative.forEach(function (s) {
- assertTrue(isNaN(Date.parse(s)), s + " is not NaN.");
- });
- `
- testScriptWithTestLib(SCRIPT, _undefined, t)
- }
|