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