NO-JIRA: fixing a test

This commit is contained in:
Clebert Suconic 2017-01-30 15:55:05 -05:00
parent 3480cc7104
commit 57945d97e9
3 changed files with 10 additions and 3 deletions

View File

@ -29,6 +29,7 @@ import org.apache.activemq.artemis.tests.integration.IntegrationTestLogger;
import org.apache.activemq.artemis.tests.integration.stomp.util.ClientStompFrame;
import org.apache.activemq.artemis.tests.integration.stomp.util.StompClientConnection;
import org.apache.activemq.artemis.tests.integration.stomp.util.StompClientConnectionFactory;
import org.apache.activemq.artemis.tests.util.Wait;
import org.junit.Assert;
import org.junit.Test;
@ -105,7 +106,13 @@ public class StompTestWithInterceptors extends StompTestBase {
Thread.sleep(10);
}
Wait.waitFor(() -> {
return MyIncomingStompFrameInterceptor.incomingInterceptedFrames.size() == 4;
});
Assert.assertEquals(4, MyIncomingStompFrameInterceptor.incomingInterceptedFrames.size());
Wait.waitFor(() -> {
return MyOutgoingStompFrameInterceptor.outgoingInterceptedFrames.size() == 3;
});
Assert.assertEquals(3, MyOutgoingStompFrameInterceptor.outgoingInterceptedFrames.size());
for (int i = 0; i < MyIncomingStompFrameInterceptor.incomingInterceptedFrames.size(); i++) {

View File

@ -78,7 +78,7 @@ public abstract class AbstractStompClientConnection implements StompClientConnec
private ClientStompFrame sendFrameInternal(ClientStompFrame frame, boolean wicked) throws IOException, InterruptedException {
ClientStompFrame response = null;
IntegrationTestLogger.LOGGER.info("Sending " + (wicked ? "*wicked* " : "") + "frame:\n" + frame);
IntegrationTestLogger.LOGGER.trace("Sending " + (wicked ? "*wicked* " : "") + "frame:\n" + frame);
ByteBuffer buffer;
if (wicked) {
buffer = frame.toByteBufferWithExtra("\n");
@ -103,7 +103,7 @@ public abstract class AbstractStompClientConnection implements StompClientConnec
}
}
IntegrationTestLogger.LOGGER.info("Received:\n" + response);
IntegrationTestLogger.LOGGER.trace("Received:\n" + response);
return response;
}

View File

@ -81,7 +81,7 @@ public class StompClientConnectionV11 extends StompClientConnectionV10 {
this.passcode = passcode;
this.connected = true;
} else {
System.out.println("Connection failed with frame " + response);
System.err.println("Connection failed with frame " + response);
connected = false;
}
}