netty5/codec-stomp/src/test/java/io/netty/handler/codec/stomp/StompTestConstants.java
Andrey Mizurov af532d2b7e Fix encoding/decoding for UTF-8 stomp commands and headers (#9740)
Motivation:

According STOMP spec (https://stomp.github.io/stomp-specification-1.2.html#Value_Encoding) we have to encode and decode commands and headers to UTF-8

Modification:

Provide ability for StompSubframeDecoder and StompSubframeEncoder work with UTF-8
2019-11-06 12:07:58 +01:00

82 lines
2.7 KiB
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
* Copyright 2014 The Netty Project
*
* The Netty Project licenses this file to you under the Apache License,
* version 2.0 (the "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at:
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*/
package io.netty.handler.codec.stomp;
public final class StompTestConstants {
public static final String CONNECT_FRAME =
"CONNECT\n" +
"host:stomp.github.org\n" +
"accept-version:1.1,1.2\n" +
'\n' +
'\0';
public static final String CONNECTED_FRAME =
"CONNECTED\n" +
"version:1.2\n" +
'\n' +
"\0\n";
public static final String SEND_FRAME_1 =
"SEND\n" +
"destination:/queue/a\n" +
"content-type:text/plain\n" +
'\n' +
"hello, queue a!" +
"\0\n";
public static final String SEND_FRAME_2 =
"SEND\n" +
"destination:/queue/a\n" +
"content-type:text/plain\n" +
"content-length:17\n" +
'\n' +
"hello, queue a!!!" +
"\0\n";
public static final String[] SEND_FRAMES_3 = {
"SEND\n" +
"destination:/queue/a\n" +
"content-type:text/plain\n" +
'\n' +
"first part of body\n",
"second part of body\0"
};
public static final String SEND_FRAME_4 = "SEND\n" +
"destination:/queue/a\n" +
"content-type:text/plain\n" +
'\n' +
"body\0";
public static final String FRAME_WITH_INVALID_HEADER = "SEND\n" +
"destination:/some-destination\n" +
"content-type:text/plain\n" +
"current-time:2000-01-01T00:00:00\n" +
'\n' +
"some body\0";
public static final String FRAME_WITH_EMPTY_HEADER_NAME = "SEND\n" +
"destination:/some-destination\n" +
"content-type:text/plain\n" +
":header-value\n" +
'\n' +
"some body\0";
public static final String SEND_FRAME_UTF8 = "SEND\n" +
"destination:/queue/№11±♛нетти♕\n" +
"content-type:text/plain\n" +
'\n' +
"body\0";
private StompTestConstants() { }
}