Header values are optional in Stomp 1.1 and 1.2
This commit is contained in:
committed by
Rossen Stoyanchev
parent
c41779f895
commit
11824893a9
@@ -188,6 +188,23 @@ public class StompCodecTests {
|
||||
assertEquals(StompCommand.DISCONNECT, StompHeaderAccessor.wrap(messages.get(1)).getCommand());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void decodeFrameWithHeaderWithEmptyValue() {
|
||||
String accept = "accept-version:1.1\n";
|
||||
String valuelessKey = "key:\n";
|
||||
|
||||
Message<byte[]> frame = decode("CONNECT\n" + accept + valuelessKey + "\n\0");
|
||||
StompHeaderAccessor headers = StompHeaderAccessor.wrap(frame);
|
||||
|
||||
assertEquals(StompCommand.CONNECT, headers.getCommand());
|
||||
|
||||
assertEquals(2, headers.toNativeHeaderMap().size());
|
||||
assertEquals("1.1", headers.getFirstNativeHeader("accept-version"));
|
||||
assertEquals("", headers.getFirstNativeHeader("key"));
|
||||
|
||||
assertEquals(0, frame.getPayload().length);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void decodeFrameWithIncompleteCommand() {
|
||||
assertIncompleteDecode("MESSAG");
|
||||
|
||||
Reference in New Issue
Block a user