vmtest/src/main/java/org/apidesign/bck2brwsr/vmtest/impl/Launchers.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Sun, 23 Dec 2012 23:30:06 +0100
branchlauncher
changeset 372 3485327d3080
parent 371 vmtest/src/main/java/org/apidesign/bck2brwsr/vmtest/Launcher.java@bafc670aa10d
child 380 4ce33ad7d507
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.io.IOException;
    21 import org.apidesign.bck2brwsr.launcher.Bck2BrwsrLauncher;
    22 import org.apidesign.bck2brwsr.launcher.JSLauncher;
    23 import org.apidesign.bck2brwsr.launcher.MethodInvocation;
    24 import org.apidesign.vm4brwsr.Bck2Brwsr;
    25 import org.testng.annotations.AfterGroups;
    26 import org.testng.annotations.AfterSuite;
    27 import org.testng.annotations.BeforeGroups;
    28 import org.testng.annotations.BeforeSuite;
    29 
    30 /**
    31  *
    32  * @author Jaroslav Tulach <jtulach@netbeans.org>
    33  */
    34 public final class Launchers {
    35     public static final Launchers INSTANCE = new Launchers();
    36     
    37     private JSLauncher jsl;
    38     private Bck2BrwsrLauncher brwsr;
    39     
    40     private Launchers() {
    41     }
    42 
    43     @BeforeGroups("run")
    44     public void initializeLauncher() throws IOException {
    45         jsl = new JSLauncher();
    46         jsl.addClassLoader(Bck2Brwsr.class.getClassLoader());
    47         jsl.initialize();
    48         Bck2BrwsrLauncher l = new Bck2BrwsrLauncher();
    49         l.addClassLoader(Bck2Brwsr.class.getClassLoader());
    50         l.initialize();
    51         l.setTimeout(180000);
    52         brwsr = l;
    53     }
    54 
    55     @AfterGroups("run")
    56     public void shutDownLauncher() throws IOException, InterruptedException {
    57         brwsr.shutdown();
    58     }
    59 
    60     public MethodInvocation addMethod(Class<?> clazz, String name, boolean inBrwsr) throws IOException {
    61         if (!inBrwsr) {
    62             return jsl.addMethod(clazz, name);
    63         } else {
    64             return brwsr.addMethod(clazz, name);
    65         }
    66     }
    67 }