vm/src/test/java/org/apidesign/vm4brwsr/ExceptionsTest.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Mon, 31 Dec 2012 17:50:27 +0100
changeset 401 a9be982d9b9c
parent 400 5452b9fbd253
child 405 e41809be6106
child 423 9b5868bf56ec
permissions -rw-r--r--
Finally block is supported
     1 /**
     2  * Back 2 Browser Bytecode Translator
     3  * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
     4  *
     5  * This program is free software: you can redistribute it and/or modify
     6  * it under the terms of the GNU General Public License as published by
     7  * the Free Software Foundation, version 2 of the License.
     8  *
     9  * This program is distributed in the hope that it will be useful,
    10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    12  * GNU General Public License for more details.
    13  *
    14  * You should have received a copy of the GNU General Public License
    15  * along with this program. Look for COPYING file in the top folder.
    16  * If not, see http://opensource.org/licenses/GPL-2.0.
    17  */
    18 package org.apidesign.vm4brwsr;
    19 
    20 import javax.script.Invocable;
    21 import javax.script.ScriptException;
    22 import static org.testng.Assert.*;
    23 import org.testng.annotations.BeforeClass;
    24 import org.testng.annotations.Test;
    25 
    26 /**
    27  *
    28  * @author Tomas Zezula <tzezula@netbeans.org>
    29  */
    30 public class ExceptionsTest {
    31     @Test
    32     public void verifyMethodWithTryCatchNoThrow() throws Exception {
    33             assertExec(
    34                     "No throw",
    35                     Exceptions.class,
    36                     "methodWithTryCatchNoThrow__I",
    37                     new Double(1.0));
    38     }
    39 
    40     @Test
    41     public void verifyMethodWithTryCatchThrow() throws Exception {
    42             assertExec(
    43                     "Throw",
    44                     Exceptions.class,
    45                     "methodWithTryCatchThrow__I",
    46                     new Double(2.0));
    47     }
    48     
    49     @Test public void createObject() throws Exception {
    50         assertExec("Object created", Exceptions.class, 
    51             "newInstance__Ljava_lang_String_2Ljava_lang_String_2",
    52             "java.lang.Object",
    53             "java.lang.Object"
    54         );
    55     }
    56 
    57     @Test public void createFloatFails() throws Exception {
    58         assertExec("Float not created", Exceptions.class, 
    59             "newInstance__Ljava_lang_String_2Ljava_lang_String_2",
    60             "java.lang.Float",
    61             "java.lang.Float"
    62         );
    63     }
    64 
    65     @Test public void createUnknownFails() throws Exception {
    66         assertExec("Object created", Exceptions.class, 
    67             "newInstance__Ljava_lang_String_2Ljava_lang_String_2",
    68             "CNFE:org.apidesign.Unknown",
    69             "org.apidesign.Unknown"
    70         );
    71     }
    72     
    73     @Test public void testThreeCalls() throws Exception {
    74         Object vm = code.invokeFunction("bck2brwsr");
    75         Object clazz = code.invokeMethod(vm, "loadClass", Exceptions.class.getName());
    76         
    77         String method = "readCounter__ILjava_lang_String_2";
    78         
    79         try {
    80             Object ret = code.invokeMethod(clazz, method, "org.apidesign.Unknown");
    81             fail("We expect an CNFE!");
    82         } catch (ScriptException scriptException) {
    83             // script exception should be OK
    84         }
    85         {
    86             // 2nd invocation
    87             Object ret = code.invokeMethod(clazz, method, "java.lang.String");
    88             assertEquals(ret, Double.valueOf(2));
    89         }
    90         {
    91             // 3rd invocation
    92             Object ret = code.invokeMethod(clazz, method, "java.lang.Integer");
    93             assertEquals(ret, Double.valueOf(3));
    94         }
    95     }
    96     
    97     private static CharSequence codeSeq;
    98     private static Invocable code;
    99     
   100     @BeforeClass 
   101     public void compileTheCode() throws Exception {
   102         StringBuilder sb = new StringBuilder();
   103         code = StaticMethodTest.compileClass(sb, 
   104             "org/apidesign/vm4brwsr/Exceptions"
   105         );
   106         codeSeq = sb;
   107     }
   108     private static void assertExec(String msg, Class clazz, String method, Object expRes, Object... args) throws Exception {
   109         StaticMethodTest.assertExec(code, codeSeq, msg, clazz, method, expRes, args);
   110     }
   111 }