rt/vm/src/test/java/org/apidesign/vm4brwsr/ExceptionsTest.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Wed, 30 Oct 2013 17:15:23 +0100
changeset 1392 da9e5973e699
parent 789 bb7506513353
child 1787 ea12a3bb4b33
permissions -rw-r--r--
Adopting to JDK8's Nashorn differences. Most tests should now pass with Nashorn now.
     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.ScriptException;
    21 import static org.testng.Assert.*;
    22 import org.testng.annotations.AfterClass;
    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 catchJavaScriptStringAsThrowable() throws Exception {
    42         assertExec(
    43             "Throw hello!",
    44             Exceptions.class,
    45             "catchThrowableCatchesAll__Ljava_lang_String_2",
    46             "Hello!"
    47         );
    48     }
    49 
    50     @Test
    51     public void verifyMethodWithTryCatchThrow() throws Exception {
    52             assertExec(
    53                     "Throw",
    54                     Exceptions.class,
    55                     "methodWithTryCatchThrow__I",
    56                     new Double(2.0));
    57     }
    58     
    59     @Test public void createObject() throws Exception {
    60         assertExec("Object created", Exceptions.class, 
    61             "newInstance__Ljava_lang_String_2Ljava_lang_String_2",
    62             "java.lang.Object",
    63             "java.lang.Object"
    64         );
    65     }
    66 
    67     @Test public void createFloatFails() throws Exception {
    68         assertExec("Float not created", Exceptions.class, 
    69             "newInstance__Ljava_lang_String_2Ljava_lang_String_2",
    70             "java.lang.Float",
    71             "java.lang.Float"
    72         );
    73     }
    74 
    75     @Test public void createUnknownFails() throws Exception {
    76         assertExec("Object created", Exceptions.class, 
    77             "newInstance__Ljava_lang_String_2Ljava_lang_String_2",
    78             "CNFE:org.apidesign.Unknown",
    79             "org.apidesign.Unknown"
    80         );
    81     }
    82     
    83     @Test public void testThreeCalls() throws Exception {
    84         Object clazz = code.loadClass("loadClass", Exceptions.class.getName());
    85         
    86         String method = "readCounter__ILjava_lang_String_2";
    87         
    88         try {
    89             Object ret = code.invokeMethod(clazz, method, "org.apidesign.Unknown");
    90             fail("We expect an CNFE!");
    91         } catch (ScriptException scriptException) {
    92             // script exception should be OK
    93         }
    94         {
    95             // 2nd invocation
    96             Object ret = code.invokeMethod(clazz, method, "java.lang.String");
    97             assertTrue(ret instanceof Number, "Is number: " + ret);
    98             assertEquals(((Number)ret).doubleValue(), 2.0);
    99         }
   100         {
   101             // 3rd invocation
   102             Object ret = code.invokeMethod(clazz, method, "java.lang.Integer");
   103             assertTrue(ret instanceof Number, "Is number: " + ret);
   104             assertEquals(((Number)ret).doubleValue(), 3.0);
   105         }
   106     }
   107     
   108     private static TestVM code;
   109     
   110     @BeforeClass 
   111     public void compileTheCode() throws Exception {
   112         code = TestVM.compileClass("org/apidesign/vm4brwsr/Exceptions");
   113     }
   114     @AfterClass
   115     public static void releaseTheCode() {
   116         code = null;
   117     }
   118     private static void assertExec(String msg, Class clazz, String method, Object expRes, Object... args) throws Exception {
   119         code.assertExec(msg, clazz, method, expRes, args);
   120     }
   121 }