mirror of
https://github.com/v2fly/v2ray-core.git
synced 2025-01-18 07:17:32 -05:00
test case for server picker
This commit is contained in:
parent
f4aa50a160
commit
c96533f278
52
common/protocol/server_picker_test.go
Normal file
52
common/protocol/server_picker_test.go
Normal file
@ -0,0 +1,52 @@
|
|||||||
|
package protocol_test
|
||||||
|
|
||||||
|
import (
|
||||||
|
"testing"
|
||||||
|
"time"
|
||||||
|
|
||||||
|
v2net "github.com/v2ray/v2ray-core/common/net"
|
||||||
|
. "github.com/v2ray/v2ray-core/common/protocol"
|
||||||
|
"github.com/v2ray/v2ray-core/testing/assert"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestServerList(t *testing.T) {
|
||||||
|
assert := assert.On(t)
|
||||||
|
|
||||||
|
list := NewServerList()
|
||||||
|
list.AddServer(NewServerSpec(v2net.TCPDestination(v2net.LocalHostIP, v2net.Port(1)), AlwaysValid()))
|
||||||
|
assert.Uint32(list.Size()).Equals(1)
|
||||||
|
list.AddServer(NewServerSpec(v2net.TCPDestination(v2net.LocalHostIP, v2net.Port(2)), BeforeTime(time.Now().Add(time.Second))))
|
||||||
|
assert.Uint32(list.Size()).Equals(2)
|
||||||
|
|
||||||
|
server := list.GetServer(1)
|
||||||
|
assert.Port(server.Destination().Port()).Equals(2)
|
||||||
|
time.Sleep(2 * time.Second)
|
||||||
|
server = list.GetServer(1)
|
||||||
|
assert.Pointer(server).IsNil()
|
||||||
|
|
||||||
|
server = list.GetServer(0)
|
||||||
|
assert.Port(server.Destination().Port()).Equals(1)
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestServerPicker(t *testing.T) {
|
||||||
|
assert := assert.On(t)
|
||||||
|
|
||||||
|
list := NewServerList()
|
||||||
|
list.AddServer(NewServerSpec(v2net.TCPDestination(v2net.LocalHostIP, v2net.Port(1)), AlwaysValid()))
|
||||||
|
list.AddServer(NewServerSpec(v2net.TCPDestination(v2net.LocalHostIP, v2net.Port(2)), BeforeTime(time.Now().Add(time.Second))))
|
||||||
|
list.AddServer(NewServerSpec(v2net.TCPDestination(v2net.LocalHostIP, v2net.Port(3)), BeforeTime(time.Now().Add(time.Second))))
|
||||||
|
|
||||||
|
picker := NewRoundRobinServerPicker(list)
|
||||||
|
server := picker.PickServer()
|
||||||
|
assert.Port(server.Destination().Port()).Equals(1)
|
||||||
|
server = picker.PickServer()
|
||||||
|
assert.Port(server.Destination().Port()).Equals(2)
|
||||||
|
server = picker.PickServer()
|
||||||
|
assert.Port(server.Destination().Port()).Equals(3)
|
||||||
|
|
||||||
|
time.Sleep(2 * time.Second)
|
||||||
|
server = picker.PickServer()
|
||||||
|
assert.Port(server.Destination().Port()).Equals(1)
|
||||||
|
server = picker.PickServer()
|
||||||
|
assert.Port(server.Destination().Port()).Equals(1)
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user