use of com.centurylink.mdw.designer.testing.LogMessageMonitor in project mdw-designer by CenturyLinkCloud.
the class AutomatedTestView method runTests.
public void runTests() {
// TODO: currently mixed execution of Gherkin/Groovy scripts
// fails to start LogMessageMonitor in Designer VM (otherwise will
// conflict with Cucumber-JVM)
boolean hasGherkin = false;
for (AutomatedTestCase rtc : testSuite.getTestCases()) {
if (rtc.isGherkin())
hasGherkin = true;
}
try {
prepForRun();
counterData = new CounterData(testSuite.getTestCases().size());
updateCounterPanel(0, 0, 0, true);
monitor = null;
if (!hasGherkin && !testSuite.isDebug())
monitor = new LogMessageMonitor(testSuite.getProject().getDesignerProxy().getDesignerDataAccess(), testSuite.getProject().isOldNamespaces());
String msg = designerProxy.checkForServerDbMismatch();
if (msg != null) {
MessageDialog.openError(getSite().getShell(), "Server DB Mismatch", msg);
handleStop();
return;
}
if (StubServer.isRunning())
StubServer.stop();
if (testSuite.isStubbing() && !hasGherkin && !testSuite.isDebug()) {
StubServer.Stubber stubber = new TestStubber();
int port = testSuite.getProject().getServerSettings().getStubServerPort();
StubServer.start(testSuite.getProject().getDesignerProxy().getRestfulServer(), port, stubber, testSuite.getProject().isOldNamespaces());
}
} catch (Exception ex) {
PluginMessages.uiError(ex, "Automated Test", testSuite.getProject());
handleStop();
return;
}
Thread background = new Thread(new Runnable() {
public void run() {
testCaseStatuses = new HashMap<>();
updateProgressBar(5, false, false);
threadPool = new ThreadPool(testSuite.getThreadCount());
PrintStream printStream = null;
updateProgressBar(10, false, false);
if (monitor != null)
monitor.start(true);
for (AutomatedTestCase testCase : testSuite.getTestCases()) {
if (!testSuite.isRunning())
continue;
File resultDir = testCase.getResultsDir();
try {
File executeLog = testCase.getOutputFile();
deleteFile(executeLog);
if (testCase.isPostman())
deleteFile(testCase.getItemOutputFile());
if (!executeLog.getParentFile().exists() && !executeLog.getParentFile().mkdirs())
throw new IOException("Unable to create test run directory: " + executeLog.getParentFile());
PrintStream log = new PrintStream(executeLog);
ImageDescriptor icon = MdwPlugin.getImageDescriptor("icons/auto_test.gif");
MessageConsole console = MessageConsole.findConsole("Tests", icon, display);
printStream = new PrintStream(console.newFileConsoleOutputStream(executeLog));
TestCaseRun testCaseRun = designerProxy.prepareTestCase(testCase, 0, resultDir, testSuite.isCreateReplaceResults(), testSuite.isVerbose(), log, monitor, testSuite.isSingleServer(), testSuite.isStubbing(), testSuite.isDebug());
masterRequestRunMap.put(testCaseRun.getMasterRequestId(), testCaseRun);
testCaseRun.setMasterRequestListener(AutomatedTestView.this);
threadPool.execute(testCaseRun);
updateTreeAndProgressBar(false);
try {
Thread.sleep(testSuite.getThreadInterval() * 1000);
} catch (InterruptedException ex) {
}
} catch (Exception ex) {
PluginMessages.log(ex);
testCase.setErrored();
updateTreeAndProgressBar(true);
testSuite.setRunning(false);
if (printStream != null) {
ex.printStackTrace(printStream);
printStream.close();
}
handleStop();
return;
}
}
while (!threadPool.isTerminated()) {
// update the tree and the progress bar
updateTreeAndProgressBar(false);
if (testSuite.isFinished())
threadPool.shutdown();
try {
Thread.sleep(2500);
} catch (InterruptedException e) {
}
}
updateTreeAndProgressBar(true);
testSuite.setRunning(false);
actionGroup.enableStopAction(false);
actionGroup.enableRerunAction(true);
File resultsFile = testSuite.getProject().getFunctionTestResultsFile();
actionGroup.enableFormatFunctionTestResults(resultsFile != null && resultsFile.exists());
locked = false;
if (monitor != null && monitor.isBound())
monitor.shutdown();
if (printStream != null)
printStream.close();
}
});
background.start();
}
Aggregations