Imported Upstream version 1.0.0
[platform/upstream/js.git] / js / src / tests / js1_7 / extensions / basic-Iterator.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  * Jeff Walden.
19  * Portions created by the Initial Developer are Copyright (C) 2006
20  * the Initial Developer. All Rights Reserved.
21  *
22  * Contributor(s):
23  *
24  * Alternatively, the contents of this file may be used under the terms of
25  * either the GNU General Public License Version 2 or later (the "GPL"), or
26  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
27  * in which case the provisions of the GPL or the LGPL are applicable instead
28  * of those above. If you wish to allow use of your version of this file only
29  * under the terms of either the GPL or the LGPL, and not to allow others to
30  * use your version of this file under the terms of the MPL, indicate your
31  * decision by deleting the provisions above and replace them with the notice
32  * and other provisions required by the GPL or the LGPL. If you do not delete
33  * the provisions above, a recipient may use your version of this file under
34  * the terms of any one of the MPL, the GPL or the LGPL.
35  *
36  * ***** END LICENSE BLOCK ***** */
37
38 //-----------------------------------------------------------------------------
39 var BUGNUMBER     = "(none)";
40 var summary = "Basic support for accessing iterable objects using Iterator";
41 var actual, expect;
42
43 printBugNumber(BUGNUMBER);
44 printStatus(summary);
45
46 /**************
47  * BEGIN TEST *
48  **************/
49
50 var failed = false;
51
52 function Array_equals(a, b)
53 {
54   if (!(a instanceof Array) || !(b instanceof Array))
55     throw new Error("Arguments not both of type Array");
56   if (a.length != b.length)
57     return false;
58   for (var i = 0, sz = a.length; i < sz; i++)
59     if (a[i] !== b[i])
60       return false;
61   return true;
62 }
63
64 var iterable = { persistedProp: 17 };
65
66 try
67 {
68   // nothing unusual so far -- verify basic properties
69   for (var i in iterable)
70   {
71     if (i != "persistedProp")
72       throw "no persistedProp!";
73     if (iterable[i] != 17)
74       throw "iterable[\"persistedProp\"] == 17";
75   }
76
77   var keys = ["foo", "bar", "baz"];
78   var vals = [6, 5, 14];
79
80   iterable.__iterator__ =
81     function(keysOnly)
82     {
83       var gen =
84       function()
85       {
86         for (var i = 0; i < keys.length; i++)
87         {
88           if (keysOnly)
89             yield keys[i];
90           else
91             yield [keys[i], vals[i]];
92         }
93       };
94       return gen();
95     };
96
97   /* Test [key, value] Iterator */
98   var index = 0;
99   var lastSeen = "INITIALVALUE";
100   var it = Iterator(iterable);
101   try
102   {
103     while (true)
104     {
105       var nextVal = it.next();
106       if (!Array_equals(nextVal, [keys[index], vals[index]]))
107         throw "Iterator(iterable): wrong next result\n" +
108           "  expected: " + [keys[index], vals[index]] + "\n" +
109           "  actual:   " + nextVal;
110       lastSeen = keys[index];
111       index++;
112     }
113   }
114   catch (e)
115   {
116     if (lastSeen !== keys[keys.length - 1])
117       throw "Iterator(iterable): not everything was iterated!\n" +
118         "  last iterated was: " + lastSeen + "\n" +
119         "  error: " + e;
120     if (e !== StopIteration)
121       throw "Iterator(iterable): missing or invalid StopIteration";
122   }
123
124   if (iterable.persistedProp != 17)
125     throw "iterable.persistedProp not persisted!";
126
127   /* Test [key, value] Iterator, called with an explicit |false| parameter */
128   var index = 0;
129   lastSeen = "INITIALVALUE";
130   it = Iterator(iterable, false);
131   try
132   {
133     while (true)
134     {
135       var nextVal = it.next();
136       if (!Array_equals(nextVal, [keys[index], vals[index]]))
137         throw "Iterator(iterable, false): wrong next result\n" +
138           "  expected: " + [keys[index], vals[index]] + "\n" +
139           "  actual:   " + nextVal;
140       lastSeen = keys[index];
141       index++;
142     }
143   }
144   catch (e)
145   {
146     if (lastSeen !== keys[keys.length - 1])
147       throw "Iterator(iterable, false): not everything was iterated!\n" +
148         "  last iterated was: " + lastSeen + "\n" +
149         "  error: " + e;
150     if (e !== StopIteration)
151       throw "Iterator(iterable, false): missing or invalid StopIteration";
152   }
153
154   if (iterable.persistedProp != 17)
155     throw "iterable.persistedProp not persisted!";
156
157   /* Test key-only Iterator */
158   index = 0;
159   lastSeen = undefined;
160   it = Iterator(iterable, true);
161   try
162   {
163     while (true)
164     {
165       var nextVal = it.next();
166       if (nextVal !== keys[index])
167         throw "Iterator(iterable, true): wrong next result\n" +
168           "  expected: " + keys[index] + "\n" +
169           "  actual:   " + nextVal;
170       lastSeen = keys[index];
171       index++;
172     }
173   }
174   catch (e)
175   {
176     if (lastSeen !== keys[keys.length - 1])
177       throw "Iterator(iterable, true): not everything was iterated!\n" +
178         "  last iterated was: " + lastSeen + "\n" +
179         "  error: " + e;
180     if (e !== StopIteration)
181       throw "Iterator(iterable, true): missing or invalid StopIteration";
182   }
183
184   if (iterable.persistedProp != 17)
185     throw "iterable.persistedProp not persisted!";
186 }
187 catch (e)
188 {
189   failed = e;
190 }
191
192
193
194 expect = false;
195 actual = failed;
196
197 reportCompare(expect, actual, summary);