vmtest/src/main/java/org/apidesign/bck2brwsr/vmtest/impl/Bck2BrwsrCase.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Tue, 25 Dec 2012 17:46:21 +0100
changeset 384 269d99fd6421
parent 383 88ed1f51eb22
child 393 bedc3b93a040
permissions -rw-r--r--
Keeping single instance of LaunchSetup
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@372
    20
import java.lang.reflect.Method;
jaroslav@372
    21
import java.util.Map;
jaroslav@372
    22
import java.util.WeakHashMap;
jaroslav@372
    23
import javax.script.Invocable;
jaroslav@384
    24
import org.apidesign.bck2brwsr.launcher.Launcher;
jaroslav@372
    25
import org.apidesign.bck2brwsr.launcher.MethodInvocation;
jaroslav@372
    26
import org.testng.ITest;
jaroslav@372
    27
import org.testng.annotations.Test;
jaroslav@372
    28
jaroslav@372
    29
/**
jaroslav@372
    30
 *
jaroslav@372
    31
 * @author Jaroslav Tulach <jtulach@netbeans.org>
jaroslav@372
    32
 */
jaroslav@372
    33
public final class Bck2BrwsrCase implements ITest {
jaroslav@372
    34
    private final Method m;
jaroslav@384
    35
    private final Launcher l;
jaroslav@383
    36
    private final String type;
jaroslav@372
    37
    Object value;
jaroslav@372
    38
    private Invocable code;
jaroslav@372
    39
    private CharSequence codeSeq;
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@372
    67
}