Avoid unescape for CONNECT and CONNECTED frames
See gh-27722
This commit is contained in:
parent
7854dbb025
commit
5d91560f92
|
@ -143,7 +143,7 @@ public class StompDecoder {
|
|||
StompCommand stompCommand = StompCommand.valueOf(command);
|
||||
headerAccessor = StompHeaderAccessor.create(stompCommand);
|
||||
initHeaders(headerAccessor);
|
||||
readHeaders(byteBuffer, headerAccessor);
|
||||
readHeaders(stompCommand, byteBuffer, headerAccessor);
|
||||
payload = readPayload(byteBuffer, headerAccessor);
|
||||
}
|
||||
if (payload != null) {
|
||||
|
@ -215,7 +215,9 @@ public class StompDecoder {
|
|||
return StreamUtils.copyToString(command, StandardCharsets.UTF_8);
|
||||
}
|
||||
|
||||
private void readHeaders(ByteBuffer byteBuffer, StompHeaderAccessor headerAccessor) {
|
||||
private void readHeaders(StompCommand stompCommand, ByteBuffer byteBuffer, StompHeaderAccessor headerAccessor) {
|
||||
boolean shouldUnescape = (stompCommand != StompCommand.CONNECT && stompCommand != StompCommand.STOMP
|
||||
&& stompCommand != StompCommand.CONNECTED);
|
||||
while (true) {
|
||||
ByteArrayOutputStream headerStream = new ByteArrayOutputStream(256);
|
||||
boolean headerComplete = false;
|
||||
|
@ -236,8 +238,8 @@ public class StompDecoder {
|
|||
}
|
||||
}
|
||||
else {
|
||||
String headerName = unescape(header.substring(0, colonIndex));
|
||||
String headerValue = unescape(header.substring(colonIndex + 1));
|
||||
String headerName = shouldUnescape ? unescape(header.substring(0, colonIndex)) : header.substring(0, colonIndex);
|
||||
String headerValue = shouldUnescape ? unescape(header.substring(colonIndex + 1)) : header.substring(colonIndex + 1);
|
||||
try {
|
||||
headerAccessor.addNativeHeader(headerName, headerValue);
|
||||
}
|
||||
|
|
|
@ -159,6 +159,23 @@ public class StompDecoderTests {
|
|||
assertThat(headers.getFirstNativeHeader("a:\r\n\\b")).isEqualTo("alpha:bravo\r\n\\");
|
||||
}
|
||||
|
||||
@Test
|
||||
public void decodeFrameWithHeaderWithBackslashValue() {
|
||||
String accept = "accept-version:1.1\n";
|
||||
String keyAndValueWithBackslash = "key:\\value\n";
|
||||
|
||||
Message<byte[]> frame = decode("CONNECT\n" + accept + keyAndValueWithBackslash + "\n\0");
|
||||
StompHeaderAccessor headers = StompHeaderAccessor.wrap(frame);
|
||||
|
||||
assertThat(headers.getCommand()).isEqualTo(StompCommand.CONNECT);
|
||||
|
||||
assertThat(headers.toNativeHeaderMap().size()).isEqualTo(2);
|
||||
assertThat(headers.getFirstNativeHeader("accept-version")).isEqualTo("1.1");
|
||||
assertThat(headers.getFirstNativeHeader("key")).isEqualTo("\\value");
|
||||
|
||||
assertThat(frame.getPayload().length).isEqualTo(0);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void decodeFrameBodyNotAllowed() {
|
||||
assertThatExceptionOfType(StompConversionException.class).isThrownBy(() ->
|
||||
|
|
Loading…
Reference in New Issue