~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.27-1.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.27-1.js';
 
40
 
 
41
/**
 
42
   File Name:          15.9.5.27-1.js
 
43
   ECMA Section:       15.9.5.27 Date.prototype.setUTCSeconds(sec [,ms])
 
44
   Description:
 
45
 
 
46
   If ms is not specified, this behaves as if ms were specified with the
 
47
   value getUTCMilliseconds( ).
 
48
 
 
49
   1.  Let t be this time value.
 
50
   2.  Call ToNumber(sec).
 
51
   3.  If ms is not specified, compute msFromTime(t); otherwise, call
 
52
   ToNumber(ms)
 
53
   4.  Compute MakeTime(HourFromTime(t), MinFromTime(t), Result(2), Result(3))
 
54
   5.  Compute MakeDate(Day(t), Result(4)).
 
55
   6.  Set the [[Value]] property of the this value to TimeClip(Result(5)).
 
56
   7.  Return the value of the [[Value]] property of the this value.
 
57
 
 
58
   Author:             christine@netscape.com
 
59
   Date:               12 november 1997
 
60
*/
 
61
var SECTION = "15.9.5.27-1";
 
62
var VERSION = "ECMA_1";
 
63
startTest();
 
64
 
 
65
writeHeaderToLog( SECTION + " Date.prototype.setUTCSeconds(sec [,ms] )");
 
66
 
 
67
addNewTestCase( 0, 0, 0, "TDATE = new Date(0);(TDATE).setUTCSeconds(0,0);TDATE",
 
68
                UTCDateFromTime(SetUTCSeconds(0,0,0)),
 
69
                LocalDateFromTime(SetUTCSeconds(0,0,0)) );
 
70
 
 
71
addNewTestCase( 28800000,59,999,
 
72
                "TDATE = new Date(28800000);(TDATE).setUTCSeconds(59,999);TDATE",
 
73
                UTCDateFromTime(SetUTCSeconds(28800000,59,999)),
 
74
                LocalDateFromTime(SetUTCSeconds(28800000,59,999)) );
 
75
 
 
76
addNewTestCase( 28800000,999,999,
 
77
                "TDATE = new Date(28800000);(TDATE).setUTCSeconds(999,999);TDATE",
 
78
                UTCDateFromTime(SetUTCSeconds(28800000,999,999)),
 
79
                LocalDateFromTime(SetUTCSeconds(28800000,999,999)) );
 
80
 
 
81
addNewTestCase( 28800000, 999, void 0,
 
82
                "TDATE = new Date(28800000);(TDATE).setUTCSeconds(999);TDATE",
 
83
                UTCDateFromTime(SetUTCSeconds(28800000,999,0)),
 
84
                LocalDateFromTime(SetUTCSeconds(28800000,999,0)) );
 
85
 
 
86
addNewTestCase( 28800000, -28800, void 0,
 
87
                "TDATE = new Date(28800000);(TDATE).setUTCSeconds(-28800);TDATE",
 
88
                UTCDateFromTime(SetUTCSeconds(28800000,-28800)),
 
89
                LocalDateFromTime(SetUTCSeconds(28800000,-28800)) );
 
90
 
 
91
addNewTestCase( 946684800000, 1234567, void 0,
 
92
                "TDATE = new Date(946684800000);(TDATE).setUTCSeconds(1234567);TDATE",
 
93
                UTCDateFromTime(SetUTCSeconds(946684800000,1234567)),
 
94
                LocalDateFromTime(SetUTCSeconds(946684800000,1234567)) );
 
95
 
 
96
addNewTestCase( -2208988800000,59,999,
 
97
                "TDATE = new Date(-2208988800000);(TDATE).setUTCSeconds(59,999);TDATE",
 
98
                UTCDateFromTime(SetUTCSeconds(-2208988800000,59,999)),
 
99
                LocalDateFromTime(SetUTCSeconds(-2208988800000,59,999)) );
 
100
 
 
101
test();
 
