use of com.axway.ats.core.atsconfig.AtsInfrastructureManager.ApplicationStatus in project ats-framework by Axway.
the class ApplicationController method stop.
@Override
public ApplicationStatus stop(boolean isTopLevelAction) throws AtsManagerException {
JschSshClient sshClient = new JschSshClient();
try {
// it must be started, before we try to stop it
ApplicationStatus status = getStatus(sshClient, false);
if (status != ApplicationStatus.STARTED) {
log.error((isTopLevelAction ? TOP_LEVEL_ACTION_PREFIX : "") + "We will not try to stop " + anyApplicationInfo.description + " as it is currently " + status.name());
return status;
}
// connect
String command = anyApplicationInfo.getStopCommand();
log.info((isTopLevelAction ? TOP_LEVEL_ACTION_PREFIX : "") + "Now we will try to stop " + anyApplicationInfo.description + " with: " + command);
sshClient.connect(anyApplicationInfo.systemUser, anyApplicationInfo.systemPassword, anyApplicationInfo.host, anyApplicationInfo.sshPort);
// execute shell command
int commandExitCode = sshClient.execute(command, true);
// check exit code
// check if there is something in STD ERR
boolean isStoppedOk = false;
if (commandExitCode == 0 && StringUtils.isNullOrEmpty(sshClient.getErrorOutput())) {
String stdoutSearchToken = anyApplicationInfo.getStopCommandStdOutSearchToken();
if (stdoutSearchToken != null) {
// we confirm the success by a token in STD OUT
if (Pattern.compile(stdoutSearchToken, Pattern.DOTALL).matcher(sshClient.getStandardOutput()).matches()) {
isStoppedOk = true;
} else {
log.error("Execution of '" + command + "' completed with exit code " + commandExitCode + " and empty STD ERR, but we did not get the expected '" + stdoutSearchToken + "' in STD OUT");
}
} else {
// we confirm the success by checking the status again
if (getStatus(sshClient, false) == ApplicationStatus.STOPPED) {
isStoppedOk = true;
}
}
}
if (isStoppedOk) {
log.info((isTopLevelAction ? TOP_LEVEL_ACTION_PREFIX : "") + anyApplicationInfo.description + " is successfully stopped");
executePostActionShellCommand(anyApplicationInfo, "STOP", anyApplicationInfo.getPostStopShellCommand());
return ApplicationStatus.STOPPED;
} else {
throw new AtsManagerException("Can't stop " + anyApplicationInfo.description + "\n" + sshClient.getLastCommandExecutionResult());
}
} finally {
sshClient.disconnect();
}
}
Aggregations