Bug 470455 - test_database_sync_embed_visits.js leaks, r=sdwilsh
[wine-gecko.git] / js / tests / lc3 / JSNumber / ToDouble-003.js
blob42f6c2528f6212857eb4ca204bd4d0d39feda9f9
1 /* -*- Mode: java; tab-width: 8 -*-
2  * Copyright (C) 1997, 1998 Netscape Communications Corporation,
3  * All Rights Reserved.
4  */
5 /* ***** BEGIN LICENSE BLOCK *****
6  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
7  *
8  * The contents of this file are subject to the Mozilla Public License Version
9  * 1.1 (the "License"); you may not use this file except in compliance with
10  * the License. You may obtain a copy of the License at
11  * http://www.mozilla.org/MPL/
12  *
13  * Software distributed under the License is distributed on an "AS IS" basis,
14  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
15  * for the specific language governing rights and limitations under the
16  * License.
17  *
18  * The Original Code is Mozilla Communicator client code, released
19  * March 31, 1998.
20  *
21  * The Initial Developer of the Original Code is
22  * Netscape Communications Corporation.
23  * Portions created by the Initial Developer are Copyright (C) 1998
24  * the Initial Developer. All Rights Reserved.
25  *
26  * Contributor(s):
27  *
28  * Alternatively, the contents of this file may be used under the terms of
29  * either the GNU General Public License Version 2 or later (the "GPL"), or
30  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
31  * in which case the provisions of the GPL or the LGPL are applicable instead
32  * of those above. If you wish to allow use of your version of this file only
33  * under the terms of either the GPL or the LGPL, and not to allow others to
34  * use your version of this file under the terms of the MPL, indicate your
35  * decision by deleting the provisions above and replace them with the notice
36  * and other provisions required by the GPL or the LGPL. If you do not delete
37  * the provisions above, a recipient may use your version of this file under
38  * the terms of any one of the MPL, the GPL or the LGPL.
39  *
40  * ***** END LICENSE BLOCK ***** */
42 gTestfile = 'ToDouble-003.js';
44 /**
45  *  JavaScript to Java type conversion.
46  *
47  *  This test passes JavaScript number values to several Java methods
48  *  that expect arguments of various types, and verifies that the value is
49  *  converted to the correct value and type.
50  *
51  *  This tests instance methods, and not static methods.
52  *
53  *  Running these tests successfully requires you to have
54  *  com.netscape.javascript.qa.liveconnect.DataTypeClass on your classpath.
55  *
56  *  Specification:  Method Overloading Proposal for Liveconnect 3.0
57  *
58  *  @author: christine@netscape.com
59  *
60  */
61 var SECTION = "number conversion to float";
62 var VERSION = "1_4";
63 var TITLE   = "LiveConnect 3.0 JavaScript to Java Data Type Conversion " +
64   SECTION;
65 startTest();
67 var dt = new DT();
69 var a = new Array();
70 var i = 0;
72 // passing a number value to a method that expects a float should round JS
73 // number to float precision.  unrepresentably large values are converted
74 // to +/- Infinity.
76 // Special cases:  0, -0, Infinity, -Infinity, and NaN
78 a[i++] = new TestObject(
79   "dt.setFloat( 0 )",
80   "dt.PUB_FLOAT",
81   "dt.getFloat()",
82   "typeof dt.getFloat()",
83   0,
84   "number" );
86 a[i++] = new TestObject(
87   "dt.setFloat( -0 )",
88   "Infinity / dt.PUB_FLOAT",
89   "Infinity / dt.getFloat()",
90   "typeof dt.getFloat()",
91   -Infinity,
92   "number" );
94 a[i++] = new TestObject(
95   "dt.setFloat( Infinity )",
96   "dt.PUB_FLOAT ",
97   "dt.getFloat() ",
98   "typeof dt.getFloat()",
99   Infinity,
100   "number" );
102 a[i++] = new TestObject(
103   "dt.setFloat( -Infinity )",
104   "dt.PUB_FLOAT",
105   "dt.getFloat() ",
106   "typeof dt.getFloat()",
107   -Infinity,
108   "number" );
110 a[i++] = new TestObject(
111   "dt.setFloat( NaN )",
112   "dt.PUB_FLOAT",
113   "dt.getFloat()",
114   "typeof dt.getFloat()",
115   NaN,
116   "number" );
118 a[i++] = new TestObject(
119   "dt.setFloat( java.lang.Float.MAX_VALUE )",
120   "dt.PUB_FLOAT",
121   "dt.getFloat()",
122   "typeof dt.getFloat()",
123   java.lang.Float.MAX_VALUE,
124   "number" );
126 a[i++] = new TestObject(
127   "dt.setFloat( java.lang.Float.MIN_VALUE )",
128   "dt.PUB_FLOAT",
129   "dt.getFloat()",
130   "typeof dt.getFloat()",
131   java.lang.Float.MIN_VALUE,
132   "number" );
134 a[i++] = new TestObject(
135   "dt.setFloat( -java.lang.Float.MAX_VALUE )",
136   "dt.PUB_FLOAT",
137   "dt.getFloat()",
138   "typeof dt.getFloat()",
139   -java.lang.Float.MAX_VALUE,
140   "number" );
142 a[i++] = new TestObject(
143   "dt.setFloat( -java.lang.Float.MIN_VALUE )",
144   "dt.PUB_FLOAT",
145   "dt.getFloat()",
146   "typeof dt.getFloat()",
147   -java.lang.Float.MIN_VALUE,
148   "number" );
150 a[i++] = new TestObject(
151   "dt.setFloat(1.7976931348623157E+308)",
152   "dt.PUB_FLOAT",
153   "dt.getFloat()",
154   "typeof dt.getFloat()",
155   Infinity,
156   "number" );
158 a[i++] = new TestObject(
159   "dt.setFloat(1.7976931348623158e+308)",
160   "dt.PUB_FLOAT",
161   "dt.getFloat()",
162   "typeof dt.getFloat()",
163   Infinity,
164   "number" );
166 a[i++] = new TestObject(
167   "dt.setFloat(1.7976931348623159e+308)",
168   "dt.PUB_FLOAT",
169   "dt.getFloat()",
170   "typeof dt.getFloat()",
171   Infinity,
172   "number" );
174 a[i++] = new TestObject(
175   "dt.setFloat(-1.7976931348623157E+308)",
176   "dt.PUB_FLOAT",
177   "dt.getFloat()",
178   "typeof dt.getFloat()",
179   -Infinity,
180   "number" );
182 a[i++] = new TestObject(
183   "dt.setFloat(-1.7976931348623158e+308)",
184   "dt.PUB_FLOAT",
185   "dt.getFloat()",
186   "typeof dt.getFloat()",
187   -Infinity,
188   "number" );
190 a[i++] = new TestObject(
191   "dt.setFloat(-1.7976931348623159e+308)",
192   "dt.PUB_FLOAT",
193   "dt.getFloat()",
194   "typeof dt.getFloat()",
195   -Infinity,
196   "number" );
198 a[i++] = new TestObject(
199   "dt.setFloat(1e-2000)",
200   "dt.PUB_FLOAT",
201   "dt.getFloat()",
202   "typeof dt.getFloat()",
203   0,
204   "number" );
206 a[i++] = new TestObject(
207   "dt.setFloat(1e2000)",
208   "dt.PUB_FLOAT",
209   "dt.getFloat()",
210   "typeof dt.getFloat()",
211   Infinity,
212   "number" );
214 a[i++] = new TestObject(
215   "dt.setFloat(-1e2000)",
216   "dt.PUB_FLOAT",
217   "dt.getFloat()",
218   "typeof dt.getFloat()",
219   -Infinity,
220   "number" );
223 for ( i = 0; i < a.length; i++ ) {
224   new TestCase(
225     a[i].description +"; "+ a[i].javaFieldName,
226     a[i].jsValue,
227     a[i].javaFieldValue );
229   new TestCase(
230     a[i].description +"; " + a[i].javaMethodName,
231     a[i].jsValue,
232     a[i].javaMethodValue );
234   new TestCase(
235     a[i].javaTypeName,
236     a[i].jsType,
237     a[i].javaTypeValue );
240 test();
242 function TestObject( description, javaField, javaMethod, javaType,
243                      jsValue, jsType )
245   eval (description );
247   this.description = description;
248   this.javaFieldName = javaField;
249   this.javaFieldValue = eval( javaField );
250   this.javaMethodName = javaMethod;
251   this.javaMethodValue = eval( javaMethod );
252   this.javaTypeName = javaType,
253     this.javaTypeValue = eval( javaType );
255   this.jsValue   = jsValue;
256   this.jsType      = jsType;