102
 
 
103
function addNewTestCase( startTime, sec, ms, DateString, UTCDate, LocalDate) {
 
104
  DateCase = new Date( startTime );
 
105
  if ( ms == void 0) {
 
106
    DateCase.setSeconds( sec );
 
107
  } else {
 
108
    DateCase.setSeconds( sec, ms );
 
109
  }
 
110
 
 
111
  new TestCase( SECTION, DateString+".getTime()",             UTCDate.value,       DateCase.getTime() );
 
112
  new TestCase( SECTION, DateString+".valueOf()",             UTCDate.value,       DateCase.valueOf() );
 
113
 
 
114
  new TestCase( SECTION, DateString+".getUTCFullYear()",      UTCDate.year,    DateCase.getUTCFullYear() );
 
115
  new TestCase( SECTION, DateString+".getUTCMonth()",         UTCDate.month,  DateCase.getUTCMonth() );
 
116
  new TestCase( SECTION, DateString+".getUTCDate()",          UTCDate.date,   DateCase.getUTCDate() );
 
117
 
 
118
  new TestCase( SECTION, DateString+".getUTCHours()",         UTCDate.hours,  DateCase.getUTCHours() );
 
119
  new TestCase( SECTION, DateString+".getUTCMinutes()",       UTCDate.minutes,DateCase.getUTCMinutes() );
 
120
  new TestCase( SECTION, DateString+".getUTCSeconds()",       UTCDate.seconds,DateCase.getUTCSeconds() );
 
121
  new TestCase( SECTION, DateString+".getUTCMilliseconds()",  UTCDate.ms,     DateCase.getUTCMilliseconds() );
 
122
 
 
123
  new TestCase( SECTION, DateString+".getFullYear()",         LocalDate.year,       DateCase.getFullYear() );
 
124
  new TestCase( SECTION, DateString+".getMonth()",            LocalDate.month,      DateCase.getMonth() );
 
125
  new TestCase( SECTION, DateString+".getDate()",             LocalDate.date,       DateCase.getDate() );
 
126
 
 
127
  new TestCase( SECTION, DateString+".getHours()",            LocalDate.hours,      DateCase.getHours() );
 
128
  new TestCase( SECTION, DateString+".getMinutes()",          LocalDate.minutes,    DateCase.getMinutes() );
 
129
  new TestCase( SECTION, DateString+".getSeconds()",          LocalDate.seconds,    DateCase.getSeconds() );
 
130
  new TestCase( SECTION, DateString+".getMilliseconds()",     LocalDate.ms,         DateCase.getMilliseconds() );
 
131
 
 
132
  DateCase.toString = Object.prototype.toString;
 
133
 
 
134
  new TestCase( SECTION,
 
135
                DateString+".toString=Object.prototype.toString;"+DateString+".toString()",
 
136
                "[object Date]",
 
137
                DateCase.toString() );
 
138
}
 
139
 
 
140
function MyDate() {
 
141
  this.year = 0;
 
142
  this.month = 0;
 
143
  this.date = 0;
 
144
  this.hours = 0;
 
145
  this.minutes = 0;
 
146
  this.seconds = 0;
 
147
  this.ms = 0;
 
148
}
 
149
function LocalDateFromTime(t) {
 
150
  t = LocalTime(t);
 
151
  return ( MyDateFromTime(t) );
 
152
}
 
153
function UTCDateFromTime(t) {
 
154
  return ( MyDateFromTime(t) );
 
155
}
 
156
function MyDateFromTime( t ) {
 
157
  var d = new MyDate();
 
158
  d.year = YearFromTime(t);
 
159
  d.month = MonthFromTime(t);
 
160
  d.date = DateFromTime(t);
 
161
  d.hours = HourFromTime(t);
 
162
  d.minutes = MinFromTime(t);
 
163
  d.seconds = SecFromTime(t);
 
164
  d.ms = msFromTime(t);
 
165
 
 
166
  d.time = MakeTime( d.hours, d.minutes, d.seconds, d.ms );
 
167
  d.value = TimeClip( MakeDate( MakeDay( d.year, d.month, d.date ), d.time ) );
 
168
  d.day = WeekDay( d.value );
 
169
 
 
170
  return (d);
 
171
}
 
172
 
 
173
function SetUTCSeconds( t, s, m ) {
 
174
  var TIME = t;
 
175
  var SEC  = Number(s);
 
176
  var MS   = ( m == void 0 ) ? msFromTime(TIME) : Number( m );
 
177
  var RESULT4 = MakeTime( HourFromTime( TIME ),
 
178
                          MinFromTime( TIME ),
 
179
                          SEC,
 
180
                          MS );
 
181
  return ( TimeClip(MakeDate(Day(TIME), RESULT4)) );
 
182
}
 
183