Imported Upstream version 1.0.0
[platform/upstream/js.git] / js / src / tests / ecma_3 / Exceptions / 15.11.1.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  *   joerg.schaible@gmx.de
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:    27 Nov 2002
42  * SUMMARY: Ensuring normal function call of Error (ECMA-262 Ed.3 15.11.1.1).
43  */
44 //-----------------------------------------------------------------------------
45 var UBound = 0;
46 var BUGNUMBER = '';
47 var summary = 'Ensuring normal function call of Error (ECMA-262 Ed.3 15.11.1.1)';
48 var status = '';
49 var statusitems = [];
50 var actual = '';
51 var actualvalues = [];
52 var expect= '';
53 var expectedvalues = [];
54 var EMPTY_STRING = '';
55 var EXPECTED_FORMAT = 0;
56
57
58 function otherScope(msg)
59 {
60   return Error(msg);
61 }
62
63
64 status = inSection(1);
65 var err1 = Error('msg1');
66 actual = examineThis(err1, 'msg1');
67 expect = EXPECTED_FORMAT;
68 addThis();
69
70 status = inSection(2);
71 var err2 = otherScope('msg2');
72 actual = examineThis(err2, 'msg2');
73 expect = EXPECTED_FORMAT;
74 addThis();
75
76 status = inSection(3);
77 var err3 = otherScope();
78 actual = examineThis(err3, EMPTY_STRING);
79 expect = EXPECTED_FORMAT;
80 addThis();
81
82 status = inSection(4);
83 var err4 = eval("Error('msg4')");
84 actual = examineThis(err4, 'msg4');
85 expect = EXPECTED_FORMAT;
86 addThis();
87
88
89
90 //-----------------------------------------------------------------------------
91 test();
92 //-----------------------------------------------------------------------------
93
94
95
96 /*
97  * Searches err.toString() for err.name + ':' + err.message,
98  * with possible whitespace on each side of the colon sign.
99  *
100  * We allow for no colon in case err.message was not provided by the user.
101  * In such a case, SpiderMonkey and Rhino currently set err.message = '',
102  * as allowed for by ECMA 15.11.4.3. This makes |pattern| work in this case.
103  *
104  * If this is ever changed to a non-empty string, e.g. 'undefined',
105  * you may have to modify |pattern| to take that into account -
106  *
107  */
108 function examineThis(err, msg)
109 {
110   var pattern = err.name + '\\s*:?\\s*' + msg;
111   return err.toString().search(RegExp(pattern));
112 }
113
114
115 function addThis()
116 {
117   statusitems[UBound] = status;
118   actualvalues[UBound] = actual;
119   expectedvalues[UBound] = expect;
120   UBound++;
121 }
122
123
124 function test()
125 {
126   enterFunc ('test');
127   printBugNumber(BUGNUMBER);
128   printStatus (summary);
129
130   for (var i = 0; i < UBound; i++)
131   {
132     reportCompare(expectedvalues[i], actualvalues[i], statusitems[i]);
133   }
134
135   exitFunc ('test');
136 }