This commit is contained in:
zhouyuyan
2017-08-22 16:45:01 +08:00
parent 25a9a759f7
commit b4ec8ea870
40 changed files with 5864 additions and 13 deletions

178
lib/message/message_test.go Executable file
View File

@@ -0,0 +1,178 @@
// Copyright (c) 2014 The SurgeMQ Authors. All rights reserved.
//
// Licensed 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 message
import (
"testing"
"github.com/stretchr/testify/require"
)
var (
lpstrings []string = []string{
"this is a test",
"hope it succeeds",
"but just in case",
"send me your millions",
"",
}
lpstringBytes []byte = []byte{
0x0, 0xe, 't', 'h', 'i', 's', ' ', 'i', 's', ' ', 'a', ' ', 't', 'e', 's', 't',
0x0, 0x10, 'h', 'o', 'p', 'e', ' ', 'i', 't', ' ', 's', 'u', 'c', 'c', 'e', 'e', 'd', 's',
0x0, 0x10, 'b', 'u', 't', ' ', 'j', 'u', 's', 't', ' ', 'i', 'n', ' ', 'c', 'a', 's', 'e',
0x0, 0x15, 's', 'e', 'n', 'd', ' ', 'm', 'e', ' ', 'y', 'o', 'u', 'r', ' ', 'm', 'i', 'l', 'l', 'i', 'o', 'n', 's',
0x0, 0x0,
}
msgBytes []byte = []byte{
byte(CONNECT << 4),
60,
0, // Length MSB (0)
4, // Length LSB (4)
'M', 'Q', 'T', 'T',
4, // Protocol level 4
206, // connect flags 11001110, will QoS = 01
0, // Keep Alive MSB (0)
10, // Keep Alive LSB (10)
0, // Client ID MSB (0)
7, // Client ID LSB (7)
's', 'u', 'r', 'g', 'e', 'm', 'q',
0, // Will Topic MSB (0)
4, // Will Topic LSB (4)
'w', 'i', 'l', 'l',
0, // Will Message MSB (0)
12, // Will Message LSB (12)
's', 'e', 'n', 'd', ' ', 'm', 'e', ' ', 'h', 'o', 'm', 'e',
0, // Username ID MSB (0)
7, // Username ID LSB (7)
's', 'u', 'r', 'g', 'e', 'm', 'q',
0, // Password ID MSB (0)
10, // Password ID LSB (10)
'v', 'e', 'r', 'y', 's', 'e', 'c', 'r', 'e', 't',
}
)
func TestReadLPBytes(t *testing.T) {
total := 0
for _, str := range lpstrings {
b, n, err := readLPBytes(lpstringBytes[total:])
require.NoError(t, err)
require.Equal(t, str, string(b))
require.Equal(t, len(str)+2, n)
total += n
}
}
func TestWriteLPBytes(t *testing.T) {
total := 0
buf := make([]byte, 1000)
for _, str := range lpstrings {
n, err := writeLPBytes(buf[total:], []byte(str))
require.NoError(t, err)
require.Equal(t, 2+len(str), n)
total += n
}
require.Equal(t, lpstringBytes, buf[:total])
}
func TestMessageTypes(t *testing.T) {
if CONNECT != 1 ||
CONNACK != 2 ||
PUBLISH != 3 ||
PUBACK != 4 ||
PUBREC != 5 ||
PUBREL != 6 ||
PUBCOMP != 7 ||
SUBSCRIBE != 8 ||
SUBACK != 9 ||
UNSUBSCRIBE != 10 ||
UNSUBACK != 11 ||
PINGREQ != 12 ||
PINGRESP != 13 ||
DISCONNECT != 14 {
t.Errorf("Message types have invalid code")
}
}
func TestQosCodes(t *testing.T) {
if QosAtMostOnce != 0 || QosAtLeastOnce != 1 || QosExactlyOnce != 2 {
t.Errorf("QOS codes invalid")
}
}
func TestConnackReturnCodes(t *testing.T) {
require.Equal(t, ErrInvalidProtocolVersion.Error(), ConnackCode(1).Error(), "Incorrect ConnackCode error value.")
require.Equal(t, ErrIdentifierRejected.Error(), ConnackCode(2).Error(), "Incorrect ConnackCode error value.")
require.Equal(t, ErrServerUnavailable.Error(), ConnackCode(3).Error(), "Incorrect ConnackCode error value.")
require.Equal(t, ErrBadUsernameOrPassword.Error(), ConnackCode(4).Error(), "Incorrect ConnackCode error value.")
require.Equal(t, ErrNotAuthorized.Error(), ConnackCode(5).Error(), "Incorrect ConnackCode error value.")
}
func TestFixedHeaderFlags(t *testing.T) {
type detail struct {
name string
flags byte
}
details := map[MessageType]detail{
RESERVED: detail{"RESERVED", 0},
CONNECT: detail{"CONNECT", 0},
CONNACK: detail{"CONNACK", 0},
PUBLISH: detail{"PUBLISH", 0},
PUBACK: detail{"PUBACK", 0},
PUBREC: detail{"PUBREC", 0},
PUBREL: detail{"PUBREL", 2},
PUBCOMP: detail{"PUBCOMP", 0},
SUBSCRIBE: detail{"SUBSCRIBE", 2},
SUBACK: detail{"SUBACK", 0},
UNSUBSCRIBE: detail{"UNSUBSCRIBE", 2},
UNSUBACK: detail{"UNSUBACK", 0},
PINGREQ: detail{"PINGREQ", 0},
PINGRESP: detail{"PINGRESP", 0},
DISCONNECT: detail{"DISCONNECT", 0},
RESERVED2: detail{"RESERVED2", 0},
}
for m, d := range details {
if m.Name() != d.name {
t.Errorf("Name mismatch. Expecting %s, got %s.", d.name, m.Name())
}
if m.DefaultFlags() != d.flags {
t.Errorf("Flag mismatch for %s. Expecting %d, got %d.", m.Name(), d.flags, m.DefaultFlags())
}
}
}
func TestSupportedVersions(t *testing.T) {
for k, v := range SupportedVersions {
if k == 0x03 && v != "MQIsdp" {
t.Errorf("Protocol version and name mismatch. Expect %s, got %s.", "MQIsdp", v)
}
}
}