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
     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.lang.reflect.Method;
    21 import java.util.Map;
    22 import java.util.WeakHashMap;
    23 import javax.script.Invocable;
    24 import org.apidesign.bck2brwsr.launcher.MethodInvocation;
    25 import org.testng.ITest;
    26 import org.testng.annotations.Test;
    27 
    28 /**
    29  *
    30  * @author Jaroslav Tulach <jtulach@netbeans.org>
    31  */
    32 public final class Bck2BrwsrCase implements ITest {
    33     private final Method m;
    34     private final LaunchSetup l;
    35     private final String type;
    36     Object value;
    37     private Invocable code;
    38     private CharSequence codeSeq;
    39     private static final Map<Class, Object[]> compiled = new WeakHashMap<>();
    40     private Object inst;
    41 
    42     Bck2BrwsrCase(Method m, String type, LaunchSetup l) {
    43         this.l = l;
    44         this.m = m;
    45         this.type = type;
    46     }
    47 
    48     @Test(groups = "run")
    49     public void executeCode() throws Throwable {
    50         if (l != null) {
    51             MethodInvocation c = l.invokeMethod(m.getDeclaringClass(), m.getName());
    52             value = c.toString();
    53         } else {
    54             value = m.invoke(m.getDeclaringClass().newInstance());
    55         }
    56     }
    57 
    58     @Override
    59     public String getTestName() {
    60         return m.getName() + "[" + typeName() + "]";
    61     }
    62 
    63     final String typeName() {
    64         return type;
    65     }
    66 }