Search in sources :

Example 1 with Plugin

use of com.google.jstestdriver.Plugin in project intellij-plugins by JetBrains.

the class JstdConfigParsingUtils method wipeCoveragePlugin.

/**
   * Wiping coverage section in a configuration file makes sense because:
   * <ul>
   *   <li>running tests without coverage (via Shift+F10) doesn't handle coverage output</li>
   *   <li>running tests with coverage has its own special configuration</li>
   * </ul>
   * @param configuration
   */
public static void wipeCoveragePlugin(@NotNull ParsedConfiguration configuration) {
    ManifestLoader manifestLoader = new ManifestLoader();
    Iterator<Plugin> iterator = configuration.getPlugins().iterator();
    while (iterator.hasNext()) {
        Plugin plugin = iterator.next();
        if (isCoveragePlugin(plugin, manifestLoader)) {
            iterator.remove();
        }
    }
}
Also used : ManifestLoader(com.google.jstestdriver.util.ManifestLoader) Plugin(com.google.jstestdriver.Plugin)

Example 2 with Plugin

use of com.google.jstestdriver.Plugin in project intellij-plugins by JetBrains.

the class JstdServerMain method main.

public static void main(String[] args) {
    shutdownIfOrphan();
    try {
        // pre-parse parsing... These are the flags
        // that must be dealt with before we parse the flags.
        CmdLineFlags cmdLineFlags = new CmdLineFlagsFactory().create(args);
        List<Plugin> cmdLinePlugins = cmdLineFlags.getPlugins();
        // configure logging before we start seriously processing.
        LogManager.getLogManager().readConfiguration(cmdLineFlags.getRunnerMode().getLogConfig());
        final PluginLoader pluginLoader = new PluginLoader();
        // load all the command line plugins.
        final List<Module> pluginModules = pluginLoader.load(cmdLinePlugins);
        logger.log(Level.INFO, "loaded plugins {0}", pluginModules);
        JsTestDriverBuilder builder = new JsTestDriverBuilder();
        BasePaths basePath = cmdLineFlags.getBasePath();
        builder.addBasePaths(basePath);
        builder.setDefaultConfiguration(new DefaultConfiguration(basePath));
        builder.setConfigurationSource(cmdLineFlags.getConfigurationSource());
        builder.addPluginModules(pluginModules);
        builder.withPluginInitializer(TestResultPrintingModule.TestResultPrintingInitializer.class);
        builder.setRunnerMode(cmdLineFlags.getRunnerMode());
        builder.setFlags(cmdLineFlags.getUnusedFlagsAsArgs());
        builder.addServerListener(new JstdIntellijServerListener());
        JsTestDriver jstd = builder.build();
        jstd.runConfiguration();
        logger.info("Finished action run.");
    } catch (InvalidFlagException e) {
        e.printErrorMessages(System.out);
        CmdLineFlags.printUsage(System.out);
        System.exit(1);
    } catch (UnreadableFilesException e) {
        System.out.println("Configuration Error: \n" + e.getMessage());
        e.printStackTrace();
        System.exit(1);
    } catch (ConfigurationException e) {
        System.out.println("Configuration Error: \n" + e.getMessage());
        e.printStackTrace();
        System.exit(1);
    } catch (RetryException e) {
        System.out.println("Tests failed due to unexpected environment issue: " + e.getCause().getMessage());
        System.exit(1);
    } catch (FailureException e) {
        System.out.println("Tests failed: " + e.getMessage());
        System.exit(1);
    } catch (BrowserPanicException e) {
        System.out.println("Test run failed due to unresponsive browser: " + e);
        System.exit(1);
    } catch (Exception e) {
        e.printStackTrace();
        System.out.println("Unexpected Runner Condition: " + e.getMessage() + "\n Use --runnerMode DEBUG for more information.");
        System.exit(1);
    }
}
Also used : BrowserPanicException(com.google.jstestdriver.browser.BrowserPanicException) JsTestDriver(com.google.jstestdriver.JsTestDriver) BasePaths(com.google.jstestdriver.model.BasePaths) TestResultPrintingModule(com.google.jstestdriver.guice.TestResultPrintingModule) RetryException(com.google.jstestdriver.util.RetryException) JsTestDriverBuilder(com.google.jstestdriver.embedded.JsTestDriverBuilder) FailureException(com.google.jstestdriver.FailureException) BrowserPanicException(com.google.jstestdriver.browser.BrowserPanicException) IOException(java.io.IOException) FailureException(com.google.jstestdriver.FailureException) RetryException(com.google.jstestdriver.util.RetryException) Module(com.google.inject.Module) TestResultPrintingModule(com.google.jstestdriver.guice.TestResultPrintingModule) PluginLoader(com.google.jstestdriver.PluginLoader) Plugin(com.google.jstestdriver.Plugin)

Aggregations

Plugin (com.google.jstestdriver.Plugin)2 Module (com.google.inject.Module)1 FailureException (com.google.jstestdriver.FailureException)1 JsTestDriver (com.google.jstestdriver.JsTestDriver)1 PluginLoader (com.google.jstestdriver.PluginLoader)1 BrowserPanicException (com.google.jstestdriver.browser.BrowserPanicException)1 JsTestDriverBuilder (com.google.jstestdriver.embedded.JsTestDriverBuilder)1 TestResultPrintingModule (com.google.jstestdriver.guice.TestResultPrintingModule)1 BasePaths (com.google.jstestdriver.model.BasePaths)1 ManifestLoader (com.google.jstestdriver.util.ManifestLoader)1 RetryException (com.google.jstestdriver.util.RetryException)1 IOException (java.io.IOException)1