Examples of execute()


Examples of org.sonar.api.utils.command.CommandExecutor.execute()

    fs.add(inputFile);

    BlameOutput result = mock(BlameOutput.class);
    CommandExecutor commandExecutor = mock(CommandExecutor.class);

    when(commandExecutor.execute(any(Command.class), any(StreamConsumer.class), any(StreamConsumer.class), anyLong())).thenAnswer(new Answer<Integer>() {

      @Override
      public Integer answer(InvocationOnMock invocation) throws Throwable {
        StreamConsumer outConsumer = (StreamConsumer) invocation.getArguments()[1];
        List<String> lines = IOUtils.readLines(getClass().getResourceAsStream("/blame.xml"), "UTF-8");
View Full Code Here

Examples of org.sonar.batch.scan.ProjectReactorBuilder.execute()

    if (bootstrapper == null
      // Starting from Maven plugin 2.3 then only DefaultProjectBootstrapper should be used.
      || "true".equals(settings.getString("sonar.mojoUseRunner"))) {
      // Use default SonarRunner project bootstrapper
      ProjectReactorBuilder builder = getComponentByType(ProjectReactorBuilder.class);
      reactor = builder.execute();
    } else {
      reactor = bootstrapper.bootstrap();
    }
    if (reactor == null) {
      throw new IllegalStateException(bootstrapper + " has returned null as ProjectReactor");
View Full Code Here

Examples of org.sonar.ide.intellij.worker.RefreshProjectListWorker.execute()

        final Sonar sonarConn = SonarUtils.getSonar(txtHost.getText(), txtUser.getText(), new String(txtPassword.getPassword()),
                                          useProxyBox.isSelected());
        final RefreshProjectListWorker refreshProjectListWorker = new RefreshProjectListWorker(sonarConn);
        refreshProjectListWorker.addListener(this);
        refreshProjectListWorker.execute();
    }

    @Override
    public void doneRefreshProjects(final List<SonarProject> newProjectList)
    {
View Full Code Here

Examples of org.sonar.ide.intellij.worker.RefreshRuleWorker.execute()

        if (refreshingInProgress || (rulesToolTipMap != null && rulesToolTipMap.size() != 0))
            return;
        RefreshRuleWorker refreshRuleWorker = new RefreshRuleWorker(project);
        refreshRuleWorker.addListener(this);
        refreshingInProgress = true;
        refreshRuleWorker.execute();

    }

    @Override
    public void loadingFiles(final List<VirtualFile> filesLoading) {
View Full Code Here

Examples of org.sonar.ide.intellij.worker.ResourceLookupWorker.execute()

                }

                new SonarNavigator().navigateToDashboard(sonarModuleComponent, resourceId);
            }
        });
        resourceLookupWorker.execute();

    }
}
View Full Code Here

Examples of org.sonar.runner.api.Runner.execute()

    }

    public SonarRunnerResult executeRunner(UserCredentials token, ProcessMonitor processMonitor) throws MvnModelInputException {
        Runner runner = createForProject(token, processMonitor);
        try {
            runner.execute();
        } catch (Exception ex) {
            if (wrapper.isUnauthorized()) {
                throw new AuthorizationException();
            } else {
                throw new SonarRunnerException(ex);
View Full Code Here

Examples of org.sonar.server.db.migrations.MassUpdate.execute()

    final Date now = new Date(system.now());

    MassUpdate massUpdate = context.prepareMassUpdate();
    massUpdate.select("SELECT p.id FROM projects p WHERE p.scope=? AND p.enabled=?").setString(1, "PRJ").setBoolean(2, true);
    massUpdate.update("UPDATE projects SET authorization_updated_at=? WHERE id=?");
    massUpdate.execute(new MassUpdate.Handler() {
      @Override
      public boolean handle(Select.Row row, SqlStatement update) throws SQLException {
        Long id = row.getLong(1);
        update.setDate(1, now);
        update.setLong(2, id);
View Full Code Here

Examples of org.sonar.server.db.migrations.Upsert.execute()

          .setString(3, ruleParameter.defaultValue)
          .setString(4, ruleParameter.name)
          .addBatch();
      }
      if (!activeRules.isEmpty()) {
        upsert.execute().commit().close();
      }

      // update date for ES indexation
      upsert = context.prepareUpsert("update active_rules set updated_at=? where id=?");
      Date now = new Date(system.now());
View Full Code Here

Examples of org.sonatype.maven.shell.maven.MavenRuntime.execute()

        StreamJack.register(streams);

        // Execute Maven
        int result = 0;
        try {
            result = runtime.execute(request);
        }
        finally {
            StreamJack.deregister();
            // HACK: Not sure why, but we need to reset the terminal after some mvn builds
            io.getTerminal().reset();
View Full Code Here

Examples of org.sosy_lab.crocopat.cli.ExecuteCrocopat.execute()

    // get the crocopat output
    ExecuteCrocopat exec = new ExecuteCrocopat();
    List<String> result = null;
    try {
       result = exec.execute(rml.openStream(), rsf.openStream());
    } catch (CrocopatStderrException e) {
      // print out list of errors to stderr
      for (String error : e.getErrors()) {
        System.err.println(error);
      }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.