use of org.eclipse.n4js.tester.events.SessionPingedEvent in project n4js by eclipse.
the class TestFsmRegistryImpl method receivedTestEvent.
/**
* Percepts any {@link TestEvent test event} and delegates it to the corresponding tester finite state machine.
*
* @param event
* the received event that will be processed.
*/
@Subscribe
@AllowConcurrentEvents
public void receivedTestEvent(final TestEvent event) {
if (event instanceof SessionFailedEvent && ((SessionFailedEvent) event).getComment().isPresent()) {
LOGGER.error("Received event: " + event + ". Reason: " + ((SessionFailedEvent) event).getComment().get());
} else {
if (debugEnabled) {
LOGGER.debug("Received event: " + event);
}
}
final String sessionId = event.getSessionId();
if (event instanceof SessionStartedEvent) {
if (!isSessionExist(sessionId)) {
registerFsm(sessionId);
}
getSession(sessionId).startSession(sessionId);
} else if (event instanceof SessionPingedEvent) {
final long timeout = ((SessionPingedEvent) event).getTimeout();
getSession(sessionId).pingSession(sessionId, timeout);
} else if (event instanceof SessionEndedEvent) {
final TestFsm fsm = getSession(sessionId).endSession(sessionId);
if (fsm instanceof TestFsmImpl && !((TestFsmImpl) fsm).isFailed()) {
if (!treeRegistry.validateTestTree(sessionId)) {
((TestFsmImpl) fsm).fail("Test session failed due to invalid final state of the test tree. " + "There are test cases without any test results after receiving session ended event.");
return;
}
}
bus.post(new SessionFinishedEvent(sessionId));
} else if (event instanceof SessionFailedEvent) {
treeRegistry.purgeTestTree(sessionId);
unregisterFsm(sessionId);
} else if (event instanceof SessionFinishedEvent) {
unregisterFsm(sessionId);
} else if (event instanceof TestStartedEvent) {
final String testId = ((TestStartedEvent) event).getTestId();
final long timeout = ((TestStartedEvent) event).getTimeout();
getSession(sessionId).startTest(testId, timeout);
} else if (event instanceof TestPingedEvent) {
final long timeout = ((TestPingedEvent) event).getTimeout();
final String testId = ((TestPingedEvent) event).getTestId();
getSession(sessionId).pingTest(testId, timeout);
} else if (event instanceof TestEndedEvent) {
final TestEndedEvent testEndedEvent = (TestEndedEvent) event;
final String testId = testEndedEvent.getTestId();
final TestFsm fsm = getSession(sessionId).endTest(testId);
if (fsm instanceof TestFsmImpl && !((TestFsmImpl) fsm).isFailed()) {
treeRegistry.putTestResult(sessionId, testId, testEndedEvent.getResult());
}
} else {
LOGGER.error("Unexpected test event: " + event);
}
}
use of org.eclipse.n4js.tester.events.SessionPingedEvent in project n4js by eclipse.
the class PingSessionResource method createEvent.
@Override
@SuppressWarnings("unchecked")
protected TestEvent createEvent(final String sessionId, final String body) throws ClientResourceException {
if (isNullOrEmpty(body))
throw new ClientResourceException(SC_BAD_REQUEST);
final Map<?, ?> values = newHashMap();
try {
values.putAll(mapper.readValue(body, Map.class));
} catch (JsonMappingException | JsonParseException e) {
throw new ClientResourceException(SC_UNPROCESSABLE_ENTITY);
} catch (final IOException e) {
throw new ClientResourceException(SC_BAD_REQUEST);
}
final Object value = values.get(TIMEOUT_KEY);
// incorrect schema
if (null == value) {
throw new ClientResourceException(SC_UNPROCESSABLE_ENTITY);
}
final Object comment = values.get(COMMENT_KEY);
try {
final long timeout = parseLong(Objects.toString(value));
return new SessionPingedEvent(sessionId, timeout, null == comment ? null : valueOf(comment));
} catch (final NumberFormatException e) {
// although schema was valid the data was indeed invalid
throw new ClientResourceException(SC_BAD_REQUEST);
}
}
Aggregations