Home / File/ StompTestConstants.java — netty Source File

StompTestConstants.java — netty Source File

Architecture documentation for StompTestConstants.java, a java file in the netty codebase.

Entity Profile

Relationship Graph

Source Code

/*
 * 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:
 *
 *   https://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";

    public static final String FRAME_WITHOUT_NULL_ENDING = "SEND\n" +
             "destination:/queue/a\n" +
             "content-type:text/plain\n" +
             "content-length:4\n" +
             '\n' +
             "body\1";

    public static final String ESCAPED_MESSAGE_FRAME = "MESSAGE\n" +
             "message-id:100\n" +
             "subscription:1\n" +
             "destination:/queue/a\\c\n" +
             "header\\\\\\r\\n\\cName:header\\\\\\r\\n\\cValue\n" +
             "header_\\\\_\\r_\\n_\\c_Name:header_\\\\_\\r_\\n_\\c_Value\n" +
             "headerName\\c:\\cheaderValue\n" +
             '\n' + '\0';

    public static final String INVALID_ESCAPED_MESSAGE_FRAME = "MESSAGE\n" +
             "message-id:100\n" +
             "subscription:0\n" +
             "destination:/queue/a\n" +
             "custom_colon\\c_header_\\ckey:custom_colon\\c_header_\\cvalue\n" +
             "custom_invalid\\t_header_\\tkey:custom_invalid\\t_header_\\tvalue\n" +
             '\n' + '\0';

    private StompTestConstants() { }
}

Domain

Subdomains

Frequently Asked Questions

What does StompTestConstants.java do?
StompTestConstants.java is a source file in the netty codebase, written in java. It belongs to the Buffer domain, Allocators subdomain.
Where is StompTestConstants.java in the architecture?
StompTestConstants.java is located at codec-stomp/src/test/java/io/netty/handler/codec/stomp/StompTestConstants.java (domain: Buffer, subdomain: Allocators, directory: codec-stomp/src/test/java/io/netty/handler/codec/stomp).

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free