* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / class / Microsoft.JScript / Test / Mozilla / ecma / Date / 15.9.5.36-1.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 /**
40    File Name:          15.9.5.36-1.js
41    ECMA Section:       15.9.5.36 Date.prototype.setFullYear(year [, mon [, date ]] )
42    Description:
43
44    If mon is not specified, this behaves as if mon were specified with the
45    value getMonth( ). If date is not specified, this behaves as if date were
46    specified with the value getDate( ).
47
48    1.   Let t be the result of LocalTime(this time value); but if this time
49    value is NaN, let t be +0.
50    2.   Call ToNumber(year).
51    3.   If mon is not specified, compute MonthFromTime(t); otherwise, call
52    ToNumber(mon).
53    4.   If date is not specified, compute DateFromTime(t); otherwise, call
54    ToNumber(date).
55    5.   Compute MakeDay(Result(2), Result(3), Result(4)).
56    6.   Compute UTC(MakeDate(Result(5), TimeWithinDay(t))).
57    7.   Set the [[Value]] property of the this value to TimeClip(Result(6)).
58    8.   Return the value of the [[Value]] property of the this value.
59
60    Author:             christine@netscape.com
61    Date:               12 november 1997
62
63    Added test cases for Year 2000 Compatilibity Testing.
64
65 */
66 var SECTION = "15.9.5.36-1";
67 var VERSION = "ECMA_1";
68 startTest();
69
70 writeHeaderToLog( SECTION + " Date.prototype.setFullYear(year [, mon [, date ]] )");
71
72
73 // 1969
74
75 addNewTestCase( "TDATE = new Date(0);(TDATE).setFullYear(1969);TDATE",
76                 UTCDateFromTime(SetFullYear(0,1969)),
77                 LocalDateFromTime(SetFullYear(0,1969)) );
78
79 addNewTestCase( "TDATE = new Date(0);(TDATE).setFullYear(1969,11);TDATE",
80                 UTCDateFromTime(SetFullYear(0,1969,11)),
81                 LocalDateFromTime(SetFullYear(0,1969,11)) );
82
83 addNewTestCase( "TDATE = new Date(0);(TDATE).setFullYear(1969,11,31);TDATE",
84                 UTCDateFromTime(SetFullYear(0,1969,11,31)),
85                 LocalDateFromTime(SetFullYear(0,1969,11,31)) );
86 /*
87 // 1970
88
89 addNewTestCase( "TDATE = new Date(0);(TDATE).setFullYear(1970);TDATE",
90 UTCDateFromTime(SetFullYear(0,1970)),
91 LocalDateFromTime(SetFullYear(0,1970)) );
92
93 addNewTestCase( "TDATE = new Date(0);(TDATE).setFullYear(1970,0);TDATE",
94 UTCDateFromTime(SetFullYear(0,1970,0)),
95 LocalDateFromTime(SetFullYear(0,1970,0)) );
96
97 addNewTestCase( "TDATE = new Date(0);(TDATE).setFullYear(1970,0,1);TDATE",
98 UTCDateFromTime(SetFullYear(0,1970,0,1)),
99 LocalDateFromTime(SetFullYear(0,1970,0,1)) );
100 // 1971
101 addNewTestCase( "TDATE = new Date(0);(TDATE).setFullYear(1971);TDATE",
102 UTCDateFromTime(SetFullYear(0,1971)),
103 LocalDateFromTime(SetFullYear(0,1971)) );
104
105 addNewTestCase( "TDATE = new Date(0);(TDATE).setFullYear(1971,0);TDATE",
106 UTCDateFromTime(SetFullYear(0,1971,0)),
107 LocalDateFromTime(SetFullYear(0,1971,0)) );
108
109 addNewTestCase( "TDATE = new Date(0);(TDATE).setFullYear(1971,0,1);TDATE",
110 UTCDateFromTime(SetFullYear(0,1971,0,1)),
111 LocalDateFromTime(SetFullYear(0,1971,0,1)) );
112
113 // 1999
114 addNewTestCase( "TDATE = new Date(0);(TDATE).setFullYear(1999);TDATE",
115 UTCDateFromTime(SetFullYear(0,1999)),
116 LocalDateFromTime(SetFullYear(0,1999)) );
117
118 addNewTestCase( "TDATE = new Date(0);(TDATE).setFullYear(1999,11);TDATE",
119 UTCDateFromTime(SetFullYear(0,1999,11)),
120 LocalDateFromTime(SetFullYear(0,1999,11)) );
121
122 addNewTestCase( "TDATE = new Date(0);(TDATE).setFullYear(1999,11,31);TDATE",
123 UTCDateFromTime(SetFullYear(0,1999,11,31)),
124 LocalDateFromTime(SetFullYear(0,1999,11,31)) );
125
126 // 2000
127 addNewTestCase( "TDATE = new Date(0);(TDATE).setFullYear(2000);TDATE",
128 UTCDateFromTime(SetFullYear(0,2000)),
129 LocalDateFromTime(SetFullYear(0,2000)) );
130
131 addNewTestCase( "TDATE = new Date(0);(TDATE).setFullYear(2000,0);TDATE",
132 UTCDateFromTime(SetFullYear(0,2000,0)),
133 LocalDateFromTime(SetFullYear(0,2000,0)) );
134
135 addNewTestCase( "TDATE = new Date(0);(TDATE).setFullYear(2000,0,1);TDATE",
136 UTCDateFromTime(SetFullYear(0,2000,0,1)),
137 LocalDateFromTime(SetFullYear(0,2000,0,1)) );
138
139 // feb 29, 2000
140 addNewTestCase( "TDATE = new Date(0);(TDATE).setFullYear(2000);TDATE",
141 UTCDateFromTime(SetFullYear(0,2000)),
142 LocalDateFromTime(SetFullYear(0,2000)) );
143
144 addNewTestCase( "TDATE = new Date(0);(TDATE).setFullYear(2000,1);TDATE",
145 UTCDateFromTime(SetFullYear(0,2000,1)),
146 LocalDateFromTime(SetFullYear(0,2000,1)) );
147
148 addNewTestCase( "TDATE = new Date(0);(TDATE).setFullYear(2000,1,29);TDATE",
149 UTCDateFromTime(SetFullYear(0,2000,1,29)),
150 LocalDateFromTime(SetFullYear(0,2000,1,29)) );
151
152 // Jan 1, 2005
153 addNewTestCase( "TDATE = new Date(0);(TDATE).setFullYear(2005);TDATE",
154 UTCDateFromTime(SetFullYear(0,2005)),
155 LocalDateFromTime(SetFullYear(0,2005)) );
156
157 addNewTestCase( "TDATE = new Date(0);(TDATE).setFullYear(2005,0);TDATE",
158 UTCDateFromTime(SetFullYear(0,2005,0)),
159 LocalDateFromTime(SetFullYear(0,2005,0)) );
160
161 addNewTestCase( "TDATE = new Date(0);(TDATE).setFullYear(2005,0,1);TDATE",
162 UTCDateFromTime(SetFullYear(0,2005,0,1)),
163 LocalDateFromTime(SetFullYear(0,2005,0,1)) );
164
165 */
166
167 test();
168
169 function addNewTestCase( DateString, UTCDate, LocalDate) {
170   DateCase = eval( DateString );
171
172
173 //    fixed_year = ( ExpectDate.year >=1900 || ExpectDate.year < 2000 ) ? ExpectDate.year - 1900 : ExpectDate.year;
174
175   new TestCase( SECTION, DateString+".getTime()",             UTCDate.value,       DateCase.getTime() );
176   new TestCase( SECTION, DateString+".valueOf()",             UTCDate.value,       DateCase.valueOf() );
177
178   new TestCase( SECTION, DateString+".getUTCFullYear()",      UTCDate.year,    DateCase.getUTCFullYear() );
179   new TestCase( SECTION, DateString+".getUTCMonth()",         UTCDate.month,  DateCase.getUTCMonth() );
180   new TestCase( SECTION, DateString+".getUTCDate()",          UTCDate.date,   DateCase.getUTCDate() );
181   new TestCase( SECTION, DateString+".getUTCDay()",           UTCDate.day,    DateCase.getUTCDay() );
182   new TestCase( SECTION, DateString+".getUTCHours()",         UTCDate.hours,  DateCase.getUTCHours() );
183   new TestCase( SECTION, DateString+".getUTCMinutes()",       UTCDate.minutes,DateCase.getUTCMinutes() );
184   new TestCase( SECTION, DateString+".getUTCSeconds()",       UTCDate.seconds,DateCase.getUTCSeconds() );
185   new TestCase( SECTION, DateString+".getUTCMilliseconds()",  UTCDate.ms,     DateCase.getUTCMilliseconds() );
186
187   new TestCase( SECTION, DateString+".getFullYear()",         LocalDate.year,       DateCase.getFullYear() );
188   new TestCase( SECTION, DateString+".getMonth()",            LocalDate.month,      DateCase.getMonth() );
189   new TestCase( SECTION, DateString+".getDate()",             LocalDate.date,       DateCase.getDate() );
190   new TestCase( SECTION, DateString+".getDay()",              LocalDate.day,        DateCase.getDay() );
191   new TestCase( SECTION, DateString+".getHours()",            LocalDate.hours,      DateCase.getHours() );
192   new TestCase( SECTION, DateString+".getMinutes()",          LocalDate.minutes,    DateCase.getMinutes() );
193   new TestCase( SECTION, DateString+".getSeconds()",          LocalDate.seconds,    DateCase.getSeconds() );
194   new TestCase( SECTION, DateString+".getMilliseconds()",     LocalDate.ms,         DateCase.getMilliseconds() );
195
196   DateCase.toString = Object.prototype.toString;
197
198   new TestCase( SECTION,
199                 DateString+".toString=Object.prototype.toString;"+DateString+".toString()",
200                 "[object Date]",
201                 DateCase.toString() );
202 }
203
204 function MyDate() {
205   this.year = 0;
206   this.month = 0;
207   this.date = 0;
208   this.hours = 0;
209   this.minutes = 0;
210   this.seconds = 0;
211   this.ms = 0;
212 }
213 function LocalDateFromTime(t) {
214   t = LocalTime(t);
215   return ( MyDateFromTime(t) );
216 }
217 function UTCDateFromTime(t) {
218   return ( MyDateFromTime(t) );
219 }
220 function MyDateFromTime( t ) {
221   var d = new MyDate();
222   d.year = YearFromTime(t);
223   d.month = MonthFromTime(t);
224   d.date = DateFromTime(t);
225   d.hours = HourFromTime(t);
226   d.minutes = MinFromTime(t);
227   d.seconds = SecFromTime(t);
228   d.ms = msFromTime(t);
229
230   d.time = MakeTime( d.hours, d.minutes, d.seconds, d.ms );
231   d.value = TimeClip( MakeDate( MakeDay( d.year, d.month, d.date ), d.time ) );
232   d.day = WeekDay( d.value );
233
234   return (d);
235 }
236 function SetFullYear( t, year, mon, date ) {
237   var T = ( isNaN(t) ) ? 0 : LocalTime(t) ;
238   var YEAR = Number( year );
239   var MONTH = ( mon == void 0 ) ? MonthFromTime(T) : Number( mon );
240   var DATE = ( date == void 0 ) ? DateFromTime(T)  : Number( date );
241
242   var DAY = MakeDay( YEAR, MONTH, DATE );
243   var UTC_DATE = UTC(MakeDate( DAY, TimeWithinDay(T)));
244
245   return ( TimeClip(UTC_DATE) );
246 }