vmtest/src/main/java/org/apidesign/bck2brwsr/vmtest/impl/Launchers.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Tue, 25 Dec 2012 15:08:39 +0100
changeset 382 57fc3a0563c9
parent 380 4ce33ad7d507
permissions -rw-r--r--
Hidding the launchers behind common fasade
     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.Launcher;
    22 import org.apidesign.bck2brwsr.launcher.MethodInvocation;
    23 import org.testng.annotations.AfterGroups;
    24 import org.testng.annotations.BeforeGroups;
    25 
    26 /**
    27  *
    28  * @author Jaroslav Tulach <jtulach@netbeans.org>
    29  */
    30 public final class Launchers {
    31     public static final Launchers INSTANCE = new Launchers();
    32     
    33     private Launcher jsl;
    34     private Launcher brwsr;
    35     
    36     private Launchers() {
    37     }
    38 
    39     @BeforeGroups("run")
    40     public void initializeLauncher() throws IOException {
    41         jsl = Launcher.createJavaScript();
    42         jsl.initialize();
    43         Launcher l = Launcher.createBrowser("xdg-open");
    44         l.initialize();
    45         brwsr = l;
    46     }
    47 
    48     @AfterGroups("run")
    49     public void shutDownLauncher() throws IOException, InterruptedException {
    50         jsl.shutdown();
    51         brwsr.shutdown();
    52     }
    53 
    54     public MethodInvocation invokeMethod(Class<?> clazz, String name, boolean inBrwsr) throws IOException {
    55         if (!inBrwsr) {
    56             return jsl.invokeMethod(clazz, name);
    57         } else {
    58             return brwsr.invokeMethod(clazz, name);
    59         }
    60     }
    61 }