vm/src/test/java/org/apidesign/vm4brwsr/ArrayTest.java
author Jaroslav Tulach <jtulach@netbeans.org>
Tue, 30 Oct 2012 22:22:18 +0100
changeset 128 8db5cf267d74
parent 106 346633cd13d6
child 131 dbfbcd718146
permissions -rw-r--r--
Implementation of multianewarray bytecode instruction
     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 /*
    19 Java 4 Browser Bytecode Translator
    20 Copyright (C) 2012-2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
    21 
    22 This program is free software: you can redistribute it and/or modify
    23 it under the terms of the GNU General Public License as published by
    24 the Free Software Foundation, version 2 of the License.
    25 
    26 This program is distributed in the hope that it will be useful,
    27 but WITHOUT ANY WARRANTY; without even the implied warranty of
    28 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    29 GNU General Public License for more details.
    30 
    31 You should have received a copy of the GNU General Public License
    32 along with this program. Look for COPYING file in the top folder.
    33 If not, see http://opensource.org/licenses/GPL-2.0.
    34 */
    35 package org.apidesign.vm4brwsr;
    36 
    37 import javax.script.Invocable;
    38 import javax.script.ScriptException;
    39 import static org.testng.Assert.*;
    40 import org.testng.annotations.BeforeClass;
    41 import org.testng.annotations.Test;
    42 
    43 /**
    44  *
    45  * @author Jaroslav Tulach <jtulach@netbeans.org>
    46  */
    47 public class ArrayTest {
    48     @Test public void verifySimpleIntOperation() throws Exception {
    49             assertExec("CheckTheSum", "org_apidesign_vm4brwsr_Array_simpleI", 
    50             Double.valueOf(15)
    51         );
    52     }
    53     
    54     @Test public void realOperationOnArrays() throws Exception {
    55         assertEquals(Array.sum(), 105.0, "Computes to 105");
    56     }
    57     
    58     @Test public void verifyOperationsOnArrays() throws Exception {
    59         assertExec("The sum is 105", "org_apidesign_vm4brwsr_Array_sumD", 
    60             Double.valueOf(105)
    61         );
    62     }
    63     
    64     @Test public void doesCopyArrayWork() throws Exception {
    65         assertExec("Returns 'a'", "org_apidesign_vm4brwsr_Array_copyArrayC", Double.valueOf('a'));
    66     }
    67     
    68     private static CharSequence codeSeq;
    69     private static Invocable code;
    70     
    71     @BeforeClass 
    72     public void compileTheCode() throws Exception {
    73         StringBuilder sb = new StringBuilder();
    74         code = StaticMethodTest.compileClass(sb, 
    75             "org/apidesign/vm4brwsr/Array"
    76         );
    77         codeSeq = sb;
    78     }
    79     private static void assertExec(String msg, String methodName, Object expRes, Object... args) throws Exception {
    80         Object ret = null;
    81         try {
    82             ret = code.invokeFunction(methodName, args);
    83         } catch (ScriptException ex) {
    84             fail("Execution failed in\n" + codeSeq, ex);
    85         } catch (NoSuchMethodException ex) {
    86             fail("Cannot find method in\n" + codeSeq, ex);
    87         }
    88         if (ret == null && expRes == null) {
    89             return;
    90         }
    91         if (expRes.equals(ret)) {
    92             return;
    93         }
    94         assertEquals(ret, expRes, msg + "was: " + ret + "\n" + codeSeq);
    95     }
    96 }