Imported Upstream version 1.0.0
[platform/upstream/js.git] / js / src / tests / ecma / Date / 15.9.5.37-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 /**
41    File Name:          15.9.5.37-1.js
42    ECMA Section:       15.9.5.37 Date.prototype.setUTCFullYear(year [, mon [, date ]] )
43    Description:
44
45    If mon is not specified, this behaves as if mon were specified with the
46    value getUTCMonth( ).  If date is not specified, this behaves as if date
47    were specified with the value getUTCDate( ).
48
49    1.   Let t be this time value; but if this time 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 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 some Year 2000 test cases.
64 */
65 var SECTION = "15.9.5.37-1";
66 var VERSION = "ECMA_1";
67 startTest();
68
69 writeHeaderToLog( SECTION + " Date.prototype.setUTCFullYear(year [, mon [, date ]] )");
70
71
72 // Dates around 1970
73
74 addNewTestCase( "TDATE = new Date(0);(TDATE).setUTCFullYear(1970);TDATE",
75                 UTCDateFromTime(SetUTCFullYear(0,1970)),
76                 LocalDateFromTime(SetUTCFullYear(0,1970)) );
77
78 addNewTestCase( "TDATE = new Date(0);(TDATE).setUTCFullYear(1971);TDATE",
79                 UTCDateFromTime(SetUTCFullYear(0,1971)),
80                 LocalDateFromTime(SetUTCFullYear(0,1971)) );
81
82 addNewTestCase( "TDATE = new Date(0);(TDATE).setUTCFullYear(1972);TDATE",
83                 UTCDateFromTime(SetUTCFullYear(0,1972)),
84                 LocalDateFromTime(SetUTCFullYear(0,1972)) );
85
86 addNewTestCase( "TDATE = new Date(0);(TDATE).setUTCFullYear(1968);TDATE",
87                 UTCDateFromTime(SetUTCFullYear(0,1968)),
88                 LocalDateFromTime(SetUTCFullYear(0,1968)) );
89
90 addNewTestCase( "TDATE = new Date(0);(TDATE).setUTCFullYear(1969);TDATE",
91                 UTCDateFromTime(SetUTCFullYear(0,1969)),
92                 LocalDateFromTime(SetUTCFullYear(0,1969)) );
93
94 addNewTestCase( "TDATE = new Date(0);(TDATE).setUTCFullYear(1969);TDATE",
95                 UTCDateFromTime(SetUTCFullYear(0,1969)),
96                 LocalDateFromTime(SetUTCFullYear(0,1969)) );
97
98 test();
99
100 function addNewTestCase( DateString, UTCDate, LocalDate) {
101   DateCase = eval( DateString );
102
103   new TestCase( SECTION, DateString+".getTime()",             UTCDate.value,       DateCase.getTime() );
104   new TestCase( SECTION, DateString+".valueOf()",             UTCDate.value,       DateCase.valueOf() );
105
106   new TestCase( SECTION, DateString+".getUTCFullYear()",      UTCDate.year,    DateCase.getUTCFullYear() );
107   new TestCase( SECTION, DateString+".getUTCMonth()",         UTCDate.month,  DateCase.getUTCMonth() );
108   new TestCase( SECTION, DateString+".getUTCDate()",          UTCDate.date,   DateCase.getUTCDate() );
109   new TestCase( SECTION, DateString+".getUTCDay()",           UTCDate.day,    DateCase.getUTCDay() );
110   new TestCase( SECTION, DateString+".getUTCHours()",         UTCDate.hours,  DateCase.getUTCHours() );
111   new TestCase( SECTION, DateString+".getUTCMinutes()",       UTCDate.minutes,DateCase.getUTCMinutes() );
112   new TestCase( SECTION, DateString+".getUTCSeconds()",       UTCDate.seconds,DateCase.getUTCSeconds() );
113   new TestCase( SECTION, DateString+".getUTCMilliseconds()",  UTCDate.ms,     DateCase.getUTCMilliseconds() );
114
115   new TestCase( SECTION, DateString+".getFullYear()",         LocalDate.year,       DateCase.getFullYear() );
116   new TestCase( SECTION, DateString+".getMonth()",            LocalDate.month,      DateCase.getMonth() );
117   new TestCase( SECTION, DateString+".getDate()",             LocalDate.date,       DateCase.getDate() );
118   new TestCase( SECTION, DateString+".getDay()",              LocalDate.day,        DateCase.getDay() );
119   new TestCase( SECTION, DateString+".getHours()",            LocalDate.hours,      DateCase.getHours() );
120   new TestCase( SECTION, DateString+".getMinutes()",          LocalDate.minutes,    DateCase.getMinutes() );
121   new TestCase( SECTION, DateString+".getSeconds()",          LocalDate.seconds,    DateCase.getSeconds() );
122   new TestCase( SECTION, DateString+".getMilliseconds()",     LocalDate.ms,         DateCase.getMilliseconds() );
123
124   DateCase.toString = Object.prototype.toString;
125
126   new TestCase( SECTION,
127                 DateString+".toString=Object.prototype.toString;"+DateString+".toString()",
128                 "[object Date]",
129                 DateCase.toString() );
130 }
131
132 function MyDate() {
133   this.year = 0;
134   this.month = 0;
135   this.date = 0;
136   this.hours = 0;
137   this.minutes = 0;
138   this.seconds = 0;
139   this.ms = 0;
140 }
141 function LocalDateFromTime(t) {
142   t = LocalTime(t);
143   return ( MyDateFromTime(t) );
144 }
145 function UTCDateFromTime(t) {
146   return ( MyDateFromTime(t) );
147 }
148 function MyDateFromTime( t ) {
149   var d = new MyDate();
150   d.year = YearFromTime(t);
151   d.month = MonthFromTime(t);
152   d.date = DateFromTime(t);
153   d.hours = HourFromTime(t);
154   d.minutes = MinFromTime(t);
155   d.seconds = SecFromTime(t);
156   d.ms = msFromTime(t);
157
158   d.time = MakeTime( d.hours, d.minutes, d.seconds, d.ms );
159   d.value = TimeClip( MakeDate( MakeDay( d.year, d.month, d.date ), d.time ) );
160   d.day = WeekDay( d.value );
161
162   return (d);
163 }
164 function SetUTCFullYear( t, year, mon, date ) {
165   var T = ( t != t ) ? 0 : t;
166   var YEAR = Number(year);
167   var MONTH = ( mon == void 0 ) ?     MonthFromTime(T) : Number( mon );
168   var DATE  = ( date == void 0 ) ?    DateFromTime(T)  : Number( date );
169   var DAY = MakeDay( YEAR, MONTH, DATE );
170
171   return ( TimeClip(MakeDate(DAY, TimeWithinDay(T))) );
172 }