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