vmtest/src/main/java/org/apidesign/bck2brwsr/vmtest/impl/Bck2BrwsrCase.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Sun, 23 Dec 2012 23:30:06 +0100
branchlauncher
changeset 372 3485327d3080
child 382 57fc3a0563c9
permissions -rw-r--r--
Execution time reported by TestNG reflect the time it took to run the query inside of a browser
     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 Launchers l;
    35     private final int 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, int type, Launchers 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 (type == 1) {
    51             MethodInvocation c = l.addMethod(m.getDeclaringClass(), m.getName(), false);
    52             value = c.toString();
    53         } else if (type == 2) {
    54             MethodInvocation c = l.addMethod(m.getDeclaringClass(), m.getName(), true);
    55             value = c.toString();
    56         } else {
    57             value = m.invoke(m.getDeclaringClass().newInstance());
    58         }
    59     }
    60 
    61     @Override
    62     public String getTestName() {
    63         return m.getName() + "[" + typeName() + "]";
    64     }
    65 
    66     final String typeName() {
    67         switch (type) {
    68             case 0:
    69                 return "Java";
    70             case 1:
    71                 return "JavaScript";
    72             case 2:
    73                 return "Browser";
    74             default:
    75                 return "Unknown type " + type;
    76         }
    77     }
    78 
    79     private static String computeSignature(Method m) {
    80         StringBuilder sb = new StringBuilder();
    81         appendType(sb, m.getReturnType());
    82         for (Class<?> c : m.getParameterTypes()) {
    83             appendType(sb, c);
    84         }
    85         return sb.toString();
    86     }
    87 
    88     private static void appendType(StringBuilder sb, Class<?> t) {
    89         if (t == null) {
    90             sb.append('V');
    91             return;
    92         }
    93         if (t.isPrimitive()) {
    94             int ch = -1;
    95             if (t == int.class) {
    96                 ch = 'I';
    97             }
    98             if (t == short.class) {
    99                 ch = 'S';
   100             }
   101             if (t == byte.class) {
   102                 ch = 'B';
   103             }
   104             if (t == boolean.class) {
   105                 ch = 'Z';
   106             }
   107             if (t == long.class) {
   108                 ch = 'J';
   109             }
   110             if (t == float.class) {
   111                 ch = 'F';
   112             }
   113             if (t == double.class) {
   114                 ch = 'D';
   115             }
   116             assert ch != -1 : "Unknown primitive type " + t;
   117             sb.append((char) ch);
   118             return;
   119         }
   120         if (t.isArray()) {
   121             sb.append("_3");
   122             appendType(sb, t.getComponentType());
   123             return;
   124         }
   125         sb.append('L');
   126         sb.append(t.getName().replace('.', '_'));
   127         sb.append("_2");
   128     }
   129     
   130 }