* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / class / Microsoft.JScript / Test / Mozilla / ecma / Date / 15.9.5.37-3.js
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* ***** BEGIN LICENSE BLOCK *****
3  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
4  *
5  * The contents of this file are subject to the Mozilla Public License Version
6  * 1.1 (the "License"); you may not use this file except in compliance with
7  * the License. You may obtain a copy of the License at
8  * http://www.mozilla.org/MPL/
9  *
10  * Software distributed under the License is distributed on an "AS IS" basis,
11  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12  * for the specific language governing rights and limitations under the
13  * License.
14  *
15  * The Original Code is Mozilla Communicator client code, released
16  * March 31, 1998.
17  *
18  * The Initial Developer of the Original Code is
19  * Netscape Communications Corporation.
20  * Portions created by the Initial Developer are Copyright (C) 1998
21  * the Initial Developer. All Rights Reserved.
22  *
23  * Contributor(s):
24  *
25  * Alternatively, the contents of this file may be used under the terms of
26  * either the GNU General Public License Version 2 or later (the "GPL"), or
27  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
28  * in which case the provisions of the GPL or the LGPL are applicable instead
29  * of those above. If you wish to allow use of your version of this file only
30  * under the terms of either the GPL or the LGPL, and not to allow others to
31  * use your version of this file under the terms of the MPL, indicate your
32  * decision by deleting the provisions above and replace them with the notice
33  * and other provisions required by the GPL or the LGPL. If you do not delete
34  * the provisions above, a recipient may use your version of this file under
35  * the terms of any one of the MPL, the GPL or the LGPL.
36  *
37  * ***** END LICENSE BLOCK ***** */
38 /**
39    File Name:          15.9.5.37-1.js
40    ECMA Section:       15.9.5.37 Date.prototype.setUTCFullYear(year [, mon [, date ]] )
41    Description:
42
43    If mon is not specified, this behaves as if mon were specified with the
44    value getUTCMonth( ).  If date is not specified, this behaves as if date
45    were specified with the value getUTCDate( ).
46
47    1.   Let t be this time value; but if this time value is NaN, let t be +0.
48    2.   Call ToNumber(year).
49    3.   If mon is not specified, compute MonthFromTime(t); otherwise, call
50    ToNumber(mon).
51    4.   If date is not specified, compute DateFromTime(t); otherwise, call
52    ToNumber(date).
53    5.   Compute MakeDay(Result(2), Result(3), Result(4)).
54    6.   Compute MakeDate(Result(5), TimeWithinDay(t)).
55    7.   Set the [[Value]] property of the this value to TimeClip(Result(6)).
56    8.   Return the value of the [[Value]] property of the this value.
57
58    Author:             christine@netscape.com
59    Date:               12 november 1997
60
61    Added some Year 2000 test cases.
62 */
63 var SECTION = "15.9.5.37-1";
64 var VERSION = "ECMA_1";
65 startTest();
66
67 writeHeaderToLog( SECTION + " Date.prototype.setUTCFullYear(year [, mon [, date ]] )");
68
69
70 // Dates around 29 February 2000
71
72 var UTC_FEB_29_1972 = TIME_1970 + TimeInYear(1970) + TimeInYear(1971) +
73 31*msPerDay + 28*msPerDay;
74
75 var PST_FEB_29_1972 = UTC_FEB_29_1972 - TZ_DIFF * msPerHour;
76
77 addNewTestCase( "TDATE = new Date("+UTC_FEB_29_1972+"); "+
78                 "TDATE.setUTCFullYear(2000);TDATE",
79                 UTCDateFromTime(SetUTCFullYear(UTC_FEB_29_1972,2000)),
80                 LocalDateFromTime(SetUTCFullYear(UTC_FEB_29_1972,2000)) );
81
82 addNewTestCase( "TDATE = new Date("+PST_FEB_29_1972+"); "+
83                 "TDATE.setUTCFullYear(2000);TDATE",
84                 UTCDateFromTime(SetUTCFullYear(PST_FEB_29_1972,2000)),
85                 LocalDateFromTime(SetUTCFullYear(PST_FEB_29_1972,2000)) );
86 /*
87 // Dates around 2005
88
89 addNewTestCase( "TDATE = new Date(0); TDATE.setUTCFullYear(2005);TDATE",
90 UTCDateFromTime(SetUTCFullYear(0,2005)),
91 LocalDateFromTime(SetUTCFullYear(0,2005)) );
92
93 addNewTestCase( "TDATE = new Date(0); TDATE.setUTCFullYear(2004);TDATE",
94 UTCDateFromTime(SetUTCFullYear(0,2004)),
95 LocalDateFromTime(SetUTCFullYear(0,2004)) );
96
97 addNewTestCase( "TDATE = new Date(0); TDATE.setUTCFullYear(2006);TDATE",
98 UTCDateFromTime(SetUTCFullYear(0,2006)),
99 LocalDateFromTime(SetUTCFullYear(0,2006)) );
100
101
102 // Dates around 1900
103 addNewTestCase( "TDATE = new Date(0); TDATE.setUTCFullYear(1900);TDATE",
104 UTCDateFromTime(SetUTCFullYear(0,1900)),
105 LocalDateFromTime(SetUTCFullYear(0,1900)) );
106
107 addNewTestCase( "TDATE = new Date(0); TDATE.setUTCFullYear(1899);TDATE",
108 UTCDateFromTime(SetUTCFullYear(0,1899)),
109 LocalDateFromTime(SetUTCFullYear(0,1899)) );
110
111 addNewTestCase( "TDATE = new Date(0); TDATE.setUTCFullYear(1901);TDATE",
112 UTCDateFromTime(SetUTCFullYear(0,1901)),
113 LocalDateFromTime(SetUTCFullYear(0,1901)) );
114
115 */
116
117 test();
118
119 function addNewTestCase( DateString, UTCDate, LocalDate) {
120   DateCase = eval( DateString );
121
122
123 //    fixed_year = ( ExpectDate.year >=1900 || ExpectDate.year < 2000 ) ? ExpectDate.year - 1900 : ExpectDate.year;
124
125   new TestCase( SECTION, DateString+".getTime()",             UTCDate.value,       DateCase.getTime() );
126   new TestCase( SECTION, DateString+".valueOf()",             UTCDate.value,       DateCase.valueOf() );
127
128   new TestCase( SECTION, DateString+".getUTCFullYear()",      UTCDate.year,    DateCase.getUTCFullYear() );
129   new TestCase( SECTION, DateString+".getUTCMonth()",         UTCDate.month,  DateCase.getUTCMonth() );
130   new TestCase( SECTION, DateString+".getUTCDate()",          UTCDate.date,   DateCase.getUTCDate() );
131   new TestCase( SECTION, DateString+".getUTCDay()",           UTCDate.day,    DateCase.getUTCDay() );
132   new TestCase( SECTION, DateString+".getUTCHours()",         UTCDate.hours,  DateCase.getUTCHours() );
133   new TestCase( SECTION, DateString+".getUTCMinutes()",       UTCDate.minutes,DateCase.getUTCMinutes() );
134   new TestCase( SECTION, DateString+".getUTCSeconds()",       UTCDate.seconds,DateCase.getUTCSeconds() );
135   new TestCase( SECTION, DateString+".getUTCMilliseconds()",  UTCDate.ms,     DateCase.getUTCMilliseconds() );
136
137   new TestCase( SECTION, DateString+".getFullYear()",         LocalDate.year,       DateCase.getFullYear() );
138   new TestCase( SECTION, DateString+".getMonth()",            LocalDate.month,      DateCase.getMonth() );
139   new TestCase( SECTION, DateString+".getDate()",             LocalDate.date,       DateCase.getDate() );
140   new TestCase( SECTION, DateString+".getDay()",              LocalDate.day,        DateCase.getDay() );
141   new TestCase( SECTION, DateString+".getHours()",            LocalDate.hours,      DateCase.getHours() );
142   new TestCase( SECTION, DateString+".getMinutes()",          LocalDate.minutes,    DateCase.getMinutes() );
143   new TestCase( SECTION, DateString+".getSeconds()",          LocalDate.seconds,    DateCase.getSeconds() );
144   new TestCase( SECTION, DateString+".getMilliseconds()",     LocalDate.ms,         DateCase.getMilliseconds() );
145
146   DateCase.toString = Object.prototype.toString;
147
148   new TestCase( SECTION,
149                 DateString+".toString=Object.prototype.toString;"+DateString+".toString()",
150                 "[object Date]",
151                 DateCase.toString() );
152 }
153
154 function MyDate() {
155   this.year = 0;
156   this.month = 0;
157   this.date = 0;
158   this.hours = 0;
159   this.minutes = 0;
160   this.seconds = 0;
161   this.ms = 0;
162 }
163 function LocalDateFromTime(t) {
164   t = LocalTime(t);
165   return ( MyDateFromTime(t) );
166 }
167 function UTCDateFromTime(t) {
168   return ( MyDateFromTime(t) );
169 }
170 function MyDateFromTime( t ) {
171   var d = new MyDate();
172   d.year = YearFromTime(t);
173   d.month = MonthFromTime(t);
174   d.date = DateFromTime(t);
175   d.hours = HourFromTime(t);
176   d.minutes = MinFromTime(t);
177   d.seconds = SecFromTime(t);
178   d.ms = msFromTime(t);
179
180   d.time = MakeTime( d.hours, d.minutes, d.seconds, d.ms );
181   d.value = TimeClip( MakeDate( MakeDay( d.year, d.month, d.date ), d.time ) );
182   d.day = WeekDay( d.value );
183
184   return (d);
185 }
186 function SetUTCFullYear( t, year, mon, date ) {
187   var T = ( t != t ) ? 0 : t;
188   var YEAR = Number(year);
189   var MONTH = ( mon == void 0 ) ?     MonthFromTime(T) : Number( mon );
190   var DATE  = ( date == void 0 ) ?    DateFromTime(T)  : Number( date );
191   var DAY = MakeDay( YEAR, MONTH, DATE );
192
193   return ( TimeClip(MakeDate(DAY, TimeWithinDay(T))) );
194 }