1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-03 20:45:23 +00:00
v2fly/transport/internet/kcp/kcp_test.go

74 lines
1.7 KiB
Go
Raw Normal View History

2016-07-12 21:54:54 +00:00
package kcp_test
import (
"context"
2016-07-12 21:54:54 +00:00
"crypto/rand"
"io"
"sync"
"testing"
"time"
"v2ray.com/core/common/net"
2016-09-30 14:53:40 +00:00
"v2ray.com/core/transport/internet"
2016-08-20 18:55:45 +00:00
. "v2ray.com/core/transport/internet/kcp"
2017-10-26 19:44:22 +00:00
. "v2ray.com/ext/assert"
2016-07-12 21:54:54 +00:00
)
func TestDialAndListen(t *testing.T) {
2017-10-24 14:15:35 +00:00
assert := With(t)
2016-07-12 21:54:54 +00:00
2018-02-08 15:22:44 +00:00
listerner, err := NewListener(internet.ContextWithTransportSettings(context.Background(), &Config{}), net.LocalHostIP, net.Port(0), func(conn internet.Connection) {
2017-05-08 22:01:15 +00:00
go func(c internet.Connection) {
payload := make([]byte, 4096)
for {
nBytes, err := c.Read(payload)
if err != nil {
break
}
for idx, b := range payload[:nBytes] {
payload[idx] = b ^ 'c'
}
c.Write(payload[:nBytes])
}
c.Close()
}(conn)
})
2017-10-24 14:15:35 +00:00
assert(err, IsNil)
port := net.Port(listerner.Addr().(*net.UDPAddr).Port)
2016-07-12 21:54:54 +00:00
ctx := internet.ContextWithTransportSettings(context.Background(), &Config{})
2016-07-12 21:54:54 +00:00
wg := new(sync.WaitGroup)
for i := 0; i < 10; i++ {
clientConn, err := DialKCP(ctx, net.UDPDestination(net.LocalHostIP, port))
2017-10-24 14:15:35 +00:00
assert(err, IsNil)
2016-07-12 21:54:54 +00:00
wg.Add(1)
go func() {
clientSend := make([]byte, 1024*1024)
rand.Read(clientSend)
2016-07-14 19:31:54 +00:00
go clientConn.Write(clientSend)
2016-07-12 21:54:54 +00:00
clientReceived := make([]byte, 1024*1024)
nBytes, _ := io.ReadFull(clientConn, clientReceived)
2017-10-24 14:15:35 +00:00
assert(nBytes, Equals, len(clientReceived))
2016-07-12 21:54:54 +00:00
clientConn.Close()
clientExpected := make([]byte, 1024*1024)
for idx, b := range clientSend {
clientExpected[idx] = b ^ 'c'
}
2017-10-24 14:15:35 +00:00
assert(clientReceived, Equals, clientExpected)
2016-07-12 21:54:54 +00:00
wg.Done()
}()
}
wg.Wait()
2016-11-28 21:05:57 +00:00
for i := 0; i < 60 && listerner.ActiveConnections() > 0; i++ {
time.Sleep(500 * time.Millisecond)
}
2017-10-24 14:15:35 +00:00
assert(listerner.ActiveConnections(), Equals, 0)
2016-07-12 21:54:54 +00:00
listerner.Close()
}