Imported Upstream version 1.0.0
[platform/upstream/js.git] / js / src / tests / ecma_2 / Statements / try-001.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  * Netscape Communication Corporation.
19  * Portions created by the Initial Developer are Copyright (C) 1998
20  * the Initial Developer. All Rights Reserved.
21  *
22  * Contributor(s):
23  *
24  * Alternatively, the contents of this file may be used under the terms of
25  * either the GNU General Public License Version 2 or later (the "GPL"), or
26  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
27  * in which case the provisions of the GPL or the LGPL are applicable instead
28  * of those above. If you wish to allow use of your version of this file only
29  * under the terms of either the GPL or the LGPL, and not to allow others to
30  * use your version of this file under the terms of the MPL, indicate your
31  * decision by deleting the provisions above and replace them with the notice
32  * and other provisions required by the GPL or the LGPL. If you do not delete
33  * the provisions above, a recipient may use your version of this file under
34  * the terms of any one of the MPL, the GPL or the LGPL.
35  *
36  * ***** END LICENSE BLOCK ***** */
37
38
39 /**
40  *  File Name:          try-001.js
41  *  ECMA Section:
42  *  Description:        The try statement
43  *
44  *  This test contains try, catch, and finally blocks.  An exception is
45  *  sometimes thrown by a function called from within the try block.
46  *
47  *
48  *  Author:             christine@netscape.com
49  *  Date:               11 August 1998
50  */
51 var SECTION = "";
52 var VERSION = "ECMA_2";
53 var TITLE   = "The try statement";
54
55 startTest();
56 writeHeaderToLog( SECTION + " "+ TITLE);
57
58 var INVALID_JAVA_INTEGER_VALUE = "Invalid value for java.lang.Integer constructor";
59
60 TryNewJavaInteger( "3.14159", INVALID_JAVA_INTEGER_VALUE );
61 TryNewJavaInteger( NaN, INVALID_JAVA_INTEGER_VALUE );
62 TryNewJavaInteger( 0,  0 );
63 TryNewJavaInteger( -1, -1 );
64 TryNewJavaInteger( 1,  1 );
65 TryNewJavaInteger( Infinity, Infinity );
66
67 test();
68
69 /**
70  *  Check to see if the input is valid for java.lang.Integer. If it is
71  *  not valid, throw INVALID_JAVA_INTEGER_VALUE.  If input is valid,
72  *  return Number( v )
73  *
74  */
75
76 function newJavaInteger( v ) {
77   value = Number( v );
78   if ( Math.floor(value) != value || isNaN(value) ) {
79     throw ( INVALID_JAVA_INTEGER_VALUE );
80   } else {
81     return value;
82   }
83 }
84
85 /**
86  *  Call newJavaInteger( value ) from within a try block.  Catch any
87  *  exception, and store it in result.  Verify that we got the right
88  *  return value from newJavaInteger in cases in which we do not expect
89  *  exceptions, and that we got the exception in cases where an exception
90  *  was expected.
91  */
92 function TryNewJavaInteger( value, expect ) {
93   var finalTest = false;
94
95   try {
96     result = newJavaInteger( value );
97   } catch ( e ) {
98     result = String( e );
99   } finally {
100     finalTest = true;
101   }
102   new TestCase(
103     SECTION,
104     "newJavaValue( " + value +" )",
105     expect,
106     result);
107
108   new TestCase(
109     SECTION,
110     "newJavaValue( " + value +" ) hit finally block",
111     true,
112     finalTest);
113
114 }
115