vm/src/test/java/org/apidesign/vm4brwsr/ExceptionsTest.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Mon, 31 Dec 2012 12:44:51 +0100
changeset 400 5452b9fbd253
parent 287 6f696a0ef12f
child 401 a9be982d9b9c
permissions -rw-r--r--
Multiple exceptions in a single method 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     private static CharSequence codeSeq;
    74     private static Invocable code;
    75     
    76     @BeforeClass 
    77     public void compileTheCode() throws Exception {
    78         StringBuilder sb = new StringBuilder();
    79         code = StaticMethodTest.compileClass(sb, 
    80             "org/apidesign/vm4brwsr/Exceptions"
    81         );
    82         codeSeq = sb;
    83     }
    84     private static void assertExec(String msg, Class clazz, String method, Object expRes, Object... args) throws Exception {
    85         StaticMethodTest.assertExec(code, codeSeq, msg, clazz, method, expRes, args);
    86     }
    87 }