vm/src/test/java/org/apidesign/vm4brwsr/ArrayTest.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Thu, 11 Oct 2012 10:43:17 -0700
changeset 103 e8438996d406
parent 22 b9318fe303cd
child 104 1376481f15e7
permissions -rw-r--r--
Less compilation during test execution
     1 /*
     2 Java 4 Browser Bytecode Translator
     3 Copyright (C) 2012-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 org.testng.annotations.Test;
    23 import static org.testng.Assert.*;
    24 import org.testng.annotations.BeforeClass;
    25 
    26 /**
    27  *
    28  * @author Jaroslav Tulach <jtulach@netbeans.org>
    29  */
    30 public class ArrayTest {
    31     @Test public void verifySimpleIntOperation() throws Exception {
    32             assertExec("CheckTheSum", "org_apidesign_vm4brwsr_Array_simpleI", 
    33             Double.valueOf(15)
    34         );
    35     }
    36     @Test public void verifyOperationsOnArrays() throws Exception {
    37         assertExec("The sum is 105", "org_apidesign_vm4brwsr_Array_sumD", 
    38             Double.valueOf(105)
    39         );
    40     }
    41     
    42     private static CharSequence codeSeq;
    43     private static Invocable code;
    44     
    45     @BeforeClass 
    46     public void compileTheCode() throws Exception {
    47         StringBuilder sb = new StringBuilder();
    48         code = StaticMethodTest.compileClass(sb, 
    49             "org/apidesign/vm4brwsr/Array"
    50         );
    51         codeSeq = sb;
    52     }
    53     private static void assertExec(String msg, String methodName, Object expRes, Object... args) throws Exception {
    54         Object ret = null;
    55         try {
    56             ret = code.invokeFunction(methodName, args);
    57         } catch (ScriptException ex) {
    58             fail("Execution failed in\n" + codeSeq, ex);
    59         } catch (NoSuchMethodException ex) {
    60             fail("Cannot find method in\n" + codeSeq, ex);
    61         }
    62         if (ret == null && expRes == null) {
    63             return;
    64         }
    65         if (expRes.equals(ret)) {
    66             return;
    67         }
    68         assertEquals(ret, expRes, msg + "was: " + ret + "\n" + codeSeq);
    69     }
    70 }