Imported Upstream version 1.0.0
[platform/upstream/js.git] / js / src / 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 UBound = 0;
50 var BUGNUMBER = 145791;
51 var summary = 'Testing ECMA conformance of Function.prototype.call';
52 var status = '';
53 var statusitems = [];
54 var actual = '';
55 var actualvalues = [];
56 var expect= '';
57 var expectedvalues = [];
58
59
60 function F0(a)
61 {
62   return "" + this + arguments.length;
63 }
64
65 function F1(a)
66 {
67   return "" + this + a;
68 }
69
70 function F2()
71 {
72   return "" + this;
73 }
74
75
76
77 /*
78  * Function.prototype.call.length should return 1
79  */
80 status = inSection(1);
81 actual = Function.prototype.call.length;
82 expect = 1;
83 addThis();
84
85
86 /*
87  * When |thisArg| is not provided to the call() method, the
88  * called function must be passed the global object as |this|
89  */
90 status = inSection(2);
91 actual = F0.call();
92 expect = "" + this + 0;
93 addThis();
94
95
96 /*
97  * If [,arg1 [,arg2, ...]] are not provided to the call() method,
98  * the called function should be invoked with an empty argument list
99  */
100 status = inSection(3);
101 actual = F0.call("");
102 expect = "" + "" + 0;
103 addThis();
104
105 status = inSection(4);
106 actual = F0.call(true);
107 expect = "" + true + 0;
108 addThis();
109
110
111 /*
112  * Function.prototype.call(x) and
113  * Function.prototype.call(x, undefined) should return the same result
114  */
115 status = inSection(5);
116 actual = F1.call(0, undefined);
117 expect = F1.call(0);
118 addThis();
119
120 status = inSection(6);
121 actual = F1.call("", undefined);
122 expect = F1.call("");
123 addThis();
124
125 status = inSection(7);
126 actual = F1.call(null, undefined);
127 expect = F1.call(null);
128 addThis();
129
130 status = inSection(8);
131 actual = F1.call(undefined, undefined);
132 expect = F1.call(undefined);
133 addThis();
134
135
136 /*
137  * Function.prototype.call() and
138  * Function.prototype.call(undefined) should return the same result
139  */
140 status = inSection(9);
141 actual = F2.call(undefined);
142 expect = F2.call();
143 addThis();
144
145
146 /*
147  * Function.prototype.call() and
148  * Function.prototype.call(null) should return the same result
149  */
150 status = inSection(10);
151 actual = F2.call(null);
152 expect = F2.call();
153 addThis();
154
155
156
157 //-----------------------------------------------------------------------------
158 test();
159 //-----------------------------------------------------------------------------
160
161
162
163 function addThis()
164 {
165   statusitems[UBound] = status;
166   actualvalues[UBound] = actual;
167   expectedvalues[UBound] = expect;
168   UBound++;
169 }
170
171
172 function test()
173 {
174   enterFunc('test');
175   printBugNumber(BUGNUMBER);
176   printStatus(summary);
177
178   for (var i=0; i<UBound; i++)
179   {
180     reportCompare(expectedvalues[i], actualvalues[i], statusitems[i]);
181   }
182
183   exitFunc ('test');
184 }