Bug 470455 - test_database_sync_embed_visits.js leaks, r=sdwilsh
[wine-gecko.git] / js / tests / lc3 / JSObject / ToJSObject-001.js
blob4d53bf4e25cc1f43faa1e4500f548ace080a60a1
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 = 'ToJSObject-001.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 = "JavaScript Object to java.lang.String";
62 var VERSION = "1_4";
63 var TITLE   = "LiveConnect 3.0 JavaScript to Java Data Type Conversion " +
64   SECTION;
65 startTest();
67 var jsoc = new Packages.com.netscape.javascript.qa.liveconnect.JSObjectConversion();
69 var a = new Array();
70 var i = 0;
72 // 3.3.6.4 Other JavaScript Objects
73 // Passing a JavaScript object to a java method that that expects a JSObject
74 // should wrap the JS object in a new instance of netscape.javascript.JSObject.
75 // HOwever, since we are running the test from JavaScript, getting the value
76 // back should return the unwrapped object.
78 var string  = new String("JavaScript String Value");
80 a[i++] = new TestObject(
81   "jsoc.setJSObject(string)",
82   "jsoc.PUB_JSOBJECT",
83   "jsoc.getJSObject()",
84   "jsoc.getJSObject().constructor",
85   string,
86   String);
88 var myobject = new MyObject( string );
90 a[i++] = new TestObject(
91   "jsoc.setJSObject( myobject )",
92   "jsoc.PUB_JSOBJECT",
93   "jsoc.getJSObject()",
94   "jsoc.getJSObject().constructor",
95   myobject,
96   MyObject);
98 var bool = new Boolean(true);
100 a[i++] = new TestObject(
101   "jsoc.setJSObject( bool )",
102   "jsoc.PUB_JSOBJECT",
103   "jsoc.getJSObject()",
104   "jsoc.getJSObject().constructor",
105   bool,
106   Boolean);
108 bool = new Boolean(false);
110 a[i++] = new TestObject(
111   "jsoc.setJSObject( bool )",
112   "jsoc.PUB_JSOBJECT",
113   "jsoc.getJSObject()",
114   "jsoc.getJSObject().constructor",
115   bool,
116   Boolean);
118 var object = new Object();
120 a[i++] = new TestObject(
121   "jsoc.setJSObject( object)",
122   "jsoc.PUB_JSOBJECT",
123   "jsoc.getJSObject()",
124   "jsoc.getJSObject().constructor",
125   object,
126   Object);
128 var number = new Number(0);
130 a[i++] = new TestObject(
131   "jsoc.setJSObject( number )",
132   "jsoc.PUB_JSOBJECT",
133   "jsoc.getJSObject()",
134   "jsoc.getJSObject().constructor",
135   number,
136   Number);
138 nan = new Number(NaN);
140 a[i++] = new TestObject(
141   "jsoc.setJSObject( nan )",
142   "jsoc.PUB_JSOBJECT",
143   "jsoc.getJSObject()",
144   "jsoc.getJSObject().constructor",
145   nan,
146   Number);
148 infinity = new Number(Infinity);
150 a[i++] = new TestObject(
151   "jsoc.setJSObject( infinity )",
152   "jsoc.PUB_JSOBJECT",
153   "jsoc.getJSObject()",
154   "jsoc.getJSObject().constructor",
155   infinity,
156   Number);
158 var neg_infinity = new Number(-Infinity);
160 a[i++] = new TestObject(
161   "jsoc.setJSObject( neg_infinity)",
162   "jsoc.PUB_JSOBJECT",
163   "jsoc.getJSObject()",
164   "jsoc.getJSObject().constructor",
165   neg_infinity,
166   Number);
168 var array = new Array(1,2,3)
170   a[i++] = new TestObject(
171     "jsoc.setJSObject(array)",
172     "jsoc.PUB_JSOBJECT",
173     "jsoc.getJSObject()",
174     "jsoc.getJSObject().constructor",
175     array,
176     Array);
179 a[i++] = new TestObject(
180   "jsoc.setJSObject( MyObject )",
181   "jsoc.PUB_JSOBJECT",
182   "jsoc.getJSObject()",
183   "jsoc.getJSObject().constructor",
184   MyObject,
185   Function);
187 var THIS = this;
189 a[i++] = new TestObject(
190   "jsoc.setJSObject( THIS )",
191   "jsoc.PUB_JSOBJECT",
192   "jsoc.getJSObject()",
193   "jsoc.getJSObject().constructor",
194   this,
195   Object);
197 a[i++] = new TestObject(
198   "jsoc.setJSObject( Math )",
199   "jsoc.PUB_JSOBJECT",
200   "jsoc.getJSObject()",
201   "jsoc.getJSObject().constructor",
202   Math,
203   Object);
205 a[i++] = new TestObject(
206   "jsoc.setJSObject( Function )",
207   "jsoc.PUB_JSOBJECT",
208   "jsoc.getJSObject()",
209   "jsoc.getJSObject().constructor",
210   Function,
211   Function);
213 for ( i = 0; i < a.length; i++ ) {
214   new TestCase(
215     a[i].description +"; "+ a[i].javaFieldName,
216     a[i].jsValue,
217     a[i].javaFieldValue );
219   new TestCase(
220     a[i].description +"; " + a[i].javaMethodName,
221     a[i].jsValue,
222     a[i].javaMethodValue );
224   new TestCase(
225     a[i].javaTypeName,
226     a[i].jsType,
227     a[i].javaTypeValue );
230 test();
232 function MyObject( stringValue ) {
233   this.stringValue = String(stringValue);
234   this.toString = new Function( "return this.stringValue" );
238 function TestObject( description, javaField, javaMethod, javaType,
239                      jsValue, jsType )
241   print("hi");
242   eval (description);
243   print("bye")
244     this.description = description;
245   this.javaFieldName = javaField;
246   this.javaFieldValue = eval( javaField );
247   this.javaMethodName = javaMethod;
248   this.javaMethodValue = eval( javaMethod );
249   this.javaTypeName = javaType,
250     this.javaTypeValue = eval( javaType );
252   this.jsValue   = jsValue;
253   this.jsType      = jsType;