Follow-on fix for bug 457825. Use sheet principal for agent and user sheets. r=dbaron...
[wine-gecko.git] / js / tests / lc2 / JavaToJS / number-001.js
bloba1101bbbcc53b3f32d4398f7d631ca11c4d648d0
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 ***** */
39 gTestfile = 'number-001.js';
41 /**
43 File Name:      number-001.js
44 Description:
46 If a Java method returns one of the primitive Java types below,
47 JavaScript should read the value as JavaScript number primitive.
48 *   byte
49 *   short
50 *   int
51 *   long
52 *   float
53 *   double
54 *   char
56 To test this:
58 1.  Call a java method that returns one of the primitive java types above.
59 2.  Check the value of the returned type
60 3.  Check the type of the returned type, which should be "number"
62 It is an error if the type of the JavaScript variable is "object" or if
63 its class is JavaObject or Number.
65 @author     christine@netscape.com
66 @version    1.00
68 var SECTION = "LiveConnect";
69 var VERSION = "1_3";
70 var TITLE   = "Java Number Primitive to JavaScript Object";
72 startTest();
73 writeHeaderToLog( SECTION + " "+ TITLE);
75 //  In all test cases, the expected type is "number"
77 var E_TYPE = "number";
79 //  Create arrays of actual results (java_array) and
80 //  expected results (test_array).
82 var java_array = new Array();
83 var test_array = new Array();
85 var i = 0;
87 //  Call a java function that returns a value whose type is int.
88 java_array[i] = new JavaValue( java.lang.Integer.parseInt('255') );
89 test_array[i] = new TestValue( "java.lang.Integer.parseInt('255')",
90                                255,
91                                E_TYPE );
93 i++;
95 java_array[i] = new JavaValue( (new java.lang.Double( '123456789' )).intValue() );
96 test_array[i] = new TestValue( "(new java.lang.Double( '123456789' )).intValue()",
97                                123456789,
98                                E_TYPE );
100 i++;
102 //  Call a java function that returns a value whose type is double
103 java_array[i] = new JavaValue( (new java.lang.Integer( '123456789' )).doubleValue() );
104 test_array[i] = new TestValue( "(new java.lang.Integer( '123456789' )).doubleValue()",
105                                123456789,
106                                E_TYPE );
108 // Call a java function that returns a value whose type is long
109 java_array[i] = new JavaValue( (new java.lang.Long('1234567891234567' )).longValue() );
110 test_array[i] = new TestValue( "(new java.lang.Long( '1234567891234567' )).longValue()",
111                                1234567891234567,
112                                E_TYPE );
114 // Call a java function that returns a value whose type is float
116 java_array[i] = new JavaValue( (new java.lang.Float( '1234.5' )).floatValue() );
117 test_array[i] = new TestValue( "(new java.lang.Float( '1234.5' )).floatValue()",
118                                1234.5,
119                                E_TYPE );
121 i++;
123 // Call a java function that returns a value whose type is char
124 java_array[i] = new JavaValue(  (new java.lang.String("hello")).charAt(0) );
125 test_array[i] = new TestValue( "(new java.lang.String('hello')).charAt(0)",
126                                "h".charCodeAt(0),
127                                E_TYPE );
128 i++;
130 // Call a java function that returns a value whose type is short
131 java_array[i] = new JavaValue(  (new java.lang.Byte(127)).shortValue() );
132 test_array[i] = new TestValue( "(new java.lang.Byte(127)).shortValue()",
133                                127,
134                                E_TYPE );
135 i++;
137 // Call a java function that returns a value whose type is byte
138 java_array[i] = new JavaValue( (new java.lang.Byte(127)).byteValue() );
139 test_array[i] = new TestValue( "(new java.lang.Byte(127)).byteValue()",
140                                127,
141                                E_TYPE );
144 for ( i = 0; i < java_array.length; i++ ) {
145   CompareValues( java_array[i], test_array[i] );
148 test();
149 function CompareValues( javaval, testval ) {
150   //  Check value
151   new TestCase( SECTION,
152                 testval.description,
153                 testval.value,
154                 javaval.value );
155   //  Check type.
157   new TestCase( SECTION,
158                 "typeof (" + testval.description +")",
159                 testval.type,
160                 javaval.type );
162 function JavaValue( value ) {
163   this.value  = value.valueOf();
164   this.type   = typeof value;
165   return this;
167 function TestValue( description, value, type, classname ) {
168   this.description = description;
169   this.value = value;
170   this.type =  type;
171   return this;