-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathconnect_db_test.go
59 lines (46 loc) · 997 Bytes
/
connect_db_test.go
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
package myreplication
import (
"reflect"
"testing"
)
func TestConnectDb(t *testing.T) {
db := "test"
q := connectDb{}
pack := q.writeServer(db)
result := pack.packBytes()
expectedLength := []byte{0x05, 0x00, 0x00}
offset := 0
if !reflect.DeepEqual(expectedLength, result[offset:offset+3]) {
t.Fatal(
"Incorrect query length",
"expected", expectedLength,
"got", result[offset:offset+3],
)
}
offset += 3
expectedSequence := byte(0)
if expectedSequence != result[offset : offset+1][0] {
t.Fatal(
"Incorrect sequence",
"expected", expectedSequence,
"got", result[offset : offset+1][0],
)
}
offset++
if _COM_INIT_DB != result[offset : offset+1][0] {
t.Fatal(
"Incorrect command",
"expected", _COM_INIT_DB,
"got", result[offset : offset+1][0],
)
}
offset++
if db != string(result[offset:offset+len(db)]) {
t.Fatal(
"Incorrect db",
"expected", db,
"got", string(result[offset:offset+len(db)]),
)
}
offset += len(db)
}