Imported Upstream version 1.0.0
[platform/upstream/js.git] / js / src / tests / ecma / FunctionObjects / 15.3.1.1-2.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 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
40 /**
41    File Name:          15.3.1.1-2.js
42    ECMA Section:       15.3.1.1 The Function Constructor Called as a Function
43    Function(p1, p2, ..., pn, body )
44
45    Description:
46    When the Function function is called with some arguments p1, p2, . . . , pn,
47    body (where n might be 0, that is, there are no "p" arguments, and where body
48    might also not be provided), the following steps are taken:
49
50    1.  Create and return a new Function object exactly if the function constructor
51    had been called with the same arguments (15.3.2.1).
52
53    Author:             christine@netscape.com
54    Date:               28 october 1997
55
56 */
57 var SECTION = "15.3.1.1-2";
58 var VERSION = "ECMA_1";
59 startTest();
60 var TITLE   = "The Function Constructor Called as a Function";
61
62 writeHeaderToLog( SECTION + " "+ TITLE);
63
64 var myfunc1 =  Function("a","b","c", "return a+b+c" );
65 var myfunc2 =  Function("a, b, c",   "return a+b+c" );
66 var myfunc3 =  Function("a,b", "c",  "return a+b+c" );
67
68 myfunc1.toString = Object.prototype.toString;
69 myfunc2.toString = Object.prototype.toString;
70 myfunc3.toString = Object.prototype.toString;
71
72 new TestCase( SECTION, 
73               "myfunc1 =  Function('a','b','c'); myfunc.toString = Object.prototype.toString; myfunc.toString()",
74               "[object Function]",
75               myfunc1.toString() );
76
77 new TestCase( SECTION, 
78               "myfunc1.length",                           
79               3,                     
80               myfunc1.length );
81
82 new TestCase( SECTION, 
83               "myfunc1.prototype.toString()",             
84               "[object Object]",     
85               myfunc1.prototype.toString() );
86
87 new TestCase( SECTION, 
88               "myfunc1.prototype.constructor",            
89               myfunc1,               
90               myfunc1.prototype.constructor );
91
92 new TestCase( SECTION, 
93               "myfunc1.arguments",                        
94               null,                  
95               myfunc1.arguments );
96
97 new TestCase( SECTION, 
98               "myfunc1(1,2,3)",                           
99               6,                     
100               myfunc1(1,2,3) );
101
102 new TestCase( SECTION, 
103               "var MYPROPS = ''; for ( var p in myfunc1.prototype ) { MYPROPS += p; }; MYPROPS",
104               "",
105               eval("var MYPROPS = ''; for ( var p in myfunc1.prototype ) { MYPROPS += p; }; MYPROPS") );
106
107 new TestCase( SECTION, 
108               "myfunc2 =  Function('a','b','c'); myfunc.toString = Object.prototype.toString; myfunc.toString()",
109               "[object Function]",
110               myfunc2.toString() );
111
112 new TestCase( SECTION, 
113               "myfunc2.length",                           
114               3,                     
115               myfunc2.length );
116
117 new TestCase( SECTION, 
118               "myfunc2.prototype.toString()",             
119               "[object Object]",     
120               myfunc2.prototype.toString() );
121
122 new TestCase( SECTION, 
123               "myfunc2.prototype.constructor",            
124               myfunc2,                
125               myfunc2.prototype.constructor );
126
127 new TestCase( SECTION, 
128               "myfunc2.arguments",                        
129               null,                  
130               myfunc2.arguments );
131
132 new TestCase( SECTION, 
133               "myfunc2( 1000, 200, 30 )",                
134               1230,                   
135               myfunc2(1000,200,30) );
136
137 new TestCase( SECTION, 
138               "var MYPROPS = ''; for ( var p in myfunc2.prototype ) { MYPROPS += p; }; MYPROPS",
139               "",
140               eval("var MYPROPS = ''; for ( var p in myfunc2.prototype ) { MYPROPS += p; }; MYPROPS") );
141
142 new TestCase( SECTION, 
143               "myfunc3 =  Function('a','b','c'); myfunc.toString = Object.prototype.toString; myfunc.toString()",
144               "[object Function]",
145               myfunc3.toString() );
146
147 new TestCase( SECTION, 
148               "myfunc3.length",                           
149               3,                     
150               myfunc3.length );
151
152 new TestCase( SECTION, 
153               "myfunc3.prototype.toString()",             
154               "[object Object]",     
155               myfunc3.prototype.toString() );
156
157 new TestCase( SECTION, 
158               "myfunc3.prototype.valueOf() +''",          
159               "[object Object]",     
160               myfunc3.prototype.valueOf() +'' );
161
162 new TestCase( SECTION, 
163               "myfunc3.prototype.constructor",            
164               myfunc3,                
165               myfunc3.prototype.constructor );
166
167 new TestCase( SECTION, 
168               "myfunc3.arguments",                        
169               null,                  
170               myfunc3.arguments );
171
172 new TestCase( SECTION, 
173               "myfunc3(-100,100,NaN)",                   
174               Number.NaN,             
175               myfunc3(-100,100,NaN) );
176
177 new TestCase( SECTION, 
178               "var MYPROPS = ''; for ( var p in myfunc3.prototype ) { MYPROPS += p; }; MYPROPS",
179               "",
180               eval("var MYPROPS = ''; for ( var p in myfunc3.prototype ) { MYPROPS += p; }; MYPROPS") );
181
182 test();