| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- package internet_test
- import (
- "context"
- "testing"
- "github.com/google/go-cmp/cmp"
- "github.com/v2fly/v2ray-core/v5/common"
- "github.com/v2fly/v2ray-core/v5/common/buf"
- "github.com/v2fly/v2ray-core/v5/testing/servers/tcp"
- . "github.com/v2fly/v2ray-core/v5/transport/internet"
- )
- func TestTCPFastOpen(t *testing.T) {
- tcpServer := tcp.Server{
- MsgProcessor: func(b []byte) []byte {
- return b
- },
- }
- dest, err := tcpServer.StartContext(context.Background(), &SocketConfig{Tfo: SocketConfig_Enable})
- common.Must(err)
- defer tcpServer.Close()
- ctx := context.Background()
- dialer := DefaultSystemDialer{}
- conn, err := dialer.Dial(ctx, nil, dest, &SocketConfig{
- Tfo: SocketConfig_Enable,
- })
- common.Must(err)
- defer conn.Close()
- _, err = conn.Write([]byte("abcd"))
- common.Must(err)
- b := buf.New()
- common.Must2(b.ReadFrom(conn))
- if r := cmp.Diff(b.Bytes(), []byte("abcd")); r != "" {
- t.Fatal(r)
- }
- }
- // Currently, Multipath TCP is only supported on Linux.
- // We test the Multipath TCP Settings on other platforms for ensure code will not have any negative impact on other platforms.
- func TestMultipathTCP(t *testing.T) {
- tcpServer := tcp.Server{
- MsgProcessor: func(b []byte) []byte {
- return b
- },
- }
- dest, err := tcpServer.StartContext(context.Background(), &SocketConfig{Mptcp: MPTCPState_Enable})
- common.Must(err)
- defer tcpServer.Close()
- ctx := context.Background()
- dialer := DefaultSystemDialer{}
- conn, err := dialer.Dial(ctx, nil, dest, &SocketConfig{
- Mptcp: MPTCPState_Enable,
- })
- common.Must(err)
- defer conn.Close()
- _, err = conn.Write([]byte("abcd"))
- common.Must(err)
- b := buf.New()
- common.Must2(b.ReadFrom(conn))
- if r := cmp.Diff(b.Bytes(), []byte("abcd")); r != "" {
- t.Fatal(r)
- }
- }
|