mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 15:15:23 +00:00
0fbe7f9f59
http://www.mozilla.org/js/tests/library.html for information about these tests, like how to run them and stuff. According to fur, these tests should not get checked out when you check out Mozilla -- you'd have to specifically check out mozilla/js/tests to get all these files.
208 lines
8.5 KiB
JavaScript
208 lines
8.5 KiB
JavaScript
/* The contents of this file are subject to the Netscape Public License
|
|
* Version 1.0 (the "License"); you may not use this file except in
|
|
* compliance with the License. You may obtain a copy of the License at
|
|
* http://www.mozilla.org/NPL/
|
|
*
|
|
* Software distributed under the License is distributed on an "AS IS"
|
|
* basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
|
|
* License for the specific language governing rights and limitations
|
|
* under the License.
|
|
*
|
|
* The Original Code is Mozilla Communicator client code, released March
|
|
* 31, 1998.
|
|
*
|
|
* The Initial Developer of the Original Code is Netscape Communications
|
|
* Corporation. Portions created by Netscape are Copyright (C) 1998
|
|
* Netscape Communications Corporation. All Rights Reserved.
|
|
*
|
|
*/
|
|
|
|
|
|
var testcases = new Array();
|
|
var SECTION = "15.9.4.3";
|
|
var TITLE = "Date.UTC( year, month, date, hours, minutes, seconds, ms )";
|
|
var TZ_DIFF = 8;
|
|
|
|
getTestCases();
|
|
test();
|
|
|
|
function MyDate() {
|
|
this.year = 0;
|
|
this.month = 0;
|
|
this.date = 0;
|
|
this.hours = 0;
|
|
this.minutes = 0;
|
|
this.seconds = 0;
|
|
this.ms = 0;
|
|
}
|
|
|
|
function utc( year, month, date, hours, minutes, seconds, ms ) {
|
|
d = new MyDate();
|
|
d.year = Number(year);
|
|
|
|
if (month)
|
|
d.month = Number(month);
|
|
if (date)
|
|
d.date = Number(date);
|
|
if (hours)
|
|
d.hours = Number(hours);
|
|
if (minutes)
|
|
d.minutes = Number(minutes);
|
|
if (seconds)
|
|
d.seconds = Number(seconds);
|
|
if (ms)
|
|
d.ms = Number(ms);
|
|
|
|
if ( isNaN(d.year) && 0 <= ToInteger(d.year) && d.year <= 99 ) {
|
|
d.year = 1900 + ToInteger(d.year);
|
|
}
|
|
|
|
if (isNaN(month) || isNaN(year) || isNaN(date) || isNaN(hours) ||
|
|
isNaN(minutes) || isNaN(seconds) || isNaN(ms) ) {
|
|
d.year = Number.NaN;
|
|
d.month = Number.NaN;
|
|
d.date = Number.NaN;
|
|
d.hours = Number.NaN;
|
|
d.minutes = Number.NaN;
|
|
d.seconds = Number.NaN;
|
|
d.ms = Number.NaN;
|
|
d.value = Number.NaN;
|
|
d.time = Number.NaN;
|
|
d.day =Number.NaN;
|
|
return d;
|
|
}
|
|
|
|
d.day = MakeDay( d.year, d.month, d.date );
|
|
d.time = MakeTime( d.hours, d.minutes, d.seconds, d.ms );
|
|
d.value = (TimeClip( MakeDate(d.day,d.time)));
|
|
|
|
return d;
|
|
}
|
|
|
|
function UTCTime( t ) {
|
|
sign = ( t < 0 ) ? -1 : 1;
|
|
return ( (t +(TZ_DIFF*msPerHour)) );
|
|
}
|
|
|
|
function getTestCases() {
|
|
|
|
// Dates around 1970
|
|
|
|
addNewTestCase( Date.UTC( 1970,0,1,0,0,0,0),
|
|
"Date.UTC( 1970,0,1,0,0,0,0)",
|
|
utc(1970,0,1,0,0,0,0) );
|
|
|
|
addNewTestCase( Date.UTC( 1969,11,31,23,59,59,999),
|
|
"Date.UTC( 1969,11,31,23,59,59,999)",
|
|
utc(1969,11,31,23,59,59,999) );
|
|
addNewTestCase( Date.UTC( 1972,1,29,23,59,59,999),
|
|
"Date.UTC( 1972,1,29,23,59,59,999)",
|
|
utc(1972,1,29,23,59,59,999) );
|
|
addNewTestCase( Date.UTC( 1972,2,1,23,59,59,999),
|
|
"Date.UTC( 1972,2,1,23,59,59,999)",
|
|
utc(1972,2,1,23,59,59,999) );
|
|
addNewTestCase( Date.UTC( 1968,1,29,23,59,59,999),
|
|
"Date.UTC( 1968,1,29,23,59,59,999)",
|
|
utc(1968,1,29,23,59,59,999) );
|
|
addNewTestCase( Date.UTC( 1968,2,1,23,59,59,999),
|
|
"Date.UTC( 1968,2,1,23,59,59,999)",
|
|
utc(1968,2,1,23,59,59,999) );
|
|
addNewTestCase( Date.UTC( 1969,0,1,0,0,0,0),
|
|
"Date.UTC( 1969,0,1,0,0,0,0)",
|
|
utc(1969,0,1,0,0,0,0) );
|
|
addNewTestCase( Date.UTC( 1969,11,31,23,59,59,1000),
|
|
"Date.UTC( 1969,11,31,23,59,59,1000)",
|
|
utc(1970,0,1,0,0,0,0) );
|
|
addNewTestCase( Date.UTC( 1969,Number.NaN,31,23,59,59,999),
|
|
"Date.UTC( 1969,Number.NaN,31,23,59,59,999)",
|
|
utc(1969,Number.NaN,31,23,59,59,999) );
|
|
|
|
// Dates around 2000
|
|
|
|
addNewTestCase( Date.UTC( 1999,11,31,23,59,59,999),
|
|
"Date.UTC( 1999,11,31,23,59,59,999)",
|
|
utc(1999,11,31,23,59,59,999) );
|
|
addNewTestCase( Date.UTC( 2000,0,1,0,0,0,0),
|
|
"Date.UTC( 2000,0,1,0,0,0,0)",
|
|
utc(2000,0,1,0,0,0,0) );
|
|
|
|
// Dates around 1900
|
|
addNewTestCase( Date.UTC( 1899,11,31,23,59,59,999),
|
|
"Date.UTC( 1899,11,31,23,59,59,999)",
|
|
utc(1899,11,31,23,59,59,999) );
|
|
addNewTestCase( Date.UTC( 1900,0,1,0,0,0,0),
|
|
"Date.UTC( 1900,0,1,0,0,0,0)",
|
|
utc(1900,0,1,0,0,0,0) );
|
|
addNewTestCase( Date.UTC( 1973,0,1,0,0,0,0),
|
|
"Date.UTC( 1973,0,1,0,0,0,0)",
|
|
utc(1973,0,1,0,0,0,0) );
|
|
addNewTestCase( Date.UTC( 1776,6,4,12,36,13,111),
|
|
"Date.UTC( 1776,6,4,12,36,13,111)",
|
|
utc(1776,6,4,12,36,13,111) );
|
|
addNewTestCase( Date.UTC( 2525,9,18,15,30,1,123),
|
|
"Date.UTC( 2525,9,18,15,30,1,123)",
|
|
utc(2525,9,18,15,30,1,123) );
|
|
|
|
// Dates around 29 Feb 2000
|
|
|
|
addNewTestCase( Date.UTC( 2000,1,29,0,0,0,0 ),
|
|
"Date.UTC( 2000,1,29,0,0,0,0 )",
|
|
utc(2000,1,29,0,0,0,0) );
|
|
addNewTestCase( Date.UTC( 2000,1,29,8,0,0,0 ),
|
|
"Date.UTC( 2000,1,29,8,0,0,0 )",
|
|
utc(2000,1,29,8,0,0,0) );
|
|
|
|
// Dates around 1 Jan 2005
|
|
|
|
addNewTestCase( Date.UTC( 2005,0,1,0,0,0,0 ),
|
|
"Date.UTC( 2005,0,1,0,0,0,0 )",
|
|
utc(2005,0,1,0,0,0,0) );
|
|
addNewTestCase( Date.UTC( 2004,11,31,16,0,0,0 ),
|
|
"Date.UTC( 2004,11,31,16,0,0,0 )",
|
|
utc(2004,11,31,16,0,0,0) );
|
|
}
|
|
|
|
function addNewTestCase( DateCase, DateString, ExpectDate) {
|
|
DateCase = DateCase;
|
|
|
|
item = testcases.length;
|
|
|
|
// fixed_year = ( ExpectDate.year >=1900 || ExpectDate.year < 2000 ) ? ExpectDate.year - 1900 : ExpectDate.year;
|
|
|
|
testcases[item++] = new TestCase( SECTION, DateString, ExpectDate.value, DateCase );
|
|
testcases[item++] = new TestCase( SECTION, DateString, ExpectDate.value, DateCase );
|
|
/*
|
|
|
|
testcases[item++] = new TestCase( SECTION, DateString+".getUTCFullYear()", ExpectDate.year, DateCase.getUTCFullYear() );
|
|
testcases[item++] = new TestCase( SECTION, DateString+".getUTCMonth()", ExpectDate.month, DateCase.getUTCMonth() );
|
|
testcases[item++] = new TestCase( SECTION, DateString+".getUTCDate()", ExpectDate.date, DateCase.getUTCDate() );
|
|
testcases[item++] = new TestCase( SECTION, DateString+".getUTCDay()", ExpectDate.day, DateCase.getUTCDay() );
|
|
testcases[item++] = new TestCase( SECTION, DateString+".getUTCHours()", ExpectDate.hours, DateCase.getUTCHours() );
|
|
testcases[item++] = new TestCase( SECTION, DateString+".getUTCMinutes()", ExpectDate.minutes,DateCase.getUTCMinutes() );
|
|
testcases[item++] = new TestCase( SECTION, DateString+".getUTCSeconds()", ExpectDate.seconds,DateCase.getUTCSeconds() );
|
|
testcases[item++] = new TestCase( SECTION, DateString+".getUTCMilliseconds()", ExpectDate.ms, DateCase.getUTCMilliseconds() );
|
|
|
|
testcases[item++] = new TestCase( SECTION, DateString+".getFullYear()", ExpectDate.year, DateCase.getFullYear() );
|
|
testcases[item++] = new TestCase( SECTION, DateString+".getMonth()", ExpectDate.month, DateCase.getMonth() );
|
|
testcases[item++] = new TestCase( SECTION, DateString+".getDate()", ExpectDate.date, DateCase.getDate() );
|
|
// testcases[item++] = new TestCase( SECTION, DateString+".getDay()", ExpectDate.day, DateCase.getDay() );
|
|
testcases[item++] = new TestCase( SECTION, DateString+".getHours()", ExpectDate.hours, DateCase.getHours() );
|
|
testcases[item++] = new TestCase( SECTION, DateString+".getMinutes()", ExpectDate.minutes, DateCase.getMinutes() );
|
|
testcases[item++] = new TestCase( SECTION, DateString+".getSeconds()", ExpectDate.seconds, DateCase.getSeconds() );
|
|
testcases[item++] = new TestCase( SECTION, DateString+".getMilliseconds()", ExpectDate.ms, DateCase.getMilliseconds() );
|
|
*/
|
|
}
|
|
function test() {
|
|
for( tc=0; tc < testcases.length; tc++ ) {
|
|
|
|
testcases[tc].passed = writeTestCaseResult(
|
|
testcases[tc].expect,
|
|
testcases[tc].actual,
|
|
testcases[tc].description +" = " +
|
|
testcases[tc].actual );
|
|
}
|
|
|
|
stopTest();
|
|
return testcases;
|
|
}
|