vmtest/src/main/java/org/apidesign/bck2brwsr/vmtest/impl/Bck2BrwsrCase.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Tue, 22 Jan 2013 11:59:25 +0100
changeset 518 5df0a239ebeb
parent 413 c91483c86597
child 526 a0d8b5ab79a2
permissions -rw-r--r--
@BrwsrTest to execute tests directly in browser
     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.bck2brwsr.vmtest.impl;
    19 
    20 import java.io.File;
    21 import java.io.FileWriter;
    22 import java.io.IOException;
    23 import java.lang.reflect.Constructor;
    24 import java.lang.reflect.InvocationTargetException;
    25 import java.lang.reflect.Method;
    26 import java.util.Map;
    27 import java.util.WeakHashMap;
    28 import org.apidesign.bck2brwsr.launcher.Launcher;
    29 import org.apidesign.bck2brwsr.launcher.MethodInvocation;
    30 import org.testng.ITest;
    31 import org.testng.annotations.Test;
    32 
    33 /**
    34  *
    35  * @author Jaroslav Tulach <jtulach@netbeans.org>
    36  */
    37 public final class Bck2BrwsrCase implements ITest {
    38     private final Method m;
    39     private final Launcher l;
    40     private final String type;
    41     private final boolean fail;
    42     Object value;
    43     private static final Map<Class, Object[]> compiled = new WeakHashMap<>();
    44     private Object inst;
    45 
    46     Bck2BrwsrCase(Method m, String type, Launcher l, boolean fail) {
    47         this.l = l;
    48         this.m = m;
    49         this.type = type;
    50         this.fail = fail;
    51     }
    52 
    53     @Test(groups = "run")
    54     public void executeCode() throws Throwable {
    55         if (l != null) {
    56             MethodInvocation c = l.invokeMethod(m.getDeclaringClass(), m.getName());
    57             String res = c.toString();
    58             value = res;
    59             if (fail) {
    60                 int idx = res.indexOf(':');
    61                 if (idx >= 0) {
    62                     Class<? extends Throwable> thrwbl = null;
    63                     try {
    64                         Class<?> exCls = Class.forName(res.substring(0, idx));
    65                         if (Throwable.class.isAssignableFrom(exCls)) {
    66                             thrwbl = exCls.asSubclass(Throwable.class);
    67                         }
    68                     } catch (Exception ex) {
    69                         // ignore
    70                     }
    71                     if (thrwbl != null) {
    72                         Throwable t = null;
    73                         try {
    74                             for (Constructor<?> cnstr : thrwbl.getConstructors()) {
    75                                 if (cnstr.getParameterTypes().length == 1 && cnstr.getParameterTypes()[0].isAssignableFrom(String.class)) {
    76                                     t = (Throwable) cnstr.newInstance(res.substring(idx + 1));
    77                                     break;
    78                                 }
    79                             }
    80                         } catch (Throwable ex) {
    81                             t = thrwbl.newInstance().initCause(ex);
    82                         }
    83                         if (t == null) {
    84                             t = thrwbl.newInstance().initCause(new Exception(res.substring(idx)));
    85                         }
    86                         throw t;
    87                     }
    88                     throw new AssertionError(res);
    89                 }
    90             }
    91         } else {
    92             try {
    93                 value = m.invoke(m.getDeclaringClass().newInstance());
    94             } catch (InvocationTargetException ex) {
    95                 Throwable t = ex.getTargetException();
    96                 value = t.getClass().getName() + ":" + t.getMessage();
    97             }
    98         }
    99     }
   100 
   101     @Override
   102     public String getTestName() {
   103         return m.getName() + "[" + typeName() + "]";
   104     }
   105 
   106     final String typeName() {
   107         return type;
   108     }
   109     static void dumpJS(StringBuilder sb, Bck2BrwsrCase c) throws IOException {
   110         File f = File.createTempFile(c.m.getName(), ".js");
   111         try (final FileWriter w = new FileWriter(f)) {
   112             w.append(c.l.toString());
   113         }
   114         sb.append("Path: ").append(f.getPath());
   115     }
   116 }