Imported Upstream version 1.0.0
[platform/upstream/js.git] / js / src / tests / js1_7 / extensions / iterator-ctor.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  *  Norris Boyd
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 // See http://developer.mozilla.org/en/docs/Core_JavaScript_1.5_Guide:Iterators_and_Generators
40
41 //-----------------------------------------------------------------------------
42 var BUGNUMBER  = "410725";
43 var summary = "Test of the global Iterator constructor";
44 var actual, expect;
45
46 printBugNumber(BUGNUMBER);
47 printStatus(summary);
48
49 /**************
50  * BEGIN TEST *
51  **************/
52
53 function iteratorToArray(iterator) {
54   var result = [];
55   for (var i in iterator) {
56     result[result.length] = i;
57   }
58   return result.sort();
59 }
60
61 var obj = {a:1, b:2};
62
63 reportCompare('["a", "b"]',
64               uneval(iteratorToArray(obj)),
65               'uneval(iteratorToArray(obj))');
66
67 reportCompare('[["a", 1], ["b", 2]]',
68               uneval(iteratorToArray(Iterator(obj))),
69               'uneval(iteratorToArray(Iterator(obj)))');
70
71 reportCompare('[["a", 1], ["b", 2]]',
72               uneval(iteratorToArray(new Iterator(obj))),
73               'uneval(iteratorToArray(new Iterator(obj)))');
74
75 reportCompare('[["a", 1], ["b", 2]]',
76               uneval(iteratorToArray(Iterator(obj,false))),
77               'uneval(iteratorToArray(Iterator(obj,false)))');
78
79 reportCompare('[["a", 1], ["b", 2]]',
80               uneval(iteratorToArray(new Iterator(obj,false))),
81               'uneval(iteratorToArray(new Iterator(obj,false)))');
82
83 reportCompare('["a", "b"]',
84               uneval(iteratorToArray(Iterator(obj,true))),
85               'uneval(iteratorToArray(Iterator(obj,true)))');
86
87 reportCompare('["a", "b"]',
88               uneval(iteratorToArray(new Iterator(obj,true))),
89               'uneval(iteratorToArray(new Iterator(obj,true)))');
90
91 var flag;
92 var obji = {a:1, b:2};
93 obji.__iterator__ = function (b) { flag = b; yield -1; yield -2; }
94
95 flag = -1;
96 reportCompare('[-1, -2]',
97               uneval(iteratorToArray(obji)),
98               'uneval(iteratorToArray(obji))');
99 reportCompare(true, flag, 'uneval(iteratorToArray(obji)) flag');
100
101 flag = -1;
102 reportCompare('[-1, -2]',
103               uneval(iteratorToArray(Iterator(obji))),
104               'uneval(iteratorToArray(Iterator(obji)))');
105 reportCompare(false, flag, 'uneval(iteratorToArray(Iterator(obji))) flag');
106
107 flag = -1;
108 reportCompare('[-1, -2]',
109               uneval(iteratorToArray(new Iterator(obji))),
110               'uneval(iteratorToArray(new Iterator(obji)))');
111 reportCompare(false, flag, 'uneval(iteratorToArray(new Iterator(obji))) flag');
112
113 flag = -1;
114 reportCompare('[-1, -2]',
115               uneval(iteratorToArray(Iterator(obji,false))),
116               'uneval(iteratorToArray(Iterator(obji,false)))');
117 reportCompare(false, flag, 'uneval(iteratorToArray(Iterator(obji,false))) flag');
118
119 flag = -1;
120 reportCompare('[-1, -2]',
121               uneval(iteratorToArray(new Iterator(obji,false))),
122               'uneval(iteratorToArray(new Iterator(obji,false)))');
123 reportCompare(false, flag, 'uneval(iteratorToArray(new Iterator(obji,false))) flag');
124
125 flag = -1;
126 reportCompare('[-1, -2]',
127               uneval(iteratorToArray(Iterator(obji,true))),
128               'uneval(iteratorToArray(Iterator(obji,true)))');
129 reportCompare(true, flag, 'uneval(iteratorToArray(Iterator(obji,true))) flag');
130
131 flag = -1;
132 reportCompare('[-1, -2]',
133               uneval(iteratorToArray(new Iterator(obji,true))),
134               'uneval(iteratorToArray(new Iterator(obji,true)))');
135 reportCompare(true, flag, 'uneval(iteratorToArray(new Iterator(obji,true))) flag');