vmtest/src/main/java/org/apidesign/bck2brwsr/vmtest/impl/Bck2BrwsrCase.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Sat, 29 Dec 2012 19:42:47 +0100
changeset 393 bedc3b93a040
parent 384 269d99fd6421
child 413 c91483c86597
permissions -rw-r--r--
Dump some information about executed code
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@372
    23
import java.lang.reflect.Method;
jaroslav@372
    24
import java.util.Map;
jaroslav@372
    25
import java.util.WeakHashMap;
jaroslav@384
    26
import org.apidesign.bck2brwsr.launcher.Launcher;
jaroslav@372
    27
import org.apidesign.bck2brwsr.launcher.MethodInvocation;
jaroslav@372
    28
import org.testng.ITest;
jaroslav@372
    29
import org.testng.annotations.Test;
jaroslav@372
    30
jaroslav@372
    31
/**
jaroslav@372
    32
 *
jaroslav@372
    33
 * @author Jaroslav Tulach <jtulach@netbeans.org>
jaroslav@372
    34
 */
jaroslav@372
    35
public final class Bck2BrwsrCase implements ITest {
jaroslav@372
    36
    private final Method m;
jaroslav@384
    37
    private final Launcher l;
jaroslav@383
    38
    private final String type;
jaroslav@372
    39
    Object value;
jaroslav@372
    40
    private static final Map<Class, Object[]> compiled = new WeakHashMap<>();
jaroslav@372
    41
    private Object inst;
jaroslav@372
    42
jaroslav@384
    43
    Bck2BrwsrCase(Method m, String type, Launcher l) {
jaroslav@372
    44
        this.l = l;
jaroslav@372
    45
        this.m = m;
jaroslav@372
    46
        this.type = type;
jaroslav@372
    47
    }
jaroslav@372
    48
jaroslav@372
    49
    @Test(groups = "run")
jaroslav@372
    50
    public void executeCode() throws Throwable {
jaroslav@383
    51
        if (l != null) {
jaroslav@383
    52
            MethodInvocation c = l.invokeMethod(m.getDeclaringClass(), m.getName());
jaroslav@372
    53
            value = c.toString();
jaroslav@372
    54
        } else {
jaroslav@372
    55
            value = m.invoke(m.getDeclaringClass().newInstance());
jaroslav@372
    56
        }
jaroslav@372
    57
    }
jaroslav@372
    58
jaroslav@372
    59
    @Override
jaroslav@372
    60
    public String getTestName() {
jaroslav@372
    61
        return m.getName() + "[" + typeName() + "]";
jaroslav@372
    62
    }
jaroslav@372
    63
jaroslav@372
    64
    final String typeName() {
jaroslav@383
    65
        return type;
jaroslav@372
    66
    }
jaroslav@393
    67
    static void dumpJS(StringBuilder sb, Bck2BrwsrCase c) throws IOException {
jaroslav@393
    68
        File f = File.createTempFile(c.m.getName(), ".js");
jaroslav@393
    69
        try (final FileWriter w = new FileWriter(f)) {
jaroslav@393
    70
            w.append(c.l.toString());
jaroslav@393
    71
        }
jaroslav@393
    72
        sb.append("Path: ").append(f.getPath());
jaroslav@393
    73
    }
jaroslav@372
    74
}