vm/src/test/java/org/apidesign/vm4brwsr/VMinVMTest.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Tue, 11 Dec 2012 11:05:06 +0100
branchlazyvm
changeset 303 c12342170235
parent 302 af9c8df8a660
child 334 b5dd05670bef
permissions -rw-r--r--
VM in VM properly processes class constants
     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 compareGeneratedCodeForArrayClass() throws Exception {
    39         compareCode("/org/apidesign/vm4brwsr/Array.class");
    40     }
    41 
    42     @Test public void compareGeneratedCodeForClassesClass() throws Exception {
    43         compareCode("/org/apidesign/vm4brwsr/Classes.class");
    44     }
    45     
    46     @BeforeClass
    47     public void compileTheCode() throws Exception {
    48         StringBuilder sb = new StringBuilder();
    49         code = StaticMethodTest.compileClass(sb, 
    50             "org/apidesign/vm4brwsr/VMinVM"
    51         );
    52         codeSeq = sb;
    53     }
    54     
    55     private static byte[] readClass(String res) throws IOException {
    56         InputStream is1 = VMinVMTest.class.getResourceAsStream(res);
    57         assertNotNull(is1, "Stream found");
    58         byte[] arr = new byte[is1.available()];
    59         int len = is1.read(arr);
    60         is1.close();
    61         if (len != arr.length) {
    62             throw new IOException("Wrong len " + len + " for arr: " + arr.length);
    63         }
    64         return arr;
    65     }
    66 
    67     private void compareCode(final String nm) throws Exception, IOException {
    68         byte[] arr = readClass(nm);
    69         String ret1 = VMinVM.toJavaScript(arr);
    70         
    71         Object ret;
    72         try {
    73             ret = code.invokeFunction("bck2brwsr");
    74             ret = code.invokeMethod(ret, "loadClass", VMinVM.class.getName());
    75             ret = code.invokeMethod(ret, "toJavaScript__Ljava_lang_String_2_3B", arr);
    76         } catch (Exception ex) {
    77             File f = File.createTempFile("execution", ".js");
    78             FileWriter w = new FileWriter(f);
    79             w.append("var byteCode = [\n  ");
    80             String sep = "";
    81             for (int i = 0; i < arr.length; i++) {
    82                 w.append(sep).append(Integer.toString((arr[i] + 256) % 256));
    83                 sep = ", ";
    84                 if (i % 20 == 0) {
    85                     w.append("\n  ");
    86                 }
    87             }
    88             w.append("\n];\n");
    89             w.append(codeSeq);
    90             w.close();
    91             throw new Exception(ex.getMessage() + " file: " + f, ex);
    92         }
    93 
    94         
    95         assertTrue(ret instanceof String, "It is string: " + ret);
    96         
    97         if (!ret1.toString().equals(ret)) {
    98             StringBuilder msg = new StringBuilder("Difference found between ");
    99             msg.append(StaticMethodTest.dumpJS(ret1));
   100             msg.append(" ");
   101             msg.append(StaticMethodTest.dumpJS((CharSequence) ret));
   102             msg.append(" compiled by ");
   103             msg.append(StaticMethodTest.dumpJS(codeSeq));
   104             fail(msg.toString());
   105         }
   106     }
   107 }