QML_RUNTIME_TESTING should be disabled by default.
[profile/ivi/qtdeclarative.git] / tests / auto / qml / parserstress / tests / ecma_3 / Function / 15.3.4.3-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 JavaScript Engine testing utilities.
16  *
17  * The Initial Developer of the Original Code is
18  * Netscape Communications Corp.
19  * Portions created by the Initial Developer are Copyright (C) 2002
20  * the Initial Developer. All Rights Reserved.
21  *
22  * Contributor(s):
23  *   igor3@apochta.com, pschwartau@netscape.com
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  * Date:    21 May 2002
42  * SUMMARY: ECMA conformance of Function.prototype.apply
43  *
44  *   Function.prototype.apply(thisArg, argArray)
45  *
46  * See ECMA-262 Edition 3 Final, Section 15.3.4.3
47  */
48 //-----------------------------------------------------------------------------
49 var gTestfile = '15.3.4.3-1.js';
50 var UBound = 0;
51 var BUGNUMBER = 145791;
52 var summary = 'Testing ECMA conformance of Function.prototype.apply';
53 var status = '';
54 var statusitems = [];
55 var actual = '';
56 var actualvalues = [];
57 var expect= '';
58 var expectedvalues = [];
59
60
61 function F0(a)
62 {
63   return "" + this + arguments.length;
64 }
65
66 function F1(a)
67 {
68   return "" + this + a;
69 }
70
71 function F2()
72 {
73   return "" + this;
74 }
75
76
77
78 /*
79  * Function.prototype.apply.length should return 2
80  */
81 status = inSection(1);
82 actual = Function.prototype.apply.length;
83 expect = 2;
84 addThis();
85
86
87 /*
88  * When |thisArg| is not provided to the apply() method, the
89  * called function must be passed the global object as |this|
90  */
91 status = inSection(2);
92 actual = F0.apply();
93 expect = "" + this + 0;
94 addThis();
95
96
97 /*
98  * If |argArray| is not provided to the apply() method, the
99  * called function should be invoked with an empty argument list
100  */
101 status = inSection(3);
102 actual = F0.apply("");
103 expect = "" + "" + 0;
104 addThis();
105
106 status = inSection(4);
107 actual = F0.apply(true);
108 expect = "" + true + 0;
109 addThis();
110
111
112 /*
113  * Function.prototype.apply(x) and
114  * Function.prototype.apply(x, undefined) should return the same result
115  */
116 status = inSection(5);
117 actual = F1.apply(0, undefined);
118 expect = F1.apply(0);
119 addThis();
120
121 status = inSection(6);
122 actual = F1.apply("", undefined);
123 expect = F1.apply("");
124 addThis();
125
126 status = inSection(7);
127 actual = F1.apply(null, undefined);
128 expect = F1.apply(null);
129 addThis();
130
131 status = inSection(8);
132 actual = F1.apply(undefined, undefined);
133 expect = F1.apply(undefined);
134 addThis();
135
136
137 /*
138  * Function.prototype.apply(x) and
139  * Function.prototype.apply(x, null) should return the same result
140  */
141 status = inSection(9);
142 actual = F1.apply(0, null);
143 expect = F1.apply(0);
144 addThis();
145
146 status = inSection(10);
147 actual = F1.apply("", null);
148 expect = F1.apply("");
149 addThis();
150
151 status = inSection(11);
152 actual = F1.apply(null, null);
153 expect = F1.apply(null);
154 addThis();
155
156 status = inSection(12);
157 actual = F1.apply(undefined, null);
158 expect = F1.apply(undefined);
159 addThis();
160
161
162 /*
163  * Function.prototype.apply() and
164  * Function.prototype.apply(undefined) should return the same result
165  */
166 status = inSection(13);
167 actual = F2.apply(undefined);
168 expect = F2.apply();
169 addThis();
170
171
172 /*
173  * Function.prototype.apply() and
174  * Function.prototype.apply(null) should return the same result
175  */
176 status = inSection(14);
177 actual = F2.apply(null);
178 expect = F2.apply();
179 addThis();
180
181
182
183 //-----------------------------------------------------------------------------
184 test();
185 //-----------------------------------------------------------------------------
186
187
188
189 function addThis()
190 {
191   statusitems[UBound] = status;
192   actualvalues[UBound] = actual;
193   expectedvalues[UBound] = expect;
194   UBound++;
195 }
196
197
198 function test()
199 {
200   enterFunc('test');
201   printBugNumber(BUGNUMBER);
202   printStatus(summary);
203
204   for (var i=0; i<UBound; i++)
205   {
206     reportCompare(expectedvalues[i], actualvalues[i], statusitems[i]);
207   }
208
209   exitFunc ('test');
210 }