Imported Upstream version 1.0.0
[platform/upstream/js.git] / js / src / tests / js1_2 / version120 / regress-99663.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.org code.
16  *
17  * The Initial Developer of the Original Code is
18  * Netscape Communications Corporation.
19  * Portions created by the Initial Developer are Copyright (C) 1998
20  * the Initial Developer. All Rights Reserved.
21  *
22  * Contributor(s):
23  *   brendan@mozilla.org, 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 var UBound = 0;
42 var BUGNUMBER = 99663;
43 var summary = 'Regression test for Bugzilla bug 99663';
44 /*
45  * This testcase expects error messages containing
46  * the phrase 'read-only' or something similar -
47  */
48 var READONLY = /read\s*-?\s*only/;
49 var READONLY_TRUE = 'a "read-only" error';
50 var READONLY_FALSE = 'Error: ';
51 var FAILURE = 'NO ERROR WAS GENERATED!';
52 var status = '';
53 var actual = '';
54 var expect= '';
55 var statusitems = [];
56 var expectedvalues = [];
57 var actualvalues = [];
58
59
60 /*
61  * These MUST be compiled in JS1.2 or less for the test to work - see above
62  */
63 function f1()
64 {
65   with (it)
66   {
67     for (rdonly in this);
68   }
69 }
70
71
72 function f2()
73 {
74   for (it.rdonly in this);
75 }
76
77
78 function f3(s)
79 {
80   for (it[s] in this);
81 }
82
83
84
85 /*
86  * Begin testing by capturing actual vs. expected values.
87  * Initialize to FAILURE; this will get reset if all goes well -
88  */
89 actual = FAILURE;
90 try
91 {
92   f1();
93 }
94 catch(e)
95 {
96   actual = readOnly(e.message);
97 }
98 expect= READONLY_TRUE;
99 status = 'Section 1 of test - got ' + actual;
100 addThis();
101
102
103 actual = FAILURE;
104 try
105 {
106   f2();
107 }
108 catch(e)
109 {
110   actual = readOnly(e.message);
111 }
112 expect= READONLY_TRUE;
113 status = 'Section 2 of test - got ' + actual;
114 addThis();
115
116
117 actual = FAILURE;
118 try
119 {
120   f3('rdonly');
121 }
122 catch(e)
123 {
124   actual = readOnly(e.message);
125 }
126 expect= READONLY_TRUE;
127 status = 'Section 3 of test - got ' + actual;
128 addThis();
129
130
131
132 //-----------------------------------------------------------------------------
133 test();
134 //-----------------------------------------------------------------------------
135
136
137
138 function readOnly(msg)
139 {
140   if (msg.match(READONLY))
141     return READONLY_TRUE;
142   return READONLY_FALSE + msg;
143 }
144
145
146 function addThis()
147 {
148   statusitems[UBound] = status;
149   actualvalues[UBound] = actual;
150   expectedvalues[UBound] = expect;
151   UBound++;
152 }
153
154
155 function test()
156 {
157   print ('Bug Number ' + bug);
158   print ('STATUS: ' + summary);
159
160   for (var i=0; i<UBound; i++)
161   {
162     writeTestCaseResult(expectedvalues[i], actualvalues[i], statusitems[i]);
163   }
164 }