1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-22 05:04:21 -04:00
v2fly/transport/internet/websocket/ws_test.go

149 lines
3.6 KiB
Go
Raw Normal View History

2016-12-22 18:30:46 -05:00
package websocket_test
2016-08-15 08:15:12 -04:00
import (
"context"
2018-08-09 10:51:47 -04:00
"runtime"
2017-02-23 19:05:16 -05:00
"testing"
"time"
2019-02-02 16:19:30 -05:00
"v2ray.com/core/common"
2017-08-29 08:32:54 -04:00
"v2ray.com/core/common/net"
"v2ray.com/core/common/protocol/tls/cert"
2016-09-30 10:53:40 -04:00
"v2ray.com/core/transport/internet"
"v2ray.com/core/transport/internet/tls"
2016-12-22 18:30:46 -05:00
. "v2ray.com/core/transport/internet/websocket"
2016-08-15 08:15:12 -04:00
)
2016-08-15 08:20:47 -04:00
func Test_listenWSAndDial(t *testing.T) {
listen, err := ListenWS(context.Background(), net.LocalHostIP, 13146, &internet.MemoryStreamConfig{
2018-09-07 08:50:25 -04:00
ProtocolName: "websocket",
ProtocolSettings: &Config{
Path: "ws",
},
}, func(conn internet.Connection) {
2017-05-08 18:01:15 -04:00
go func(c internet.Connection) {
defer c.Close()
2017-01-04 09:34:11 -05:00
2017-05-08 18:01:15 -04:00
var b [1024]byte
2019-02-10 09:02:28 -05:00
_, err := c.Read(b[:])
2017-05-08 18:01:15 -04:00
if err != nil {
return
}
2017-01-04 09:34:11 -05:00
2019-02-10 09:02:28 -05:00
common.Must2(c.Write([]byte("Response")))
2017-05-08 18:01:15 -04:00
}(conn)
})
2019-02-02 16:19:30 -05:00
common.Must(err)
ctx := context.Background()
streamSettings := &internet.MemoryStreamConfig{
2018-09-07 08:50:25 -04:00
ProtocolName: "websocket",
ProtocolSettings: &Config{Path: "ws"},
}
conn, err := Dial(ctx, net.TCPDestination(net.DomainAddress("localhost"), 13146), streamSettings)
2019-02-02 16:19:30 -05:00
common.Must(err)
2017-01-04 09:34:11 -05:00
_, err = conn.Write([]byte("Test connection 1"))
2019-02-02 16:19:30 -05:00
common.Must(err)
2017-01-04 09:34:11 -05:00
var b [1024]byte
n, err := conn.Read(b[:])
2019-02-02 16:19:30 -05:00
common.Must(err)
2019-02-10 09:02:28 -05:00
if string(b[:n]) != "Response" {
t.Error("response: ", string(b[:n]))
}
2017-01-04 09:34:11 -05:00
2019-02-10 09:02:28 -05:00
common.Must(conn.Close())
2016-08-15 09:29:15 -04:00
<-time.After(time.Second * 5)
conn, err = Dial(ctx, net.TCPDestination(net.DomainAddress("localhost"), 13146), streamSettings)
2019-02-02 16:19:30 -05:00
common.Must(err)
2017-01-04 09:34:11 -05:00
_, err = conn.Write([]byte("Test connection 2"))
2019-02-02 16:19:30 -05:00
common.Must(err)
2017-01-04 09:34:11 -05:00
n, err = conn.Read(b[:])
2019-02-02 16:19:30 -05:00
common.Must(err)
2019-02-10 09:02:28 -05:00
if string(b[:n]) != "Response" {
t.Error("response: ", string(b[:n]))
}
common.Must(conn.Close())
2019-02-10 09:02:28 -05:00
common.Must(listen.Close())
}
func TestDialWithRemoteAddr(t *testing.T) {
listen, err := ListenWS(context.Background(), net.LocalHostIP, 13148, &internet.MemoryStreamConfig{
2018-09-07 08:50:25 -04:00
ProtocolName: "websocket",
ProtocolSettings: &Config{
Path: "ws",
},
}, func(conn internet.Connection) {
go func(c internet.Connection) {
defer c.Close()
var b [1024]byte
2019-02-10 09:02:28 -05:00
_, err := c.Read(b[:])
2019-02-02 16:19:30 -05:00
//common.Must(err)
if err != nil {
return
}
_, err = c.Write([]byte("Response"))
2019-02-02 16:19:30 -05:00
common.Must(err)
}(conn)
})
2019-02-02 16:19:30 -05:00
common.Must(err)
conn, err := Dial(context.Background(), net.TCPDestination(net.DomainAddress("localhost"), 13148), &internet.MemoryStreamConfig{
2018-09-07 08:50:25 -04:00
ProtocolName: "websocket",
ProtocolSettings: &Config{Path: "ws", Header: []*Header{{Key: "X-Forwarded-For", Value: "1.1.1.1"}}},
})
2019-02-02 16:19:30 -05:00
common.Must(err)
_, err = conn.Write([]byte("Test connection 1"))
2019-02-02 16:19:30 -05:00
common.Must(err)
var b [1024]byte
n, err := conn.Read(b[:])
2019-02-02 16:19:30 -05:00
common.Must(err)
2019-02-10 09:02:28 -05:00
if string(b[:n]) != "Response" {
t.Error("response: ", string(b[:n]))
}
2017-01-04 09:34:11 -05:00
2019-02-10 09:02:28 -05:00
common.Must(listen.Close())
2016-08-15 08:20:47 -04:00
}
2016-08-15 09:19:53 -04:00
func Test_listenWSAndDial_TLS(t *testing.T) {
2018-08-09 10:51:47 -04:00
if runtime.GOARCH == "arm64" {
return
}
2017-10-24 10:15:35 -04:00
start := time.Now()
2016-09-30 10:53:40 -04:00
streamSettings := &internet.MemoryStreamConfig{
2018-09-07 08:50:25 -04:00
ProtocolName: "websocket",
ProtocolSettings: &Config{
Path: "wss",
},
SecurityType: "tls",
SecuritySettings: &tls.Config{
AllowInsecure: true,
Certificate: []*tls.Certificate{tls.ParseCertificate(cert.MustGenerate(nil, cert.CommonName("localhost")))},
},
}
listen, err := ListenWS(context.Background(), net.LocalHostIP, 13143, streamSettings, func(conn internet.Connection) {
2017-05-08 18:01:15 -04:00
go func() {
2017-10-22 10:04:39 -04:00
_ = conn.Close()
2017-05-08 18:01:15 -04:00
}()
})
2019-02-02 16:19:30 -05:00
common.Must(err)
2017-05-08 18:01:15 -04:00
defer listen.Close()
2017-02-23 19:05:16 -05:00
conn, err := Dial(context.Background(), net.TCPDestination(net.DomainAddress("localhost"), 13143), streamSettings)
2019-02-02 16:19:30 -05:00
common.Must(err)
2017-10-22 10:04:39 -04:00
_ = conn.Close()
2017-10-24 10:15:35 -04:00
end := time.Now()
2019-02-10 09:02:28 -05:00
if !end.Before(start.Add(time.Second * 5)) {
t.Error("end: ", end, " start: ", start)
}
2016-08-15 09:19:53 -04:00
}