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
jaroslav@372
     1
/**
jaroslav@372
     2
 * Back 2 Browser Bytecode Translator
jaroslav@372
     3
 * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
jaroslav@372
     4
 *
jaroslav@372
     5
 * This program is free software: you can redistribute it and/or modify
jaroslav@372
     6
 * it under the terms of the GNU General Public License as published by
jaroslav@372
     7
 * the Free Software Foundation, version 2 of the License.
jaroslav@372
     8
 *
jaroslav@372
     9
 * This program is distributed in the hope that it will be useful,
jaroslav@372
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
jaroslav@372
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
jaroslav@372
    12
 * GNU General Public License for more details.
jaroslav@372
    13
 *
jaroslav@372
    14
 * You should have received a copy of the GNU General Public License
jaroslav@372
    15
 * along with this program. Look for COPYING file in the top folder.
jaroslav@372
    16
 * If not, see http://opensource.org/licenses/GPL-2.0.
jaroslav@372
    17
 */
jaroslav@372
    18
package org.apidesign.bck2brwsr.vmtest.impl;
jaroslav@372
    19
jaroslav@393
    20
import java.io.File;
jaroslav@393
    21
import java.io.FileWriter;
jaroslav@393
    22
import java.io.IOException;
jaroslav@518
    23
import java.lang.reflect.Constructor;
jaroslav@413
    24
import java.lang.reflect.InvocationTargetException;
jaroslav@372
    25
import java.lang.reflect.Method;
jaroslav@384
    26
import org.apidesign.bck2brwsr.launcher.Launcher;
jaroslav@622
    27
import org.apidesign.bck2brwsr.launcher.InvocationContext;
jaroslav@623
    28
import org.apidesign.bck2brwsr.vmtest.HtmlFragment;
jaroslav@623
    29
import org.apidesign.bck2brwsr.vmtest.HttpResource;
jaroslav@372
    30
import org.testng.ITest;
jaroslav@372
    31
import org.testng.annotations.Test;
jaroslav@372
    32
jaroslav@372
    33
/**
jaroslav@372
    34
 *
jaroslav@372
    35
 * @author Jaroslav Tulach <jtulach@netbeans.org>
jaroslav@372
    36
 */
jaroslav@372
    37
public final class Bck2BrwsrCase implements ITest {
jaroslav@372
    38
    private final Method m;
jaroslav@384
    39
    private final Launcher l;
jaroslav@383
    40
    private final String type;
jaroslav@518
    41
    private final boolean fail;
jaroslav@623
    42
    private final HtmlFragment html;
jaroslav@623
    43
    private final HttpResource http;
jaroslav@372
    44
    Object value;
jaroslav@372
    45
jaroslav@623
    46
    Bck2BrwsrCase(Method m, String type, Launcher l, boolean fail, HtmlFragment html, HttpResource http) {
jaroslav@372
    47
        this.l = l;
jaroslav@372
    48
        this.m = m;
jaroslav@372
    49
        this.type = type;
jaroslav@518
    50
        this.fail = fail;
jaroslav@526
    51
        this.html = html;
jaroslav@623
    52
        this.http = http;
jaroslav@372
    53
    }
jaroslav@372
    54
jaroslav@372
    55
    @Test(groups = "run")
jaroslav@372
    56
    public void executeCode() throws Throwable {
jaroslav@383
    57
        if (l != null) {
jaroslav@622
    58
            InvocationContext c = l.createInvocation(m.getDeclaringClass(), m.getName());
jaroslav@622
    59
            if (html != null) {
jaroslav@623
    60
                c.setHtmlFragment(html.value());
jaroslav@623
    61
            }
jaroslav@623
    62
            if (http != null) {
jaroslav@623
    63
                c.setHttpResource(http.path(), http.mimeType(), http.content());
jaroslav@622
    64
            }
jaroslav@622
    65
            String res = c.invoke();
jaroslav@518
    66
            value = res;
jaroslav@518
    67
            if (fail) {
jaroslav@518
    68
                int idx = res.indexOf(':');
jaroslav@518
    69
                if (idx >= 0) {
jaroslav@518
    70
                    Class<? extends Throwable> thrwbl = null;
jaroslav@518
    71
                    try {
jaroslav@518
    72
                        Class<?> exCls = Class.forName(res.substring(0, idx));
jaroslav@518
    73
                        if (Throwable.class.isAssignableFrom(exCls)) {
jaroslav@518
    74
                            thrwbl = exCls.asSubclass(Throwable.class);
jaroslav@518
    75
                        }
jaroslav@518
    76
                    } catch (Exception ex) {
jaroslav@518
    77
                        // ignore
jaroslav@518
    78
                    }
jaroslav@518
    79
                    if (thrwbl != null) {
jaroslav@518
    80
                        Throwable t = null;
jaroslav@518
    81
                        try {
jaroslav@518
    82
                            for (Constructor<?> cnstr : thrwbl.getConstructors()) {
jaroslav@518
    83
                                if (cnstr.getParameterTypes().length == 1 && cnstr.getParameterTypes()[0].isAssignableFrom(String.class)) {
jaroslav@518
    84
                                    t = (Throwable) cnstr.newInstance(res.substring(idx + 1));
jaroslav@518
    85
                                    break;
jaroslav@518
    86
                                }
jaroslav@518
    87
                            }
jaroslav@518
    88
                        } catch (Throwable ex) {
jaroslav@518
    89
                            t = thrwbl.newInstance().initCause(ex);
jaroslav@518
    90
                        }
jaroslav@518
    91
                        if (t == null) {
jaroslav@518
    92
                            t = thrwbl.newInstance().initCause(new Exception(res.substring(idx)));
jaroslav@518
    93
                        }
jaroslav@518
    94
                        throw t;
jaroslav@518
    95
                    }
jaroslav@518
    96
                    throw new AssertionError(res);
jaroslav@518
    97
                }
jaroslav@518
    98
            }
jaroslav@372
    99
        } else {
jaroslav@413
   100
            try {
jaroslav@413
   101
                value = m.invoke(m.getDeclaringClass().newInstance());
jaroslav@413
   102
            } catch (InvocationTargetException ex) {
jaroslav@413
   103
                Throwable t = ex.getTargetException();
jaroslav@413
   104
                value = t.getClass().getName() + ":" + t.getMessage();
jaroslav@413
   105
            }
jaroslav@372
   106
        }
jaroslav@372
   107
    }
jaroslav@372
   108
jaroslav@372
   109
    @Override
jaroslav@372
   110
    public String getTestName() {
jaroslav@372
   111
        return m.getName() + "[" + typeName() + "]";
jaroslav@372
   112
    }
jaroslav@372
   113
jaroslav@372
   114
    final String typeName() {
jaroslav@383
   115
        return type;
jaroslav@372
   116
    }
jaroslav@393
   117
    static void dumpJS(StringBuilder sb, Bck2BrwsrCase c) throws IOException {
jaroslav@393
   118
        File f = File.createTempFile(c.m.getName(), ".js");
jaroslav@393
   119
        try (final FileWriter w = new FileWriter(f)) {
jaroslav@393
   120
            w.append(c.l.toString());
jaroslav@393
   121
        }
jaroslav@393
   122
        sb.append("Path: ").append(f.getPath());
jaroslav@393
   123
    }
jaroslav@372
   124
}