Imported Upstream version 1.0.0
[platform/upstream/js.git] / js / src / tests / js1_5 / Exceptions / regress-123002.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  *   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:    01 Feb 2002
42  * SUMMARY: Testing Error.length
43  * See http://bugzilla.mozilla.org/show_bug.cgi?id=123002
44  *
45  * NOTE: Error.length should equal the length of FormalParameterList of the
46  * Error constructor. This is currently 1 in Rhino, 3 in SpiderMonkey.
47  *
48  * The difference is due to http://bugzilla.mozilla.org/show_bug.cgi?id=50447.
49  * As a result of that bug, SpiderMonkey has extended ECMA to allow two new
50  * parameters to Error constructors:
51  *
52  * Rhino:        new Error (message)
53  * SpiderMonkey: new Error (message, fileName, lineNumber)
54  *
55  * NOTE: since we have hard-coded the length expectations, this testcase will
56  * have to be changed if the Error FormalParameterList is ever changed again.
57  *
58  * To do this, just change the two LENGTH constants below -
59  */
60 //-----------------------------------------------------------------------------
61 var UBound = 0;
62 var BUGNUMBER = 123002;
63 var summary = 'Testing Error.length';
64 var QUOTE = '"';
65 var status = '';
66 var statusitems = [];
67 var actual = '';
68 var actualvalues = [];
69 var expect= '';
70 var expectedvalues = [];
71
72
73 var LENGTH_EXPECTED = 1;
74
75 /*
76  * The various NativeError objects; see ECMA-262 Edition 3, Section 15.11.6
77  */
78 var errObjects = [new Error(), new EvalError(), new RangeError(),
79                   new ReferenceError(), new SyntaxError(), new TypeError(), new URIError()];
80
81
82 for (var i in errObjects)
83 {
84   var err = errObjects[i];
85   status = inSection(quoteThis(err.name));
86   actual = Error.length;
87   expect = LENGTH_EXPECTED;
88   addThis();
89 }
90
91
92
93 //-----------------------------------------------------------------------------
94 test();
95 //-----------------------------------------------------------------------------
96
97
98
99 function addThis()
100 {
101   statusitems[UBound] = status;
102   actualvalues[UBound] = actual;
103   expectedvalues[UBound] = expect;
104   UBound++;
105 }
106
107
108 function test()
109 {
110   enterFunc('test');
111   printBugNumber(BUGNUMBER);
112   printStatus(summary);
113
114   for (var i=0; i<UBound; i++)
115   {
116     reportCompare(expectedvalues[i], actualvalues[i], statusitems[i]);
117   }
118
119   exitFunc ('test');
120 }
121
122
123 function quoteThis(text)
124 {
125   return QUOTE + text + QUOTE;
126 }