How to use setStatus method of com.testsigma.agent.launcher.Launcher class

Best Testsigma code snippet using com.testsigma.agent.launcher.Launcher.setStatus

Source:Launcher.java Github

copy

Full Screen

...67 this.executorService.submit(() -> {68 List<String> command;69 launcher.agentProcess = null;70 log.info("Starting Agent...");71 setStatus(AgentStatus.STARTING);72 try {73 launcher.startWrapperServer();74 this.future = launcher.socketExecutorService.submit(() -> {75 Thread.currentThread().setName("agent-launcher-server");76 this.startIpcSocket();77 this.cleanupAgentProcess();78 shutdownLauncher();79 if (!this.background) {80 this.systemTray.shutdown();81 }82 //Commenting out restart option dues continuous restart when web server config fetch fails83 //this.restart();84 });85 command = launcher.agentStartCommand(launcher.wrapperServer.getLocalPort());86 launcher.agentProcess = launcher.startAgentProcess(command);87 log.debug("Waiting for Agent to start...");88 int agentStartupChecks = 60;89 while (agentStartupChecks > 0) {90 try {91 log.debug("Waiting for Agent to start");92 TimeUnit.SECONDS.sleep(1L);93 } catch (Exception e) {94 log.error(e.getMessage(), e);95 }96 if (!launcher.agentProcess.isAlive()) {97 log.error("Agent exited unexpectedly with exit code - " + launcher.agentProcess.exitValue());98 break;99 }100 if (launcher.ipcSocket != null) break;101 agentStartupChecks--;102 }103 if (launcher.ipcSocket != null) {104 log.info("Agent started successfully with process - " + agentProcess.pid());105 setStatus(AgentStatus.STARTED);106 } else {107 log.error("Failed to start agent....");108 }109 } catch (Exception e) {110 launcher.completableFuture.completeExceptionally(e);111 } finally {112 handleFailedStart();113 }114 });115 }116 private void restart() {117 if (this.running) {118 if (this.restart) {119 log.info("Agent restart requested");120 this.restart = false;121 }122 if (this.agentProcess != null && this.agentProcess.exitValue() != 0) {123 log.info("Agent exit was not clean. Exit code - " + this.agentProcess.exitValue());124 this.shutdown();125 return;126 }127 log.info("Starting Agent again....");128 this.start();129 }130 }131 private void shutdownLauncher() {132 Thread.currentThread().setName("shutdown-hook");133 this.running = false;134 shutdown();135 waitForAgentToStop();136 this.completableFuture.complete(null);137 log.info("Shutting down Launcher");138 }139 private void shutdown() {140 if (this.agentStatus.equals(AgentStatus.STOPPING) || this.agentStatus.equals(AgentStatus.STOPPED))141 return;142 log.info("Agent shutdown initiated");143 Process process = this.agentProcess;144 setStatus(AgentStatus.STOPPING);145 shutdownAgent();146 setStatus(AgentStatus.STOPPED);147 Executors.newSingleThreadScheduledExecutor().schedule(() -> {148 try {149 if (process.isAlive()) {150 log.info("Stopping agent process forcibly since agent process didn't exit normally");151 process.destroyForcibly();152 }153 } catch (Exception exception) {154 log.error(exception.getMessage(), exception);155 }156 }, 10L, TimeUnit.SECONDS);157 }158 private void shutdownAgent() {159 stopIpcSocket();160 stopWrapperServer();161 stopFuture();162 stopIpcSocketExecutorService();163 }164 private void waitForAgentToStop() {165 while (this.agentProcess != null && this.agentProcess.isAlive()) {166 log.info("Agent is still running, waiting");167 try {168 TimeUnit.SECONDS.sleep(1L);169 } catch (InterruptedException ignored) {170 }171 }172 }173 private void setStatus(AgentStatus agentStatus) {174 this.agentStatus = agentStatus;175 log.info("Changed Agent status to - " + agentStatus);176 if (this.background)177 return;178 this.systemTray.setStatus(String.format("Testsigma Agent - %s", agentStatus));179 }180 private List<String> agentStartCommand(int wrapperPort) throws URISyntaxException {181 RuntimeMXBean runtimeMXBean = ManagementFactory.getRuntimeMXBean();182 List<String> list = runtimeMXBean.getInputArguments();183 List<String> commandLineParameters = new ArrayList<>();184 for (String listStr : list) {185 if (!listStr.startsWith("-agentlib")) {186 commandLineParameters.add(listStr);187 }188 }189 List<String> command = new ArrayList<>();190 command.add(getJavaPath());191 command.addAll(commandLineParameters);192 command.add("-cp");193 command.add(getAgentClassPath());194 command.add("-Dagent.wrapper.port=" + wrapperPort);195 command.add("-Dagent.wrapper.background=" + this.background);196 command.add("com.testsigma.agent.TestsigmaAgent");197 return command;198 }199 private void sendFlare() {200 String alertMessage = "Unknown Error";201 try {202 client = HttpClients.createDefault();203 HttpGet getRequest = new HttpGet("http://localhost:8383/agent/api/v1/flare");204 HttpResponse response = client.execute(getRequest);205 if (response.getEntity() != null) {206 alertMessage = EntityUtils.toString(response.getEntity());207 }208 log.info("Response from flare request - " + response.getStatusLine() + " - " + alertMessage);209 } catch (Exception e) {210 alertMessage = e.getMessage();211 log.error(e.getMessage(), e);212 } finally {213 showMessageDialog(null, alertMessage);214 HttpClientUtils.closeQuietly(client);215 }216 }217 private void configureSystemTrayIcon() {218 if (GraphicsEnvironment.isHeadless()) {219 log.info("No Graphics environment available - headless mode.");220 this.background = true;221 }222 if (!this.background) {223 log.info("Loading System Tray icon");224 this.systemTray = SystemTray.get();225 InputStream inputStream = Launcher.class.getClassLoader().getResourceAsStream("icons/tray_icon.png");226 systemTray.setImage(inputStream);227 setStatus(AgentStatus.STOPPED);228 systemTray.getMenu().add((Entry) new dorkbox.systemTray.MenuItem("Send Flare Request", (ActionEvent actionEvent) -> {229 log.info("Agent send flare request menu action triggered");230 MenuItem menuItem = ((MenuItem) actionEvent.getSource());231 menuItem.setEnabled(false);232 sendFlare();233 menuItem.setEnabled(true);234 }));235// systemTray.getMenu().add((Entry) new dorkbox.systemTray.MenuItem("Restart", (ActionEvent actionEvent) -> {236// log.info("Agent restart menu action triggered");237// this.restart = true;238// shutdown();239// }));240 systemTray.getMenu().add((Entry) new MenuItem("Quit", (ActionEvent actionEvent) -> {241 log.info("Agent quit menu action triggered");...

Full Screen

Full Screen

setStatus

Using AI Code Generation

copy

Full Screen

1import com.testsigma.agent.launcher.Launcher2Launcher.setStatus("passed")3import com.testsigma.agent.launcher.Launcher4Launcher.setStepStatus("passed")5import com.testsigma.agent.launcher.Launcher6Launcher.setStepStatus("passed")7import com.testsigma.agent.launcher.Launcher8Launcher.setStepStatus("passed")9import com.testsigma.agent.launcher.Launcher10Launcher.setStepStatus("passed")11import com.testsigma.agent.launcher.Launcher12Launcher.setStepStatus("passed")13import com.testsigma.agent.launcher.Launcher14Launcher.setStepStatus("passed")15import com.testsigma.agent.launcher.Launcher16Launcher.setStepStatus("passed")17import com.testsigma.agent.launcher.Launcher18Launcher.setStepStatus("passed")19import com.testsigma.agent.launcher.Launcher20Launcher.setStepStatus("passed")21import com.testsigma.agent.launcher.Launcher

Full Screen

Full Screen

setStatus

Using AI Code Generation

copy

Full Screen

1import com.testsigma.agent.launcher.Launcher;2import com.testsigma.agent.launcher.Launcher.Status;3public class MyTest {4 public void test() {5 Launcher.setStatus(Status.PASS, "Test Passed");6 }7}

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