rt/vm/src/test/java/org/apidesign/vm4brwsr/TestVM.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Wed, 28 May 2014 14:35:21 +0200
branchclosure
changeset 1611 d0df418a5993
parent 1610 a6f807104d8e
child 1645 0101d10bd2e0
permissions -rw-r--r--
External classes are treated as exported.
     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.ByteArrayInputStream;
    21 import java.io.File;
    22 import java.io.FileWriter;
    23 import java.io.IOException;
    24 import java.io.InputStream;
    25 import java.net.URL;
    26 import java.util.ArrayList;
    27 import java.util.Arrays;
    28 import java.util.Enumeration;
    29 import java.util.HashSet;
    30 import java.util.List;
    31 import java.util.Set;
    32 import javax.script.Invocable;
    33 import javax.script.ScriptContext;
    34 import javax.script.ScriptEngine;
    35 import javax.script.ScriptEngineManager;
    36 import javax.script.ScriptException;
    37 import static org.testng.Assert.*;
    38 
    39 public final class TestVM {
    40     private final Invocable code;
    41     private final CharSequence codeSeq;
    42     private final Object bck2brwsr;
    43     private BytesLoader resources;
    44     
    45     
    46     private TestVM(Invocable code, CharSequence codeSeq) throws ScriptException, NoSuchMethodException {
    47         this.code = code;
    48         this.codeSeq = codeSeq;
    49         this.bck2brwsr = ((ScriptEngine)code).eval("bck2brwsr(function(n) { return loader.get(n); })");
    50         ((ScriptEngine)code).getContext().setAttribute("loader", this, ScriptContext.ENGINE_SCOPE);
    51     }
    52     
    53     public void register(BytesLoader res) {
    54         this.resources = res;
    55     }
    56     
    57     public byte[] get(String res) throws IOException {
    58         return resources != null ? resources.get(res) : null;
    59     }
    60 
    61     public Object execCode(
    62         String msg, Class<?> clazz, String method, 
    63         Object expRes, Object... args
    64     ) throws Exception {
    65         Object ret = null;
    66         try {
    67             ret = code.invokeMethod(bck2brwsr, "loadClass", clazz.getName());
    68             List<Object> ma = new ArrayList<>();
    69             ma.add(method);
    70             ma.addAll(Arrays.asList(args));
    71             ret = code.invokeMethod(ret, "invoke", ma.toArray());
    72         } catch (ScriptException ex) {
    73             fail("Execution failed in " + dumpJS(codeSeq) + ": " + ex.getMessage(), ex);
    74         } catch (NoSuchMethodException ex) {
    75             fail("Cannot find method in " + dumpJS(codeSeq), ex);
    76         }
    77         if (ret == null && expRes == null) {
    78             return null;
    79         }
    80         if (expRes != null && expRes.equals(ret)) {
    81             return null;
    82         }
    83         if (expRes instanceof Number) {
    84             // in case of Long it is necessary convert it to number
    85             // since the Long is represented by two numbers in JavaScript
    86             try {
    87                 final Object toFP = ((ScriptEngine)code).eval("Number.prototype.toFP");
    88                 if (ret instanceof Long) {
    89                     ret = code.invokeMethod(toFP, "call", ret);
    90                 }
    91                 ret = code.invokeFunction("Number", ret);
    92             } catch (ScriptException ex) {
    93                 fail("Conversion to number failed in " + dumpJS(codeSeq) + ": " + ex.getMessage(), ex);
    94             } catch (NoSuchMethodException ex) {
    95                 fail("Cannot find global Number(x) function in " + dumpJS(codeSeq) + ": " + ex.getMessage(), ex);
    96             }
    97         }
    98         return ret;
    99     }
   100     
   101     void assertExec(
   102         String msg, Class clazz, String method, Object expRes, Object... args
   103     ) throws Exception {
   104         Object ret = execCode(msg, clazz, method, expRes, args);
   105         if (ret == null) {
   106             return;
   107         }
   108         if (expRes instanceof Integer && ret instanceof Double) {
   109             expRes = ((Integer)expRes).doubleValue();
   110         }
   111         if (expRes != null && expRes.equals(ret)) {
   112             return;
   113         }
   114         assertEquals(ret, expRes, msg + "was: " + ret + "\n" + dumpJS(codeSeq));
   115     }    
   116 
   117     static TestVM compileClass(String... names) throws ScriptException, IOException {
   118         return compileClass(null, names);
   119     }
   120     
   121     static TestVM compileClass(StringBuilder sb, String... names) throws ScriptException, IOException {
   122         return compileClass(sb, null, names);
   123     }
   124 
   125     static TestVM compileClass(StringBuilder sb, ScriptEngine[] eng, String... names) throws ScriptException, IOException {
   126         if (sb == null) {
   127             sb = new StringBuilder();
   128         }
   129         Bck2Brwsr.generate(sb, new EmulationResources(), names);
   130         ScriptEngineManager sem = new ScriptEngineManager();
   131         ScriptEngine js = sem.getEngineByExtension("js");
   132         if (eng != null) {
   133             eng[0] = js;
   134         }
   135         try {
   136             Object res = js.eval(sb.toString());
   137             assertTrue(js instanceof Invocable, "It is invocable object: " + res);
   138             return new TestVM((Invocable) js, sb);
   139         } catch (Exception ex) {
   140             if (sb.length() > 2000) {
   141                 sb = dumpJS(sb);
   142             }
   143             fail("Could not evaluate:" + ex.getClass() + ":" + ex.getMessage() + "\n" + sb, ex);
   144             return null;
   145         }
   146     }
   147     
   148     static TestVM compileClassAsExtension(
   149         StringBuilder sb, ScriptEngine[] eng, 
   150         String name, final String resourceName, final String resourceContent
   151     ) throws ScriptException, IOException {
   152         return compileClassesAsExtension(sb, eng, resourceName, resourceContent, name);
   153     }
   154     static TestVM compileClassesAsExtension(
   155         StringBuilder sb, ScriptEngine[] eng, 
   156         final String resourceName, final String resourceContent, String... names
   157     ) throws ScriptException, IOException {
   158         if (sb == null) {
   159             sb = new StringBuilder();
   160         }
   161         if (eng[0] == null) {
   162             ScriptEngineManager sem = new ScriptEngineManager();
   163             ScriptEngine js = sem.getEngineByExtension("js");
   164             eng[0] = js;
   165             Bck2Brwsr.generate(sb, new EmulationResources());
   166         }
   167         Set<String> exp = new HashSet<String>();
   168         for (String n : names) {
   169             int last = n.lastIndexOf('/');
   170             exp.add(n.substring(0, last + 1));
   171         }
   172         Bck2Brwsr b2b = Bck2Brwsr.newCompiler().
   173             resources(new EmulationResources() {
   174                 @Override
   175                 public InputStream get(String name) throws IOException {
   176                     if (name.equals(resourceName)) {
   177                         return new ByteArrayInputStream(resourceContent.getBytes("UTF-8"));
   178                     }
   179                     return super.get(name);
   180                 }
   181             }).
   182             addClasses(names).
   183             addResources("org/apidesign/vm4brwsr/obj.js").
   184             addExported(exp.toArray(new String[0])).
   185             obfuscation(ObfuscationLevel.FULL).
   186             library();
   187         if (resourceName != null) {
   188             b2b = b2b.addResources(resourceName);
   189         }
   190         b2b.generate(sb);
   191         try {
   192             defineAtoB(eng[0]);
   193             Object res = eng[0].eval(sb.toString());
   194             assertTrue(eng[0] instanceof Invocable, "It is invocable object: " + res);
   195             return new TestVM((Invocable) eng[0], sb);
   196         } catch (Exception ex) {
   197             if (sb.length() > 2000) {
   198                 sb = dumpJS(sb);
   199             }
   200             fail("Could not evaluate:" + ex.getClass() + ":" + ex.getMessage() + "\n" + sb, ex);
   201             return null;
   202         }
   203     }
   204     
   205     static TestVM compileClassAndResources(StringBuilder sb, ScriptEngine[] eng, String name, String... resources) throws ScriptException, IOException {
   206         if (sb == null) {
   207             sb = new StringBuilder();
   208         }
   209         Bck2Brwsr b2b = Bck2Brwsr.newCompiler().
   210             resources(new EmulationResources()).
   211             addRootClasses(name).
   212             addResources(resources);
   213         b2b.generate(sb);
   214         ScriptEngineManager sem = new ScriptEngineManager();
   215         ScriptEngine js = sem.getEngineByExtension("js");
   216         if (eng != null) {
   217             eng[0] = js;
   218         }
   219         try {
   220             defineAtoB(js);
   221             
   222             Object res = js.eval(sb.toString());
   223             assertTrue(js instanceof Invocable, "It is invocable object: " + res);
   224             return new TestVM((Invocable) js, sb);
   225         } catch (Exception ex) {
   226             if (sb.length() > 2000) {
   227                 sb = dumpJS(sb);
   228             }
   229             fail("Could not evaluate:" + ex.getClass() + ":" + ex.getMessage() + "\n" + sb, ex);
   230             return null;
   231         }
   232     }
   233 
   234     private static void defineAtoB(ScriptEngine js) throws ScriptException {
   235         js.eval("atob = function(s) { return new String(org.apidesign.vm4brwsr.ResourcesTest.parseBase64Binary(s)); }");
   236     }
   237 
   238     Object loadClass(String loadClass, String name) throws ScriptException, NoSuchMethodException {
   239         return code.invokeMethod(bck2brwsr, "loadClass", Exceptions.class.getName());
   240     }
   241     
   242     Object invokeMethod(Object obj, String method, Object... params) throws ScriptException, NoSuchMethodException {
   243         return code.invokeMethod(obj, method, params);
   244     }
   245 
   246     Object invokeFunction(String methodName, Object... args) throws ScriptException, NoSuchMethodException {
   247         return code.invokeFunction(methodName, args);
   248     }
   249 
   250     static StringBuilder dumpJS(CharSequence sb) throws IOException {
   251         File f = File.createTempFile("execution", ".js");
   252         FileWriter w = new FileWriter(f);
   253         w.append(sb);
   254         w.close();
   255         return new StringBuilder(f.getPath());
   256     }
   257 
   258     @Override
   259     public String toString() {
   260         try {
   261             return dumpJS(codeSeq).toString();
   262         } catch (IOException ex) {
   263             return ex.toString();
   264         }
   265     }
   266 
   267     final CharSequence codeSeq() {
   268         return codeSeq;
   269     }
   270     
   271     private static class EmulationResources implements Bck2Brwsr.Resources {
   272         @Override
   273         public InputStream get(String name) throws IOException {
   274             if ("java/net/URI.class".equals(name)) {
   275                 // skip
   276                 return null;
   277             }
   278             if ("java/net/URLConnection.class".equals(name)) {
   279                 // skip
   280                 return null;
   281             }
   282             if ("java/lang/System.class".equals(name)) {
   283                 // skip
   284                 return null;
   285             }
   286             Enumeration<URL> en = StaticMethodTest.class.getClassLoader().getResources(name);
   287             URL u = null;
   288             while (en.hasMoreElements()) {
   289                 u = en.nextElement();
   290             }
   291             if (u == null) {
   292                 throw new IOException("Can't find " + name);
   293             }
   294             if (u.toExternalForm().contains("rt.jar!")) {
   295                 throw new IOException("No emulation for " + u);
   296             }
   297             return u.openStream();
   298         }
   299     }
   300 }