Imported Upstream version 1.0.0
[platform/upstream/js.git] / js / src / tests / ecma / GlobalObject / 15.1.2.2-2.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 Communicator client code, released
16  * March 31, 1998.
17  *
18  * The Initial Developer of the Original Code is
19  * Netscape Communications Corporation.
20  * Portions created by the Initial Developer are Copyright (C) 1998
21  * the Initial Developer. All Rights Reserved.
22  *
23  * Contributor(s):
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    File Name:          15.1.2.2-1.js
42    ECMA Section:       15.1.2.2 Function properties of the global object
43    parseInt( string, radix )
44
45    Description:        parseInt test cases written by waldemar, and documented in
46    http://scopus.mcom.com/bugsplat/show_bug.cgi?id=123874.
47
48    Author:             christine@netscape.com
49    Date:               28 october 1997
50
51 */
52 var SECTION = "15.1.2.2-2";
53 var VERSION = "ECMA_1";
54 var TITLE   = "parseInt(string, radix)";
55 var BUGNUMBER = "none";
56
57 startTest();
58
59 writeHeaderToLog( SECTION + " "+ TITLE);
60
61 new TestCase( SECTION,
62               'parseInt("000000100000000100100011010001010110011110001001101010111100",2)',
63               9027215253084860,
64               parseInt("000000100000000100100011010001010110011110001001101010111100",2) );
65
66 new TestCase( SECTION,
67               'parseInt("000000100000000100100011010001010110011110001001101010111101",2)',
68               9027215253084860,
69               parseInt("000000100000000100100011010001010110011110001001101010111101",2));
70
71 new TestCase( SECTION,
72               'parseInt("000000100000000100100011010001010110011110001001101010111111",2)',
73               9027215253084864,
74               parseInt("000000100000000100100011010001010110011110001001101010111111",2) );
75
76 new TestCase( SECTION,
77               'parseInt("0000001000000001001000110100010101100111100010011010101111010",2)',
78               18054430506169720,
79               parseInt("0000001000000001001000110100010101100111100010011010101111010",2) );
80
81 new TestCase( SECTION,
82               'parseInt("0000001000000001001000110100010101100111100010011010101111011",2)',
83               18054430506169724,
84               parseInt("0000001000000001001000110100010101100111100010011010101111011",2));
85
86 new TestCase( SECTION,
87               'parseInt("0000001000000001001000110100010101100111100010011010101111100",2)',
88               18054430506169724,
89               parseInt("0000001000000001001000110100010101100111100010011010101111100",2) );
90
91 new TestCase( SECTION,
92               'parseInt("0000001000000001001000110100010101100111100010011010101111110",2)',
93               18054430506169728,
94               parseInt("0000001000000001001000110100010101100111100010011010101111110",2) );
95
96 new TestCase( SECTION,
97               'parseInt("yz",35)',
98               34,
99               parseInt("yz",35) );
100
101 new TestCase( SECTION,
102               'parseInt("yz",36)',
103               1259,
104               parseInt("yz",36) );
105
106 new TestCase( SECTION,
107               'parseInt("yz",37)',
108               NaN,
109               parseInt("yz",37) );
110
111 new TestCase( SECTION,
112               'parseInt("+77")',
113               77,
114               parseInt("+77") );
115
116 new TestCase( SECTION,
117               'parseInt("-77",9)',
118               -70,
119               parseInt("-77",9) );
120
121 new TestCase( SECTION,
122               'parseInt("\u20001234\u2000")',
123               1234,
124               parseInt("\u20001234\u2000") );
125
126 new TestCase( SECTION,
127               'parseInt("123456789012345678")',
128               123456789012345680,
129               parseInt("123456789012345678") );
130
131 new TestCase( SECTION,
132               'parseInt("9",8)',
133               NaN,
134               parseInt("9",8) );
135
136 new TestCase( SECTION,
137               'parseInt("1e2")',
138               1,
139               parseInt("1e2") );
140
141 new TestCase( SECTION,
142               'parseInt("1.9999999999999999999")',
143               1,
144               parseInt("1.9999999999999999999") );
145
146 new TestCase( SECTION,
147               'parseInt("0x10")',
148               16,
149               parseInt("0x10") );
150
151 new TestCase( SECTION,
152               'parseInt("0x10",10)',
153               0,
154               parseInt("0x10",10));
155
156 new TestCase( SECTION,
157               'parseInt("0022")',
158               18,
159               parseInt("0022"));
160
161 new TestCase( SECTION,
162               'parseInt("0022",10)',
163               22,
164               parseInt("0022",10) );
165
166 new TestCase( SECTION,
167               'parseInt("0x1000000000000080")',
168               1152921504606847000,
169               parseInt("0x1000000000000080") );
170
171 new TestCase( SECTION,
172               'parseInt("0x1000000000000081")',
173               1152921504606847200,
174               parseInt("0x1000000000000081") );
175
176 s =
177   "0xFFFFFFFFFFFFF80000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"
178
179   s += "0000000000000000000000000000000000000";
180
181 new TestCase( SECTION,
182               "s = " + s +"; -s",
183               -1.7976931348623157e+308,
184               -s );
185
186 s =
187   "0xFFFFFFFFFFFFF80000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000";
188 s += "0000000000000000000000000000000000001";
189
190 new TestCase( SECTION,
191               "s = " + s +"; -s",
192               -1.7976931348623157e+308,
193               -s );
194
195
196 s = "0xFFFFFFFFFFFFFC0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000";
197
198 s += "0000000000000000000000000000000000000"
199
200
201 new TestCase( SECTION,
202               "s = " + s + "; -s",
203               -Infinity,
204               -s );
205
206 s = "0xFFFFFFFFFFFFFB0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000";
207 s += "0000000000000000000000000000000000001";
208
209 new TestCase( SECTION,
210               "s = " + s + "; -s",
211               -1.7976931348623157e+308,
212               -s );
213
214 s += "0"
215
216 new TestCase( SECTION,
217               "s = " + s + "; -s",
218               -Infinity,
219               -s );
220
221 new TestCase( SECTION,
222               'parseInt(s)',
223               Infinity,
224               parseInt(s) );
225
226 new TestCase( SECTION,
227               'parseInt(s,32)',
228               0,
229               parseInt(s,32) );
230
231 new TestCase( SECTION,
232               'parseInt(s,36)',
233               Infinity,
234               parseInt(s,36));
235
236 test();
237