Imported Upstream version 1.0.0
[platform/upstream/js.git] / js / src / tests / ecma / Date / 15.9.5.36-5.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.36-1.js
42    ECMA Section:       15.9.5.36 Date.prototype.setFullYear(year [, mon [, date ]] )
43    Description:
44
45    If mon is not specified, this behaves as if mon were specified with the
46    value getMonth( ). If date is not specified, this behaves as if date were
47    specified with the value getDate( ).
48
49    1.   Let t be the result of LocalTime(this time value); but if this time
50    value is NaN, let t be +0.
51    2.   Call ToNumber(year).
52    3.   If mon is not specified, compute MonthFromTime(t); otherwise, call
53    ToNumber(mon).
54    4.   If date is not specified, compute DateFromTime(t); otherwise, call
55    ToNumber(date).
56    5.   Compute MakeDay(Result(2), Result(3), Result(4)).
57    6.   Compute UTC(MakeDate(Result(5), TimeWithinDay(t))).
58    7.   Set the [[Value]] property of the this value to TimeClip(Result(6)).
59    8.   Return the value of the [[Value]] property of the this value.
60
61    Author:             christine@netscape.com
62    Date:               12 november 1997
63
64    Added test cases for Year 2000 Compatilibity Testing.
65
66 */
67 var SECTION = "15.9.5.36-1";
68 var VERSION = "ECMA_1";
69 startTest();
70
71 writeHeaderToLog( SECTION + " Date.prototype.setFullYear(year [, mon [, date ]] )");
72
73 // 2000
74 addNewTestCase( "TDATE = new Date(0);(TDATE).setFullYear(2000);TDATE",
75                 UTCDateFromTime(SetFullYear(0,2000)),
76                 LocalDateFromTime(SetFullYear(0,2000)) );
77
78 addNewTestCase( "TDATE = new Date(0);(TDATE).setFullYear(2000,0);TDATE",
79                 UTCDateFromTime(SetFullYear(0,2000,0)),
80                 LocalDateFromTime(SetFullYear(0,2000,0)) );
81
82 addNewTestCase( "TDATE = new Date(0);(TDATE).setFullYear(2000,0,1);TDATE",
83                 UTCDateFromTime(SetFullYear(0,2000,0,1)),
84                 LocalDateFromTime(SetFullYear(0,2000,0,1)) );
85
86 test();
87
88 function addNewTestCase( DateString, UTCDate, LocalDate) {
89   DateCase = eval( DateString );
90
91   new TestCase( SECTION, DateString+".getTime()",             UTCDate.value,       DateCase.getTime() );
92   new TestCase( SECTION, DateString+".valueOf()",             UTCDate.value,       DateCase.valueOf() );
93
94   new TestCase( SECTION, DateString+".getUTCFullYear()",      UTCDate.year,    DateCase.getUTCFullYear() );
95   new TestCase( SECTION, DateString+".getUTCMonth()",         UTCDate.month,  DateCase.getUTCMonth() );
96   new TestCase( SECTION, DateString+".getUTCDate()",          UTCDate.date,   DateCase.getUTCDate() );
97   new TestCase( SECTION, DateString+".getUTCDay()",           UTCDate.day,    DateCase.getUTCDay() );
98   new TestCase( SECTION, DateString+".getUTCHours()",         UTCDate.hours,  DateCase.getUTCHours() );
99   new TestCase( SECTION, DateString+".getUTCMinutes()",       UTCDate.minutes,DateCase.getUTCMinutes() );
100   new TestCase( SECTION, DateString+".getUTCSeconds()",       UTCDate.seconds,DateCase.getUTCSeconds() );
101   new TestCase( SECTION, DateString+".getUTCMilliseconds()",  UTCDate.ms,     DateCase.getUTCMilliseconds() );
102
103   new TestCase( SECTION, DateString+".getFullYear()",         LocalDate.year,       DateCase.getFullYear() );
104   new TestCase( SECTION, DateString+".getMonth()",            LocalDate.month,      DateCase.getMonth() );
105   new TestCase( SECTION, DateString+".getDate()",             LocalDate.date,       DateCase.getDate() );
106   new TestCase( SECTION, DateString+".getDay()",              LocalDate.day,        DateCase.getDay() );
107   new TestCase( SECTION, DateString+".getHours()",            LocalDate.hours,      DateCase.getHours() );
108   new TestCase( SECTION, DateString+".getMinutes()",          LocalDate.minutes,    DateCase.getMinutes() );
109   new TestCase( SECTION, DateString+".getSeconds()",          LocalDate.seconds,    DateCase.getSeconds() );
110   new TestCase( SECTION, DateString+".getMilliseconds()",     LocalDate.ms,         DateCase.getMilliseconds() );
111
112   DateCase.toString = Object.prototype.toString;
113
114   new TestCase( SECTION,
115                 DateString+".toString=Object.prototype.toString;"+DateString+".toString()",
116                 "[object Date]",
117                 DateCase.toString() );
118 }
119
120 function MyDate() {
121   this.year = 0;
122   this.month = 0;
123   this.date = 0;
124   this.hours = 0;
125   this.minutes = 0;
126   this.seconds = 0;
127   this.ms = 0;
128 }
129 function LocalDateFromTime(t) {
130   t = LocalTime(t);
131   return ( MyDateFromTime(t) );
132 }
133 function UTCDateFromTime(t) {
134   return ( MyDateFromTime(t) );
135 }
136 function MyDateFromTime( t ) {
137   var d = new MyDate();
138   d.year = YearFromTime(t);
139   d.month = MonthFromTime(t);
140   d.date = DateFromTime(t);
141   d.hours = HourFromTime(t);
142   d.minutes = MinFromTime(t);
143   d.seconds = SecFromTime(t);
144   d.ms = msFromTime(t);
145
146   d.time = MakeTime( d.hours, d.minutes, d.seconds, d.ms );
147   d.value = TimeClip( MakeDate( MakeDay( d.year, d.month, d.date ), d.time ) );
148   d.day = WeekDay( d.value );
149
150   return (d);
151 }
152 function SetFullYear( t, year, mon, date ) {
153   var T = ( isNaN(t) ) ? 0 : LocalTime(t) ;
154   var YEAR = Number( year );
155   var MONTH = ( mon == void 0 ) ? MonthFromTime(T) : Number( mon );
156   var DATE = ( date == void 0 ) ? DateFromTime(T)  : Number( date );
157
158   var DAY = MakeDay( YEAR, MONTH, DATE );
159   var UTC_DATE = UTC(MakeDate( DAY, TimeWithinDay(T)));
160
161   return ( TimeClip(UTC_DATE) );
162 }