vmtest/src/main/java/org/apidesign/bck2brwsr/vmtest/impl/LaunchSetup.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Tue, 25 Dec 2012 15:31:58 +0100
changeset 383 88ed1f51eb22
parent 382 vmtest/src/main/java/org/apidesign/bck2brwsr/vmtest/impl/Launchers.java@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.io.IOException;
    21 import java.util.LinkedHashMap;
    22 import java.util.Map;
    23 import org.apidesign.bck2brwsr.launcher.Launcher;
    24 import org.apidesign.bck2brwsr.launcher.MethodInvocation;
    25 import org.testng.annotations.AfterGroups;
    26 import org.testng.annotations.BeforeGroups;
    27 
    28 /**
    29  *
    30  * @author Jaroslav Tulach <jtulach@netbeans.org>
    31  */
    32 public final class LaunchSetup {
    33     private static final LaunchSetup JS = new LaunchSetup(Launcher.createJavaScript());
    34     private static final Map<String,LaunchSetup> BRWSRS = new LinkedHashMap<>();
    35     
    36     private final Launcher launcher;
    37     
    38     private LaunchSetup(Launcher l) {
    39         launcher = l;
    40     }
    41     
    42     public static LaunchSetup javaScript() {
    43         return JS;
    44     } 
    45     
    46     public static synchronized LaunchSetup brwsr(String cmd) {
    47         LaunchSetup s = BRWSRS.get(cmd);
    48         if (s == null) {
    49             s = new LaunchSetup(Launcher.createBrowser(cmd));
    50             BRWSRS.put(cmd, s);
    51         }
    52         return s;
    53     }
    54 
    55     @BeforeGroups("run")
    56     public void initializeLauncher() throws IOException {
    57         launcher.initialize();
    58     }
    59 
    60     @AfterGroups("run")
    61     public void shutDownLauncher() throws IOException, InterruptedException {
    62         launcher.shutdown();
    63     }
    64 
    65     public MethodInvocation invokeMethod(Class<?> clazz, String name) throws IOException {
    66         return launcher.invokeMethod(clazz, name);
    67     }
    68 }