~loic.molinari/+junk/qtdeclarative-shadereffectsource-changes

« back to all changes in this revision

Viewing changes to tests/auto/qml/parserstress/tests/ecma/Date/15.9.5.37-3.js

  • Committer: Loïc Molinari
  • Date: 2012-04-21 17:59:51 UTC
  • Revision ID: loic.molinari@canonical.com-20120421175951-bqx68caaf5zrp76l
Initial import

Show diffs side-by-side

added added

removed removed

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