This repository was archived by the owner on Jun 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathprotocol_test.go
More file actions
176 lines (149 loc) · 3.92 KB
/
protocol_test.go
File metadata and controls
176 lines (149 loc) · 3.92 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
/*
Copyright 2013 Tristan Wietsma
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 jack
import (
"fmt"
"testing"
)
//////////////
// Examples //
//////////////
func ExampleGet() {
m := Message{GET, []byte("key123"), nil}
fmt.Println(m.Bytes())
// Output:
// [103 30 107 101 121 49 50 51 0]
}
func ExampleParseGet() {
b := []byte{103, 30, 107, 101, 121, 49, 50, 51, 0}
m, _ := Parse(b)
fmt.Println(*m)
// Output:
// {103 [107 101 121 49 50 51] []}
}
func ExampleSet() {
m := Message{SET, []byte("key123"), []byte("val567")}
fmt.Println(m.Bytes())
// Output:
// [115 30 107 101 121 49 50 51 30 118 97 108 53 54 55 0]
}
func ExampleParseSet() {
b := []byte{115, 30, 107, 101, 121, 49, 50, 51, 30, 118, 97, 108, 53, 54, 55, 0}
m, _ := Parse(b)
fmt.Println(*m)
// Output:
// {115 [107 101 121 49 50 51] [118 97 108 53 54 55]}
}
func ExampleDel() {
m := Message{DEL, []byte("key123"), nil}
fmt.Println(m.Bytes())
// Output:
// [100 30 107 101 121 49 50 51 0]
}
func ExampleParseDel() {
b := []byte{100, 30, 107, 101, 121, 49, 50, 51, 0}
m, _ := Parse(b)
fmt.Println(*m)
// Output:
// {100 [107 101 121 49 50 51] []}
}
func ExamplePub() {
m := Message{PUB, []byte("key123"), []byte("val567")}
fmt.Println(m.Bytes())
// Output:
// [80 30 107 101 121 49 50 51 30 118 97 108 53 54 55 0]
}
func ExampleParsePub() {
b := []byte{80, 30, 107, 101, 121, 49, 50, 51, 30, 118, 97, 108, 53, 54, 55, 0}
m, _ := Parse(b)
fmt.Println(*m)
// Output:
// {80 [107 101 121 49 50 51] [118 97 108 53 54 55]}
}
func ExampleSub() {
m := Message{SUB, []byte("key123"), nil}
fmt.Println(m.Bytes())
// Output:
// [83 30 107 101 121 49 50 51 0]
}
func ExampleParseSub() {
b := []byte{83, 30, 107, 101, 121, 49, 50, 51, 0}
m, _ := Parse(b)
fmt.Println(*m)
// Output:
// {83 [107 101 121 49 50 51] []}
}
////////////////
// Benchmarks //
////////////////
func BenchmarkParseGet(b *testing.B) {
bt := []byte{103, 30, 107, 101, 121, 49, 50, 51, 0}
for i := 0; i < b.N; i++ {
_, _ = Parse(bt)
}
}
func BenchmarkParseSet(b *testing.B) {
bt := []byte{115, 30, 107, 101, 121, 49, 50, 51, 30, 118, 97, 108, 53, 54, 55, 0}
for i := 0; i < b.N; i++ {
_, _ = Parse(bt)
}
}
func BenchmarkParseDel(b *testing.B) {
bt := []byte{100, 30, 107, 101, 121, 49, 50, 51, 0}
for i := 0; i < b.N; i++ {
_, _ = Parse(bt)
}
}
func BenchmarkParsePub(b *testing.B) {
bt := []byte{80, 30, 107, 101, 121, 49, 50, 51, 30, 118, 97, 108, 53, 54, 55, 0}
for i := 0; i < b.N; i++ {
_, _ = Parse(bt)
}
}
func BenchmarkParseSub(b *testing.B) {
bt := []byte{83, 30, 107, 101, 121, 49, 50, 51, 0}
for i := 0; i < b.N; i++ {
_, _ = Parse(bt)
}
}
///////////
// Tests //
///////////
func TestMissingTerminalByte(t *testing.T) {
b := []byte{83, 30, 107, 101, 121, 49, 50, 51}
_, err := Parse(b)
if err.Error() != "ProtocolError: Message is missing EOM byte." {
t.Errorf("Missing an error.")
}
}
func TestInvalidCommand(t *testing.T) {
b := []byte{42, 30, 107, 101, 121, 49, 50, 51, 0}
_, err := Parse(b)
if err.Error() != "ProtocolError: Message invokes a nonexistent command." {
t.Errorf("Missing an error.")
}
}
func TestMissingKey(t *testing.T) {
b := []byte{83, 0}
_, err := Parse(b)
if err.Error() != "ProtocolError: Message is missing key." {
t.Errorf("Missing an error.")
}
}
func TestNonsense(t *testing.T) {
b := []byte{83, 30, 107, 101, 121, 49, 50, 51, 30, 51, 0}
_, err := Parse(b)
if err.Error() != "ProtocolError: Message is nonsense." {
t.Errorf("Missing an error.")
}
}