Rename QDeclarative symbols to QQuick and QQml
[profile/ivi/qtdeclarative.git] / tests / auto / qml / parserstress / tests / ecma_3 / Function / 15.3.4.4-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.call
43  *
44  *   Function.prototype.call(thisArg [,arg1 [,arg2, ...]])
45  *
46  * See ECMA-262 Edition 3 Final, Section 15.3.4.4
47  */
48 //-----------------------------------------------------------------------------
49 var gTestfile = '15.3.4.4-1.js';
50 var UBound = 0;
51 var BUGNUMBER = 145791;
52 var summary = 'Testing ECMA conformance of Function.prototype.call';
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.call.length should return 1
80  */
81 status = inSection(1);
82 actual = Function.prototype.call.length;
83 expect = 1;
84 addThis();
85
86
87 /*
88  * When |thisArg| is not provided to the call() method, the
89  * called function must be passed the global object as |this|
90  */
91 status = inSection(2);
92 actual = F0.call();
93 expect = "" + this + 0;
94 addThis();
95
96
97 /*
98  * If [,arg1 [,arg2, ...]] are not provided to the call() method,
99  * the called function should be invoked with an empty argument list
100  */
101 status = inSection(3);
102 actual = F0.call("");
103 expect = "" + "" + 0;
104 addThis();
105
106 status = inSection(4);
107 actual = F0.call(true);
108 expect = "" + true + 0;
109 addThis();
110
111
112 /*
113  * Function.prototype.call(x) and
114  * Function.prototype.call(x, undefined) should return the same result
115  */
116 status = inSection(5);
117 actual = F1.call(0, undefined);
118 expect = F1.call(0);
119 addThis();
120
121 status = inSection(6);
122 actual = F1.call("", undefined);
123 expect = F1.call("");
124 addThis();
125
126 status = inSection(7);
127 actual = F1.call(null, undefined);
128 expect = F1.call(null);
129 addThis();
130
131 status = inSection(8);
132 actual = F1.call(undefined, undefined);
133 expect = F1.call(undefined);
134 addThis();
135
136
137 /*
138  * Function.prototype.call() and
139  * Function.prototype.call(undefined) should return the same result
140  */
141 status = inSection(9);
142 actual = F2.call(undefined);
143 expect = F2.call();
144 addThis();
145
146
147 /*
148  * Function.prototype.call() and
149  * Function.prototype.call(null) should return the same result
150  */
151 status = inSection(10);
152 actual = F2.call(null);
153 expect = F2.call();
154 addThis();
155
156
157
158 //-----------------------------------------------------------------------------
159 test();
160 //-----------------------------------------------------------------------------
161
162
163
164 function addThis()
165 {
166   statusitems[UBound] = status;
167   actualvalues[UBound] = actual;
168   expectedvalues[UBound] = expect;
169   UBound++;
170 }
171
172
173 function test()
174 {
175   enterFunc('test');
176   printBugNumber(BUGNUMBER);
177   printStatus(summary);
178
179   for (var i=0; i<UBound; i++)
180   {
181     reportCompare(expectedvalues[i], actualvalues[i], statusitems[i]);
182   }
183
184   exitFunc ('test');
185 }