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