Imported Upstream version 1.0.0
[platform/upstream/js.git] / js / src / tests / ecma_3 / Expressions / 11.9.6-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  *   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:    20 Feb 2002
42  * SUMMARY: Testing the comparison |undefined === null|
43  * See http://bugzilla.mozilla.org/show_bug.cgi?id=126722
44  *
45  */
46 //-----------------------------------------------------------------------------
47 var UBound = 0;
48 var BUGNUMBER = 126722;
49 var summary = 'Testing the comparison |undefined === null|';
50 var status = '';
51 var statusitems = [];
52 var actual = '';
53 var actualvalues = [];
54 var expect= '';
55 var expectedvalues = [];
56
57
58 status = inSection(1);
59 if (undefined === null)
60   actual = true;
61 else
62   actual = false;
63 expect = false;
64 addThis();
65
66
67
68 status = inSection(2);
69 switch(true)
70 {
71 case (undefined === null) :
72   actual = true;
73   break;
74
75 default:
76   actual = false;
77 }
78 expect = false;
79 addThis();
80
81
82
83 status = inSection(3);
84 function f3(x)
85 {
86   var res = false;
87
88   switch(true)
89   {
90   case (x === null) :
91     res = true;
92     break;
93
94   default:
95     // do nothing
96   }
97
98   return res;
99 }
100
101 actual = f3(undefined);
102 expect = false;
103 addThis();
104
105
106
107 status = inSection(4);
108 function f4(arr)
109 {
110   var elt = '';
111   var res = false;
112
113   for (i=0; i<arr.length; i++)
114   {
115     elt = arr[i];
116
117     switch(true)
118     {
119     case (elt === null) :
120       res = true;
121       break;
122
123     default:
124       // do nothing
125     }
126   }
127
128   return res;
129 }
130
131 var arr = Array('a', undefined);
132 actual = f4(arr);
133 expect = false;
134 addThis();
135
136
137
138 status = inSection(5);
139 function f5(arr)
140 {
141   var len = arr.length;
142
143   for(var i=0; (arr[i]===undefined) && (i<len); i++)
144     ; //do nothing
145  
146   return i;
147 }
148
149 /*
150  * An array of 5 undefined elements. Note:
151  *
152  * The return value of eval(a STATEMENT) is undefined.
153  * A non-existent PROPERTY is undefined, not a ReferenceError.
154  * No undefined element exists AFTER trailing comma at end.
155  *
156  */
157 var arrUndef = [ , undefined, eval('var x = 0'), this.NOT_A_PROPERTY, , ];
158 actual = f5(arrUndef);
159 expect = 5;
160 addThis();
161
162
163
164 status = inSection(6);
165 function f6(arr)
166 {
167   var len = arr.length;
168
169   for(var i=0; (arr[i]===null) && (i<len); i++)
170     ; //do nothing
171
172   return i;
173 }
174
175 /*
176  * Use same array as above. This time we're comparing to |null|, so we expect 0
177  */
178 actual = f6(arrUndef);
179 expect = 0;
180 addThis();
181
182
183
184
185 //-----------------------------------------------------------------------------
186 test();
187 //-----------------------------------------------------------------------------
188
189
190
191 function addThis()
192 {
193   statusitems[UBound] = status;
194   actualvalues[UBound] = actual;
195   expectedvalues[UBound] = expect;
196   UBound++;
197 }
198
199
200 function test()
201 {
202   enterFunc('test');
203   printBugNumber(BUGNUMBER);
204   printStatus(summary);
205
206   for (var i=0; i<UBound; i++)
207   {
208     reportCompare(expectedvalues[i], actualvalues[i], statusitems[i]);
209   }
210
211   exitFunc ('test');
212 }