michael@0: // |reftest| random michael@0: /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ michael@0: /* This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: michael@0: /** michael@0: File Name: 15.9.5.34-1.js michael@0: ECMA Section: 15.9.5.34 Date.prototype.setMonth(mon [, date ] ) michael@0: Description: michael@0: If date is not specified, this behaves as if date were specified with the michael@0: value getDate( ). michael@0: michael@0: 1. Let t be the result of LocalTime(this time value). michael@0: 2. Call ToNumber(date). michael@0: 3. If date is not specified, compute DateFromTime(t); otherwise, call ToNumber(date). michael@0: 4. Compute MakeDay(YearFromTime(t), Result(2), Result(3)). michael@0: 5. Compute UTC(MakeDate(Result(4), TimeWithinDay(t))). michael@0: 6. Set the [[Value]] property of the this value to TimeClip(Result(5)). michael@0: 7. Return the value of the [[Value]] property of the this value. michael@0: michael@0: Author: christine@netscape.com michael@0: Date: 12 november 1997 michael@0: */ michael@0: var SECTION = "15.9.5.34-1"; michael@0: var VERSION = "ECMA_1"; michael@0: startTest(); michael@0: michael@0: writeHeaderToLog( SECTION + " Date.prototype.setMonth(mon [, date ] )"); michael@0: michael@0: getFunctionCases(); michael@0: michael@0: // regression test for http://scopus.mcom.com/bugsplat/show_bug.cgi?id=112404 michael@0: d = new Date(0); michael@0: d.setMonth(1,1,1,1,1,1); michael@0: michael@0: addNewTestCase( michael@0: "TDATE = new Date(0); TDATE.setMonth(1,1,1,1,1,1); TDATE", michael@0: UTCDateFromTime(SetMonth(0,1,1)), michael@0: LocalDateFromTime(SetMonth(0,1,1)) ); michael@0: michael@0: michael@0: // whatever today is michael@0: michael@0: addNewTestCase( "TDATE = new Date(TIME_NOW); (TDATE).setMonth(11,31); TDATE", michael@0: UTCDateFromTime(SetMonth(TIME_NOW,11,31)), michael@0: LocalDateFromTime(SetMonth(TIME_NOW,11,31)) ); michael@0: michael@0: // 1970 michael@0: michael@0: addNewTestCase( "TDATE = new Date(0);(TDATE).setMonth(0,1);TDATE", michael@0: UTCDateFromTime(SetMonth(0,0,1)), michael@0: LocalDateFromTime(SetMonth(0,0,1)) ); michael@0: michael@0: addNewTestCase( "TDATE = new Date("+TIME_1900+"); "+ michael@0: "(TDATE).setMonth(11,31); TDATE", michael@0: UTCDateFromTime( SetMonth(TIME_1900,11,31) ), michael@0: LocalDateFromTime( SetMonth(TIME_1900,11,31) ) ); michael@0: michael@0: test(); michael@0: michael@0: function addNewTestCase( DateString, UTCDate, LocalDate) { michael@0: DateCase = eval( DateString ); michael@0: michael@0: new TestCase( SECTION, DateString+".getTime()", UTCDate.value, DateCase.getTime() ); michael@0: new TestCase( SECTION, DateString+".valueOf()", UTCDate.value, DateCase.valueOf() ); michael@0: michael@0: new TestCase( SECTION, DateString+".getUTCFullYear()", UTCDate.year, DateCase.getUTCFullYear() ); michael@0: new TestCase( SECTION, DateString+".getUTCMonth()", UTCDate.month, DateCase.getUTCMonth() ); michael@0: new TestCase( SECTION, DateString+".getUTCDate()", UTCDate.date, DateCase.getUTCDate() ); michael@0: new TestCase( SECTION, DateString+".getUTCDay()", UTCDate.day, DateCase.getUTCDay() ); michael@0: new TestCase( SECTION, DateString+".getUTCHours()", UTCDate.hours, DateCase.getUTCHours() ); michael@0: new TestCase( SECTION, DateString+".getUTCMinutes()", UTCDate.minutes,DateCase.getUTCMinutes() ); michael@0: new TestCase( SECTION, DateString+".getUTCSeconds()", UTCDate.seconds,DateCase.getUTCSeconds() ); michael@0: new TestCase( SECTION, DateString+".getUTCMilliseconds()", UTCDate.ms, DateCase.getUTCMilliseconds() ); michael@0: michael@0: new TestCase( SECTION, DateString+".getFullYear()", LocalDate.year, DateCase.getFullYear() ); michael@0: new TestCase( SECTION, DateString+".getMonth()", LocalDate.month, DateCase.getMonth() ); michael@0: new TestCase( SECTION, DateString+".getDate()", LocalDate.date, DateCase.getDate() ); michael@0: new TestCase( SECTION, DateString+".getDay()", LocalDate.day, DateCase.getDay() ); michael@0: new TestCase( SECTION, DateString+".getHours()", LocalDate.hours, DateCase.getHours() ); michael@0: new TestCase( SECTION, DateString+".getMinutes()", LocalDate.minutes, DateCase.getMinutes() ); michael@0: new TestCase( SECTION, DateString+".getSeconds()", LocalDate.seconds, DateCase.getSeconds() ); michael@0: new TestCase( SECTION, DateString+".getMilliseconds()", LocalDate.ms, DateCase.getMilliseconds() ); michael@0: michael@0: DateCase.toString = Object.prototype.toString; michael@0: michael@0: new TestCase( SECTION, michael@0: DateString+".toString=Object.prototype.toString;"+DateString+".toString()", michael@0: "[object Date]", michael@0: DateCase.toString() ); michael@0: } michael@0: michael@0: function getFunctionCases() { michael@0: // some tests for all functions michael@0: new TestCase( michael@0: SECTION, michael@0: "Date.prototype.setMonth.length", michael@0: 2, michael@0: Date.prototype.setMonth.length ); michael@0: michael@0: new TestCase( michael@0: SECTION, michael@0: "typeof Date.prototype.setMonth", michael@0: "function", michael@0: typeof Date.prototype.setMonth ); michael@0: michael@0: } michael@0: michael@0: function MyDate() { michael@0: this.year = 0; michael@0: this.month = 0; michael@0: this.date = 0; michael@0: this.hours = 0; michael@0: this.minutes = 0; michael@0: this.seconds = 0; michael@0: this.ms = 0; michael@0: } michael@0: function LocalDateFromTime(t) { michael@0: t = LocalTime(t); michael@0: return ( MyDateFromTime(t) ); michael@0: } michael@0: function UTCDateFromTime(t) { michael@0: return ( MyDateFromTime(t) ); michael@0: } michael@0: function MyDateFromTime( t ) { michael@0: var d = new MyDate(); michael@0: d.year = YearFromTime(t); michael@0: d.month = MonthFromTime(t); michael@0: d.date = DateFromTime(t); michael@0: d.hours = HourFromTime(t); michael@0: d.minutes = MinFromTime(t); michael@0: d.seconds = SecFromTime(t); michael@0: d.ms = msFromTime(t); michael@0: michael@0: d.time = MakeTime( d.hours, d.minutes, d.seconds, d.ms ); michael@0: d.value = TimeClip( MakeDate( MakeDay( d.year, d.month, d.date ), d.time ) ); michael@0: d.day = WeekDay( d.value ); michael@0: michael@0: return (d); michael@0: } michael@0: function SetMonth( t, mon, date ) { michael@0: var TIME = LocalTime(t); michael@0: var MONTH = Number( mon ); michael@0: var DATE = ( date == void 0 ) ? DateFromTime(TIME) : Number( date ); michael@0: var DAY = MakeDay( YearFromTime(TIME), MONTH, DATE ); michael@0: return ( TimeClip (UTC(MakeDate( DAY, TimeWithinDay(TIME) ))) ); michael@0: }