vmtest/src/main/java/org/apidesign/bck2brwsr/vmtest/impl/Bck2BrwsrCase.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Tue, 25 Dec 2012 15:31:58 +0100
changeset 383 88ed1f51eb22
parent 382 57fc3a0563c9
child 384 269d99fd6421
permissions -rw-r--r--
One can specify list of browsers to test in via 'vmtest.brwsrs' property
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@372
    24
import org.apidesign.bck2brwsr.launcher.MethodInvocation;
jaroslav@372
    25
import org.testng.ITest;
jaroslav@372
    26
import org.testng.annotations.Test;
jaroslav@372
    27
jaroslav@372
    28
/**
jaroslav@372
    29
 *
jaroslav@372
    30
 * @author Jaroslav Tulach <jtulach@netbeans.org>
jaroslav@372
    31
 */
jaroslav@372
    32
public final class Bck2BrwsrCase implements ITest {
jaroslav@372
    33
    private final Method m;
jaroslav@383
    34
    private final LaunchSetup l;
jaroslav@383
    35
    private final String type;
jaroslav@372
    36
    Object value;
jaroslav@372
    37
    private Invocable code;
jaroslav@372
    38
    private CharSequence codeSeq;
jaroslav@372
    39
    private static final Map<Class, Object[]> compiled = new WeakHashMap<>();
jaroslav@372
    40
    private Object inst;
jaroslav@372
    41
jaroslav@383
    42
    Bck2BrwsrCase(Method m, String type, LaunchSetup l) {
jaroslav@372
    43
        this.l = l;
jaroslav@372
    44
        this.m = m;
jaroslav@372
    45
        this.type = type;
jaroslav@372
    46
    }
jaroslav@372
    47
jaroslav@372
    48
    @Test(groups = "run")
jaroslav@372
    49
    public void executeCode() throws Throwable {
jaroslav@383
    50
        if (l != null) {
jaroslav@383
    51
            MethodInvocation c = l.invokeMethod(m.getDeclaringClass(), m.getName());
jaroslav@372
    52
            value = c.toString();
jaroslav@372
    53
        } else {
jaroslav@372
    54
            value = m.invoke(m.getDeclaringClass().newInstance());
jaroslav@372
    55
        }
jaroslav@372
    56
    }
jaroslav@372
    57
jaroslav@372
    58
    @Override
jaroslav@372
    59
    public String getTestName() {
jaroslav@372
    60
        return m.getName() + "[" + typeName() + "]";
jaroslav@372
    61
    }
jaroslav@372
    62
jaroslav@372
    63
    final String typeName() {
jaroslav@383
    64
        return type;
jaroslav@372
    65
    }
jaroslav@372
    66
}