2005-08-19 Florian Gross <flgr@ccan.de>
[mono.git] / mcs / class / Microsoft.JScript / Test / Mozilla / ecma / Date / 15.9.5.23-15.js
index db34a7da313ac970ade898a5d03b695e294bab3c..ef3bd452ce744e79fbc12f40a59ae03bbc3b768b 100644 (file)
-/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */\r
-/* ***** BEGIN LICENSE BLOCK *****\r
- * Version: MPL 1.1/GPL 2.0/LGPL 2.1\r
- *\r
- * The contents of this file are subject to the Mozilla Public License Version\r
- * 1.1 (the "License"); you may not use this file except in compliance with\r
- * the License. You may obtain a copy of the License at\r
- * http://www.mozilla.org/MPL/\r
- *\r
- * Software distributed under the License is distributed on an "AS IS" basis,\r
- * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License\r
- * for the specific language governing rights and limitations under the\r
- * License.\r
- *\r
- * The Original Code is Mozilla Communicator client code, released\r
- * March 31, 1998.\r
- *\r
- * The Initial Developer of the Original Code is\r
- * Netscape Communications Corporation.\r
- * Portions created by the Initial Developer are Copyright (C) 1998\r
- * the Initial Developer. All Rights Reserved.\r
- *\r
- * Contributor(s):\r
- *\r
- * Alternatively, the contents of this file may be used under the terms of\r
- * either the GNU General Public License Version 2 or later (the "GPL"), or\r
- * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),\r
- * in which case the provisions of the GPL or the LGPL are applicable instead\r
- * of those above. If you wish to allow use of your version of this file only\r
- * under the terms of either the GPL or the LGPL, and not to allow others to\r
- * use your version of this file under the terms of the MPL, indicate your\r
- * decision by deleting the provisions above and replace them with the notice\r
- * and other provisions required by the GPL or the LGPL. If you do not delete\r
- * the provisions above, a recipient may use your version of this file under\r
- * the terms of any one of the MPL, the GPL or the LGPL.\r
- *\r
- * ***** END LICENSE BLOCK ***** */\r
-\r
-/**\r
-   File Name:          15.9.5.23-1.js\r
-   ECMA Section:       15.9.5.23 Date.prototype.setTime(time)\r
-   Description:\r
-\r
-   1.  If the this value is not a Date object, generate a runtime error.\r
-   2.  Call ToNumber(time).\r
-   3.  Call TimeClip(Result(1)).\r
-   4.  Set the [[Value]] property of the this value to Result(2).\r
-   5.  Return the value of the [[Value]] property of the this value.\r
-\r
-   Author:             christine@netscape.com\r
-   Date:               12 november 1997\r
-\r
-*/\r
-var SECTION = "15.9.5.23-1";\r
-var VERSION = "ECMA_1";\r
-startTest();\r
-var TITLE = "Date.prototype.setTime()";\r
-\r
-writeHeaderToLog( SECTION + " Date.prototype.setTime(time)");\r
-\r
-var now = "now";\r
-addTestCase( now, 0 );\r
-/*\r
-  addTestCase( now, String( TIME_1900 ) );\r
-  addTestCase( now, String( TZ_DIFF* msPerHour ) );\r
-  addTestCase( now, String( TIME_2000 ) );\r
-*/\r
-\r
-test();\r
-\r
-function addTestCase( startTime, setTime ) {\r
-  if ( startTime == "now" ) {\r
-    DateCase = new Date();\r
-  } else {\r
-    DateCase = new Date( startTime );\r
-  }\r
-\r
-  DateCase.setTime( setTime );\r
-  var DateString = "var d = new Date("+startTime+"); d.setTime("+setTime+"); d" ;\r
-  var UTCDate   = UTCDateFromTime ( Number(setTime) );\r
-  var LocalDate = LocalDateFromTime( Number(setTime) );\r
-\r
-//    fixed_year = ( ExpectDate.year >=1900 || ExpectDate.year < 2000 ) ? ExpectDate.year - 1900 : ExpectDate.year;\r
-\r
-  new TestCase( SECTION, DateString+".getTime()",             UTCDate.value,      DateCase.getTime() );\r
-  new TestCase( SECTION, DateString+".valueOf()",             UTCDate.value,      DateCase.valueOf() );\r
-\r
-  new TestCase( SECTION, DateString+".getUTCFullYear()",      UTCDate.year,       DateCase.getUTCFullYear() );\r
-  new TestCase( SECTION, DateString+".getUTCMonth()",         UTCDate.month,      DateCase.getUTCMonth() );\r
-  new TestCase( SECTION, DateString+".getUTCDate()",          UTCDate.date,       DateCase.getUTCDate() );\r
-  new TestCase( SECTION, DateString+".getUTCDay()",           UTCDate.day,        DateCase.getUTCDay() );\r
-  new TestCase( SECTION, DateString+".getUTCHours()",         UTCDate.hours,      DateCase.getUTCHours() );\r
-  new TestCase( SECTION, DateString+".getUTCMinutes()",       UTCDate.minutes,    DateCase.getUTCMinutes() );\r
-  new TestCase( SECTION, DateString+".getUTCSeconds()",       UTCDate.seconds,    DateCase.getUTCSeconds() );\r
-  new TestCase( SECTION, DateString+".getUTCMilliseconds()",  UTCDate.ms,         DateCase.getUTCMilliseconds() );\r
-\r
-  new TestCase( SECTION, DateString+".getFullYear()",         LocalDate.year,     DateCase.getFullYear() );\r
-  new TestCase( SECTION, DateString+".getMonth()",            LocalDate.month,    DateCase.getMonth() );\r
-  new TestCase( SECTION, DateString+".getDate()",             LocalDate.date,     DateCase.getDate() );\r
-  new TestCase( SECTION, DateString+".getDay()",              LocalDate.day,      DateCase.getDay() );\r
-  new TestCase( SECTION, DateString+".getHours()",            LocalDate.hours,    DateCase.getHours() );\r
-  new TestCase( SECTION, DateString+".getMinutes()",          LocalDate.minutes,  DateCase.getMinutes() );\r
-  new TestCase( SECTION, DateString+".getSeconds()",          LocalDate.seconds,  DateCase.getSeconds() );\r
-  new TestCase( SECTION, DateString+".getMilliseconds()",     LocalDate.ms,       DateCase.getMilliseconds() );\r
-\r
-  DateCase.toString = Object.prototype.toString;\r
-\r
-  new TestCase( SECTION,\r
-               DateString+".toString=Object.prototype.toString;"+DateString+".toString()",\r
-               "[object Date]",\r
-               DateCase.toString() );\r
-}\r
-function MyDate() {\r
-  this.year = 0;\r
-  this.month = 0;\r
-  this.date = 0;\r
-  this.hours = 0;\r
-  this.minutes = 0;\r
-  this.seconds = 0;\r
-  this.ms = 0;\r
-}\r
-function LocalDateFromTime(t) {\r
-  t = LocalTime(t);\r
-  return ( MyDateFromTime(t) );\r
-}\r
-function UTCDateFromTime(t) {\r
-  return ( MyDateFromTime(t) );\r
-}\r
-function MyDateFromTime( t ) {\r
-  var d       = new MyDate();\r
-  d.year      = YearFromTime(t);\r
-  d.month     = MonthFromTime(t);\r
-  d.date      = DateFromTime(t);\r
-  d.hours     = HourFromTime(t);\r
-  d.minutes   = MinFromTime(t);\r
-  d.seconds   = SecFromTime(t);\r
-  d.ms        = msFromTime(t);\r
-  d.time      = MakeTime( d.hours, d.minutes, d.seconds, d.ms );\r
-  d.value     = TimeClip( MakeDate( MakeDay( d.year, d.month, d.date ), d.time ) );\r
-  d.day       = WeekDay( d.value );\r
-  return (d);\r
-}\r
+/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
+/* ***** BEGIN LICENSE BLOCK *****
+ * Version: MPL 1.1/GPL 2.0/LGPL 2.1
+ *
+ * The contents of this file are subject to the Mozilla Public License Version
+ * 1.1 (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/MPL/
+ *
+ * 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 the Initial Developer are Copyright (C) 1998
+ * the Initial Developer. All Rights Reserved.
+ *
+ * Contributor(s):
+ *
+ * Alternatively, the contents of this file may be used under the terms of
+ * either the GNU General Public License Version 2 or later (the "GPL"), or
+ * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
+ * in which case the provisions of the GPL or the LGPL are applicable instead
+ * of those above. If you wish to allow use of your version of this file only
+ * under the terms of either the GPL or the LGPL, and not to allow others to
+ * use your version of this file under the terms of the MPL, indicate your
+ * decision by deleting the provisions above and replace them with the notice
+ * and other provisions required by the GPL or the LGPL. If you do not delete
+ * the provisions above, a recipient may use your version of this file under
+ * the terms of any one of the MPL, the GPL or the LGPL.
+ *
+ * ***** END LICENSE BLOCK ***** */
+
+/**
+   File Name:          15.9.5.23-1.js
+   ECMA Section:       15.9.5.23 Date.prototype.setTime(time)
+   Description:
+
+   1.  If the this value is not a Date object, generate a runtime error.
+   2.  Call ToNumber(time).
+   3.  Call TimeClip(Result(1)).
+   4.  Set the [[Value]] property of the this value to Result(2).
+   5.  Return the value of the [[Value]] property of the this value.
+
+   Author:             christine@netscape.com
+   Date:               12 november 1997
+
+*/
+var SECTION = "15.9.5.23-1";
+var VERSION = "ECMA_1";
+startTest();
+var TITLE = "Date.prototype.setTime()";
+
+writeHeaderToLog( SECTION + " Date.prototype.setTime(time)");
+
+var now = "now";
+addTestCase( now, 0 );
+/*
+  addTestCase( now, String( TIME_1900 ) );
+  addTestCase( now, String( TZ_DIFF* msPerHour ) );
+  addTestCase( now, String( TIME_2000 ) );
+*/
+
+test();
+
+function addTestCase( startTime, setTime ) {
+  if ( startTime == "now" ) {
+    DateCase = new Date();
+  } else {
+    DateCase = new Date( startTime );
+  }
+
+  DateCase.setTime( setTime );
+  var DateString = "var d = new Date("+startTime+"); d.setTime("+setTime+"); d" ;
+  var UTCDate   = UTCDateFromTime ( Number(setTime) );
+  var LocalDate = LocalDateFromTime( Number(setTime) );
+
+//    fixed_year = ( ExpectDate.year >=1900 || ExpectDate.year < 2000 ) ? ExpectDate.year - 1900 : ExpectDate.year;
+
+  new TestCase( SECTION, DateString+".getTime()",             UTCDate.value,      DateCase.getTime() );
+  new TestCase( SECTION, DateString+".valueOf()",             UTCDate.value,      DateCase.valueOf() );
+
+  new TestCase( SECTION, DateString+".getUTCFullYear()",      UTCDate.year,       DateCase.getUTCFullYear() );
+  new TestCase( SECTION, DateString+".getUTCMonth()",         UTCDate.month,      DateCase.getUTCMonth() );
+  new TestCase( SECTION, DateString+".getUTCDate()",          UTCDate.date,       DateCase.getUTCDate() );
+  new TestCase( SECTION, DateString+".getUTCDay()",           UTCDate.day,        DateCase.getUTCDay() );
+  new TestCase( SECTION, DateString+".getUTCHours()",         UTCDate.hours,      DateCase.getUTCHours() );
+  new TestCase( SECTION, DateString+".getUTCMinutes()",       UTCDate.minutes,    DateCase.getUTCMinutes() );
+  new TestCase( SECTION, DateString+".getUTCSeconds()",       UTCDate.seconds,    DateCase.getUTCSeconds() );
+  new TestCase( SECTION, DateString+".getUTCMilliseconds()",  UTCDate.ms,         DateCase.getUTCMilliseconds() );
+
+  new TestCase( SECTION, DateString+".getFullYear()",         LocalDate.year,     DateCase.getFullYear() );
+  new TestCase( SECTION, DateString+".getMonth()",            LocalDate.month,    DateCase.getMonth() );
+  new TestCase( SECTION, DateString+".getDate()",             LocalDate.date,     DateCase.getDate() );
+  new TestCase( SECTION, DateString+".getDay()",              LocalDate.day,      DateCase.getDay() );
+  new TestCase( SECTION, DateString+".getHours()",            LocalDate.hours,    DateCase.getHours() );
+  new TestCase( SECTION, DateString+".getMinutes()",          LocalDate.minutes,  DateCase.getMinutes() );
+  new TestCase( SECTION, DateString+".getSeconds()",          LocalDate.seconds,  DateCase.getSeconds() );
+  new TestCase( SECTION, DateString+".getMilliseconds()",     LocalDate.ms,       DateCase.getMilliseconds() );
+
+  DateCase.toString = Object.prototype.toString;
+
+  new TestCase( SECTION,
+               DateString+".toString=Object.prototype.toString;"+DateString+".toString()",
+               "[object Date]",
+               DateCase.toString() );
+}
+function MyDate() {
+  this.year = 0;
+  this.month = 0;
+  this.date = 0;
+  this.hours = 0;
+  this.minutes = 0;
+  this.seconds = 0;
+  this.ms = 0;
+}
+function LocalDateFromTime(t) {
+  t = LocalTime(t);
+  return ( MyDateFromTime(t) );
+}
+function UTCDateFromTime(t) {
+  return ( MyDateFromTime(t) );
+}
+function MyDateFromTime( t ) {
+  var d       = new MyDate();
+  d.year      = YearFromTime(t);
+  d.month     = MonthFromTime(t);
+  d.date      = DateFromTime(t);
+  d.hours     = HourFromTime(t);
+  d.minutes   = MinFromTime(t);
+  d.seconds   = SecFromTime(t);
+  d.ms        = msFromTime(t);
+  d.time      = MakeTime( d.hours, d.minutes, d.seconds, d.ms );
+  d.value     = TimeClip( MakeDate( MakeDay( d.year, d.month, d.date ), d.time ) );
+  d.day       = WeekDay( d.value );
+  return (d);
+}