-
Notifications
You must be signed in to change notification settings - Fork 1k
/
Copy pathmysql_gtid_test.go
91 lines (84 loc) · 3.02 KB
/
mysql_gtid_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
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
package mysql
import (
"reflect"
"testing"
"github.com/google/uuid"
)
func TestParseUUIDSet(t *testing.T) {
tests := []struct {
input string
expected map[string]*UUIDSet
wantErr bool
}{
{
input: "0b8beec9-911e-11e9-9f7b-8a057645f3f6:1-1175877800",
expected: map[string]*UUIDSet{
"0b8beec9-911e-11e9-9f7b-8a057645f3f6": {
SID: uuid.Must(uuid.Parse("0b8beec9-911e-11e9-9f7b-8a057645f3f6")),
Intervals: []Interval{{Start: 1, Stop: 1175877801}}, // Stop is Start+1 for single intervals
},
},
wantErr: false,
},
{
input: "0b8beec9-911e-11e9-9f7b-8a057645f3f6:1-1175877800,246e88bd-0288-11e8-9cee-230cd2fc765b:1-592884032",
expected: map[string]*UUIDSet{
"0b8beec9-911e-11e9-9f7b-8a057645f3f6": {
SID: uuid.Must(uuid.Parse("0b8beec9-911e-11e9-9f7b-8a057645f3f6")),
Intervals: []Interval{{Start: 1, Stop: 1175877801}},
},
"246e88bd-0288-11e8-9cee-230cd2fc765b": {
SID: uuid.Must(uuid.Parse("246e88bd-0288-11e8-9cee-230cd2fc765b")),
Intervals: []Interval{{Start: 1, Stop: 592884033}},
},
},
wantErr: false,
},
{
input: "invalid",
wantErr: true,
},
{
input: "",
expected: nil,
wantErr: false,
},
}
for _, tt := range tests {
t.Run(tt.input, func(t *testing.T) {
got, err := ParseUUIDSet(tt.input)
if (err != nil) != tt.wantErr {
t.Errorf("ParseUUIDSet() error = %v, wantErr %v", err, tt.wantErr)
return
}
if !reflect.DeepEqual(got, tt.expected) {
t.Errorf("ParseUUIDSet() = %v, want %v", got, tt.expected)
}
})
}
}
func TestParseMysqlGTIDSet(t *testing.T) {
input := "0b8beec9-911e-11e9-9f7b-8a057645f3f6:1-1175877800,246e88bd-0288-11e8-9cee-230cd2fc765b:1-592884032"
expected := &MysqlGTIDSet{
Sets: map[string]*UUIDSet{
"0b8beec9-911e-11e9-9f7b-8a057645f3f6": {
SID: uuid.Must(uuid.Parse("0b8beec9-911e-11e9-9f7b-8a057645f3f6")),
Intervals: []Interval{{Start: 1, Stop: 1175877801}},
},
"246e88bd-0288-11e8-9cee-230cd2fc765b": {
SID: uuid.Must(uuid.Parse("246e88bd-0288-11e8-9cee-230cd2fc765b")),
Intervals: []Interval{{Start: 1, Stop: 592884033}},
},
},
}
got, err := ParseMysqlGTIDSet(input)
if err != nil {
t.Fatalf("ParseMysqlGTIDSet() error = %v", err)
}
if !reflect.DeepEqual(got, expected) {
t.Errorf("ParseMysqlGTIDSet() = %v, want %v", got, expected)
}
if got.String() != input {
t.Errorf("String() = %v, want %v", got.String(), input)
}
}