-
Notifications
You must be signed in to change notification settings - Fork 297
/
Copy pathxid_loadbalance_test.go
99 lines (89 loc) · 2.7 KB
/
xid_loadbalance_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
92
93
94
95
96
97
98
99
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF 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
*
* 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 loadbalance
import (
"sync"
"testing"
"github.com/golang/mock/gomock"
"github.com/stretchr/testify/assert"
"seata.apache.org/seata-go/pkg/remoting/mock"
)
func TestXidLoadBalance(t *testing.T) {
sessions := &sync.Map{}
ctrl := gomock.NewController(t)
defer ctrl.Finish()
m := mock.NewMockTestSession(ctrl)
m.EXPECT().RemoteAddr().AnyTimes().DoAndReturn(func() string {
return "127.0.0.1:8000"
})
m.EXPECT().IsClosed().AnyTimes().DoAndReturn(func() bool {
return false
})
sessions.Store(m, 8000)
m = mock.NewMockTestSession(ctrl)
m.EXPECT().RemoteAddr().AnyTimes().DoAndReturn(func() string {
return "127.0.0.1:8001"
})
m.EXPECT().IsClosed().AnyTimes().DoAndReturn(func() bool {
return true
})
sessions.Store(m, 8001)
m = mock.NewMockTestSession(ctrl)
m.EXPECT().RemoteAddr().AnyTimes().DoAndReturn(func() string {
return "127.0.0.1:8002"
})
m.EXPECT().IsClosed().AnyTimes().DoAndReturn(func() bool {
return false
})
sessions.Store(m, 8002)
// test
testCases := []struct {
name string
sessions *sync.Map
xid string
returnAddrs []string
}{
{
name: "normal",
sessions: sessions,
xid: "127.0.0.1:8000:111",
returnAddrs: []string{"127.0.0.1:8000"},
},
{
name: "session is closed",
sessions: sessions,
xid: "127.0.0.1:8001:111",
returnAddrs: []string{"127.0.0.1:8000", "127.0.0.1:8002"},
},
{
name: "xid is not exist",
sessions: sessions,
xid: "127.0.0.1:9000:111",
returnAddrs: []string{"127.0.0.1:8000", "127.0.0.1:8002"},
},
{
name: "ip is ipv6",
sessions: sessions,
xid: "2000:0000:0000:0000:0001:2345:6789:abcd:8002:111",
returnAddrs: []string{"127.0.0.1:8000", "127.0.0.1:8002"},
},
}
for _, test := range testCases {
session := XidLoadBalance(test.sessions, test.xid)
assert.Contains(t, test.returnAddrs, session.RemoteAddr())
}
}