* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / class / Microsoft.JScript / Test / Mozilla / ecma / Date / 15.9.5.35-1.js
index 5ea13b16b082747d48e7fe3fc63381a40f371f4c..6a0cbf0135901d9d595a8bddc20e00bdf84c74fa 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
-   File Name:          15.9.5.35-1.js\r
-   ECMA Section:       15.9.5.35 Date.prototype.setUTCMonth(mon [,date])\r
-   Description:\r
-   Author:             christine@netscape.com\r
-   Date:               12 november 1997\r
-*/\r
-var SECTION = "15.9.5.35-1";\r
-var VERSION = "ECMA_1";\r
-startTest();\r
-\r
-writeHeaderToLog( SECTION + " Date.prototype.setUTCMonth(mon [,date] ) ");\r
-addNewTestCase( "TDATE = new Date(0);(TDATE).setUTCMonth(0);TDATE",\r
-               UTCDateFromTime(SetUTCMonth(0,0)),\r
-               LocalDateFromTime(SetUTCMonth(0,0)) );\r
-\r
-addNewTestCase( "TDATE = new Date(0);(TDATE).setUTCMonth(11);TDATE",\r
-               UTCDateFromTime(SetUTCMonth(0,11)),\r
-               LocalDateFromTime(SetUTCMonth(0,11)) );\r
-\r
-addNewTestCase( "TDATE = new Date(0);(TDATE).setUTCMonth(3,4);TDATE",\r
-               UTCDateFromTime(SetUTCMonth(0,3,4)),\r
-               LocalDateFromTime(SetUTCMonth(0,3,4)) );\r
-\r
-test();\r
-\r
-function addNewTestCase( DateString, UTCDate, LocalDate) {\r
-  DateCase = eval( DateString );\r
-\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
-\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
-\r
-  return (d);\r
-}\r
-function SetUTCMonth( t, month, date ) {\r
-  var T       = t;\r
-  var MONTH   = Number( month );\r
-  var DATE    = ( date == void 0) ? DateFromTime(T) : Number( date );\r
-\r
-  var RESULT4 = MakeDay(YearFromTime(T), MONTH, DATE );\r
-  var RESULT5 = MakeDate( RESULT4, TimeWithinDay(T));\r
-\r
-  return ( TimeClip(RESULT5) );\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.35-1.js
+   ECMA Section:       15.9.5.35 Date.prototype.setUTCMonth(mon [,date])
+   Description:
+   Author:             christine@netscape.com
+   Date:               12 november 1997
+*/
+var SECTION = "15.9.5.35-1";
+var VERSION = "ECMA_1";
+startTest();
+
+writeHeaderToLog( SECTION + " Date.prototype.setUTCMonth(mon [,date] ) ");
+addNewTestCase( "TDATE = new Date(0);(TDATE).setUTCMonth(0);TDATE",
+               UTCDateFromTime(SetUTCMonth(0,0)),
+               LocalDateFromTime(SetUTCMonth(0,0)) );
+
+addNewTestCase( "TDATE = new Date(0);(TDATE).setUTCMonth(11);TDATE",
+               UTCDateFromTime(SetUTCMonth(0,11)),
+               LocalDateFromTime(SetUTCMonth(0,11)) );
+
+addNewTestCase( "TDATE = new Date(0);(TDATE).setUTCMonth(3,4);TDATE",
+               UTCDateFromTime(SetUTCMonth(0,3,4)),
+               LocalDateFromTime(SetUTCMonth(0,3,4)) );
+
+test();
+
+function addNewTestCase( DateString, UTCDate, LocalDate) {
+  DateCase = eval( DateString );
+
+
+//    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);
+}
+function SetUTCMonth( t, month, date ) {
+  var T       = t;
+  var MONTH   = Number( month );
+  var DATE    = ( date == void 0) ? DateFromTime(T) : Number( date );
+
+  var RESULT4 = MakeDay(YearFromTime(T), MONTH, DATE );
+  var RESULT5 = MakeDate( RESULT4, TimeWithinDay(T));
+
+  return ( TimeClip(RESULT5) );
+}