private int executeSingleCommand(Arguments arguments, FitNesseContext context) throws Exception { TestTextFormatter.finalErrorCount = 0; LOG.info("Executing command: " + arguments.getCommand()); OutputStream os; boolean outputRedirectedToFile = arguments.getOutput() != null; if (outputRedirectedToFile) { LOG.info("-----Command Output redirected to " + arguments.getOutput() + "-----"); os = new FileOutputStream(arguments.getOutput()); } else { LOG.info("-----Command Output-----"); os = System.out; } context.fitNesse.executeSingleCommand(arguments.getCommand(), os); context.fitNesse.stop(); if (outputRedirectedToFile) { os.close(); } else { LOG.info("-----Command Complete-----"); } return TestTextFormatter.finalErrorCount; }
Integer launch(Arguments arguments, FitNesseContext context) throws Exception { if (!arguments.isInstallOnly()) { boolean started = context.fitNesse.start(); if (started) { if (arguments.getCommand() != null) { return executeSingleCommand(arguments, context); } } } return null; }