How to use executeProcessBuilder method of org.cerberus.service.cerberuscommand.impl.CerberusCommand class

Best Cerberus-source code snippet using org.cerberus.service.cerberuscommand.impl.CerberusCommand.executeProcessBuilder

Source:CerberusCommand.java Github

copy

Full Screen

...71 checkPasswordParameterNotEmpty();72 checkUserParameterNotEmpty();73 checkCommandFirstCharacter();74 concatenateCommandToRun();75 executeProcessBuilder();76 } catch (CerberusEventException ex) {77 this.message = ex.getMessageError();78 checkNewMessageDescription();79 throw new CerberusEventException(this.message);80 }81 return this.message;82 }83 private void checkCommandContent() throws CerberusEventException {84 if (this.command.isEmpty()) {85 this.messageDescriptionToReplace = "%FIELD%";86 this.newMessageDescription = "Command";87 throw new CerberusEventException(new MessageEvent(MessageEventEnum.ACTION_FAILED_EXECUTECOMMAND_MISSINGCOMMAND));88 }89 }90 private void checkOS() throws CerberusEventException {91 if (System.getProperty("os.name").toLowerCase().startsWith("windows")) {92 this.messageDescriptionToReplace = "%OS%";93 this.newMessageDescription = System.getProperty("os.name");94 throw new CerberusEventException(new MessageEvent(MessageEventEnum.ACTION_FAILED_EXECUTECOMMAND_NOTSUPPORTED_FOR_OS));95 }96 }97 private void initializeParameters() {98 this.scriptPath = parameterService.getParameterStringByKey("cerberus_executeCerberusCommand_path", "", "");99 this.scriptUser = parameterService.getParameterStringByKey("cerberus_executeCerberusCommand_user", "", "");100 this.scriptPassword = parameterService.getParameterStringByKey("cerberus_executeCerberusCommand_password", "", "");101 }102 private void checkPathParameterNotEmpty() throws CerberusEventException {103 if (this.scriptPath.isEmpty()) {104 this.messageDescriptionToReplace = "%PARAM%";105 this.newMessageDescription = "cerberus_executeCerberusCommand_path";106 throw new CerberusEventException(new MessageEvent(MessageEventEnum.ACTION_FAILED_EXECUTECOMMAND_MISSINGPARAMETER));107 }108 }109 private void checkPasswordParameterNotEmpty() throws CerberusEventException {110 if (this.scriptPassword.isEmpty()) {111 this.messageDescriptionToReplace = "%PARAM%";112 this.newMessageDescription = "cerberus_executeCerberusCommand_password";113 throw new CerberusEventException(new MessageEvent(MessageEventEnum.ACTION_FAILED_EXECUTECOMMAND_MISSINGPARAMETER));114 }115 }116 private void checkUserParameterNotEmpty() throws CerberusEventException {117 if (this.scriptUser.isEmpty()) {118 this.messageDescriptionToReplace = "%PARAM%";119 this.newMessageDescription = "cerberus_executeCerberusCommand_user";120 throw new CerberusEventException(new MessageEvent(MessageEventEnum.ACTION_FAILED_EXECUTECOMMAND_MISSINGPARAMETER));121 }122 }123 private void checkCommandFirstCharacter() throws CerberusEventException {124 String firstChar = Character.toString(this.command.charAt(0));125 if (firstChar.equalsIgnoreCase("/")) {126 this.messageDescriptionToReplace = "%FIRST_CHAR%";127 this.newMessageDescription = firstChar;128 throw new CerberusEventException(new MessageEvent(MessageEventEnum.ACTION_FAILED_EXECUTECOMMAND_ILLEGALSTART));129 }130 }131 private void concatenateCommandToRun() {132 this.commandToRun = new String[]{"bash", "-c", "echo -n \""133 + this.scriptPassword134 + "\" | su - "135 + this.scriptUser136 + " -c \"bash /"137 + this.scriptPath + "/"138 + this.command139 + "\""};140 }141 private MessageEvent executeProcessBuilder() {142 try {143 ProcessBuilder processBuilder = new ProcessBuilder(this.commandToRun);144 Process process = processBuilder.start();145 StringBuilder output = new StringBuilder();146 BufferedReader reader = new BufferedReader(new InputStreamReader(process.getInputStream()));147 String line;148 while ((line = reader.readLine()) != null) {149 output.append(line).append("\n");150 }151 int exitVal = process.waitFor();152 checkExitVal(exitVal);153 this.message = new MessageEvent(MessageEventEnum.ACTION_SUCCESS_EXECUTECOMMAND);154 this.messageDescriptionToReplace = "%LOG%";155 this.newMessageDescription = this.command + " Output : " + output;...

Full Screen

Full Screen

executeProcessBuilder

Using AI Code Generation

copy

Full Screen

1package org.cerberus.service.cerberuscommand.impl;2import java.io.BufferedReader;3import java.io.File;4import java.io.IOException;5import java.io.InputStream;6import java.io.InputStreamReader;7import java.util.ArrayList;8import java.util.List;9import org.apache.logging.log4j.LogManager;10import org.apache.logging.log4j.Logger;11import org.cerberus.service.cerberuscommand.ICerberusCommand;12import org.springframework.stereotype.Service;13public class CerberusCommand implements ICerberusCommand {14 private static final Logger LOG = LogManager.getLogger(CerberusCommand.class);15 public String executeCommand(String command) {16 String output = "";17 try {18 ProcessBuilder pb = new ProcessBuilder(command.split(" "));19 Process process = pb.start();20 InputStream is = process.getInputStream();21 InputStreamReader isr = new InputStreamReader(is);22 BufferedReader br = new BufferedReader(isr);23 String line;24 while ((line = br.readLine()) != null) {25";26 }27 } catch (IOException ex) {28 LOG.error(ex, ex);29 }30 return output;31 }32 public String executeCommand(String command, String workingDir, String env) {33 String output = "";34 try {35 ProcessBuilder pb = new ProcessBuilder(command.split(" "));36 pb.directory(new File(workingDir));37 pb.environment().put("PATH", env);38 Process process = pb.start();39 InputStream is = process.getInputStream();40 InputStreamReader isr = new InputStreamReader(is);41 BufferedReader br = new BufferedReader(isr);42 String line;43 while ((line = br.readLine()) != null) {44";45 }46 } catch (IOException ex) {47 LOG.error(ex, ex);48 }49 return output;50 }51 public String executeProcessBuilder(String command, String workingDir, String env) {52 String output = "";53 try {54 List<String> commandList = new ArrayList<>();55 for (String commandPart : command.split(" ")) {56 commandList.add(commandPart);57 }58 ProcessBuilder pb = new ProcessBuilder(commandList);59 pb.directory(new File(workingDir));60 pb.environment().put("PATH", env);61 Process process = pb.start();62 InputStream is = process.getInputStream();63 InputStreamReader isr = new InputStreamReader(is);

Full Screen

Full Screen

executeProcessBuilder

Using AI Code Generation

copy

Full Screen

1import java.io.BufferedReader;2import java.io.InputStreamReader;3import java.util.ArrayList;4import java.util.List;5import org.cerberus.service.cerberuscommand.impl.CerberusCommand;6public class Test {7 public static void main(String[] args) {8 try {9 CerberusCommand cerberusCommand = new CerberusCommand();10 List<String> command = new ArrayList<String>();11 command.add("ls");12 command.add("-l");13 command.add("/tmp/");14 String commandOutput = cerberusCommand.executeProcessBuilder(command);15 System.out.println("commandOutput: " + commandOutput);16 } catch (Exception e) {17 System.out.println("Exception: " + e.getMessage());18 }19 }20}

Full Screen

Full Screen

executeProcessBuilder

Using AI Code Generation

copy

Full Screen

1import org.cerberus.service.cerberuscommand.impl.CerberusCommand2import org.cerberus.service.cerberuscommand.impl.CommandResult3def command = new CerberusCommand()4def result = command.executeProcessBuilder("ls -al")5println result.getOutput()6println result.getOutput().size()7result.writeToFile("result.txt")8result.writeToFile("result.csv", "csv")9result.writeToFile("result.json", "json")10result.writeToFile("result.xml", "xml")11result.writeToFile("result.txt", "txt", "header")12result.writeToFile("result.csv", "csv", "header")13result.writeToFile("result.json", "json", "header")14result.writeToFile("result.xml", "xml", "header")15result.writeToFile("result.txt", "txt", "header", "footer")16result.writeToFile("result.csv", "csv", "header", "footer")17result.writeToFile("result.json", "json", "header", "footer")18result.writeToFile("result.xml", "xml", "header", "footer")

Full Screen

Full Screen

executeProcessBuilder

Using AI Code Generation

copy

Full Screen

1command = "ls -la";2result = cerberusCommand.executeProcessBuilder(command);3output = result.getOutput();4error = result.getError();5exitCode = result.getExitCode();6duration = result.getDuration();

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful