vm/src/test/java/org/apidesign/vm4brwsr/VMinVMTest.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Fri, 07 Dec 2012 10:09:50 +0100
branchlazyvm
changeset 279 ee34358037b3
parent 248 0bfcb6585290
child 302 af9c8df8a660
permissions -rw-r--r--
Using calling convention with bck2brwsr
     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 java.io.File;
    21 import java.io.FileWriter;
    22 import java.io.IOException;
    23 import java.io.InputStream;
    24 import static org.testng.Assert.*;
    25 import javax.script.Invocable;
    26 import org.testng.annotations.BeforeClass;
    27 import org.testng.annotations.Test;
    28 
    29 /**
    30  *
    31  * @author Jaroslav Tulach <jtulach@netbeans.org>
    32  */
    33 public class VMinVMTest {
    34 
    35     private static CharSequence codeSeq;
    36     private static Invocable code;
    37     
    38     @Test public void compareTheGeneratedCode() throws Exception {
    39         byte[] arr = readClass("/org/apidesign/vm4brwsr/Array.class");
    40         String ret1 = VMinVM.toJavaScript(arr);
    41         
    42         Object ret;
    43         try {
    44             ret = code.invokeFunction("bck2brwsr");
    45             ret = code.invokeMethod(ret, "loadClass", VMinVM.class.getName());
    46             ret = code.invokeMethod(ret, "toJavaScript__Ljava_lang_String_2_3B", arr);
    47         } catch (Exception ex) {
    48             File f = File.createTempFile("execution", ".js");
    49             FileWriter w = new FileWriter(f);
    50             w.append("var byteCode = [\n  ");
    51             String sep = "";
    52             for (int i = 0; i < arr.length; i++) {
    53                 w.append(sep).append(Integer.toString((arr[i] + 256) % 256));
    54                 sep = ", ";
    55                 if (i % 20 == 0) {
    56                     w.append("\n  ");
    57                 }
    58             }
    59             w.append("\n];\n");
    60             w.append(codeSeq);
    61             w.close();
    62             throw new Exception(ex.getMessage() + " file: " + f, ex);
    63         }
    64 
    65         
    66         assertTrue(ret instanceof String, "It is string: " + ret);
    67         
    68         assertEquals((String)ret, ret1.toString(), "The code is the same");
    69     }
    70     
    71     @BeforeClass
    72     public void compileTheCode() throws Exception {
    73         StringBuilder sb = new StringBuilder();
    74         code = StaticMethodTest.compileClass(sb, 
    75             "org/apidesign/vm4brwsr/VMinVM"
    76         );
    77         codeSeq = sb;
    78     }
    79     
    80     private static byte[] readClass(String res) throws IOException {
    81         InputStream is1 = VMinVMTest.class.getResourceAsStream(res);
    82         assertNotNull(is1, "Stream found");
    83         byte[] arr = new byte[is1.available()];
    84         int len = is1.read(arr);
    85         is1.close();
    86         if (len != arr.length) {
    87             throw new IOException("Wrong len " + len + " for arr: " + arr.length);
    88         }
    89         return arr;
    90     }
    91 }