vm/src/test/java/org/apidesign/vm4brwsr/ArrayTest.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Tue, 16 Oct 2012 11:55:56 +0200
changeset 104 1376481f15e7
parent 103 e8438996d406
child 106 346633cd13d6
permissions -rw-r--r--
Concatenation of strings works
     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     @Test public void doesCopyArrayWork() throws Exception {
    43         assertExec("Returns 'a'", "org_apidesign_vm4brwsr_Array_copyArrayC", Double.valueOf('a'));
    44     }
    45     
    46     private static CharSequence codeSeq;
    47     private static Invocable code;
    48     
    49     @BeforeClass 
    50     public void compileTheCode() throws Exception {
    51         StringBuilder sb = new StringBuilder();
    52         code = StaticMethodTest.compileClass(sb, 
    53             "org/apidesign/vm4brwsr/Array"
    54         );
    55         codeSeq = sb;
    56     }
    57     private static void assertExec(String msg, String methodName, Object expRes, Object... args) throws Exception {
    58         Object ret = null;
    59         try {
    60             ret = code.invokeFunction(methodName, args);
    61         } catch (ScriptException ex) {
    62             fail("Execution failed in\n" + codeSeq, ex);
    63         } catch (NoSuchMethodException ex) {
    64             fail("Cannot find method in\n" + codeSeq, ex);
    65         }
    66         if (ret == null && expRes == null) {
    67             return;
    68         }
    69         if (expRes.equals(ret)) {
    70             return;
    71         }
    72         assertEquals(ret, expRes, msg + "was: " + ret + "\n" + codeSeq);
    73     }
    74 }