1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-30 07:46:41 -04:00
v2fly/transport/internet/sockopt_test.go

41 lines
884 B
Go
Raw Normal View History

2018-09-10 08:51:44 -04:00
package internet_test
import (
"context"
"testing"
"v2ray.com/core/common"
"v2ray.com/core/common/buf"
"v2ray.com/core/common/compare"
"v2ray.com/core/testing/servers/tcp"
. "v2ray.com/core/transport/internet"
)
2018-09-10 13:36:37 -04:00
func TestTCPFastOpen(t *testing.T) {
2018-09-10 08:51:44 -04:00
tcpServer := tcp.Server{
MsgProcessor: func(b []byte) []byte {
return b
},
}
dest, err := tcpServer.StartContext(context.Background(), &SocketConfig{Tfo: SocketConfig_Enable})
2018-09-10 08:51:44 -04:00
common.Must(err)
defer tcpServer.Close()
ctx := context.Background()
dialer := DefaultSystemDialer{}
conn, err := dialer.Dial(ctx, nil, dest, &SocketConfig{
Tfo: SocketConfig_Enable,
})
2018-09-10 08:51:44 -04:00
common.Must(err)
defer conn.Close()
_, err = conn.Write([]byte("abcd"))
common.Must(err)
b := buf.New()
2018-11-02 10:01:33 -04:00
common.Must2(b.ReadFrom(conn))
2018-09-10 08:51:44 -04:00
if err := compare.BytesEqualWithDetail(b.Bytes(), []byte("abcd")); err != nil {
t.Fatal(err)
}
}