2016-12-22 18:30:46 -05:00
|
|
|
package websocket_test
|
2016-08-15 08:15:12 -04:00
|
|
|
|
|
|
|
import (
|
2017-01-26 14:46:44 -05:00
|
|
|
"context"
|
2018-08-09 10:51:47 -04:00
|
|
|
"runtime"
|
2017-02-23 19:05:16 -05:00
|
|
|
"testing"
|
|
|
|
"time"
|
2017-01-26 14:46:44 -05:00
|
|
|
|
2021-02-16 15:31:50 -05:00
|
|
|
"github.com/v2fly/v2ray-core/v4/common"
|
|
|
|
"github.com/v2fly/v2ray-core/v4/common/net"
|
|
|
|
"github.com/v2fly/v2ray-core/v4/common/protocol/tls/cert"
|
|
|
|
"github.com/v2fly/v2ray-core/v4/transport/internet"
|
|
|
|
"github.com/v2fly/v2ray-core/v4/transport/internet/tls"
|
|
|
|
. "github.com/v2fly/v2ray-core/v4/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) {
|
2018-11-21 08:54:40 -05:00
|
|
|
listen, err := ListenWS(context.Background(), net.LocalHostIP, 13146, &internet.MemoryStreamConfig{
|
2018-09-07 08:50:25 -04:00
|
|
|
ProtocolName: "websocket",
|
|
|
|
ProtocolSettings: &Config{
|
|
|
|
Path: "ws",
|
|
|
|
},
|
2018-11-21 08:54:40 -05:00
|
|
|
}, 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)
|
2017-01-26 14:46:44 -05:00
|
|
|
|
2018-11-21 08:54:40 -05:00
|
|
|
ctx := context.Background()
|
|
|
|
streamSettings := &internet.MemoryStreamConfig{
|
2018-09-07 08:50:25 -04:00
|
|
|
ProtocolName: "websocket",
|
|
|
|
ProtocolSettings: &Config{Path: "ws"},
|
2018-11-21 08:54:40 -05:00
|
|
|
}
|
|
|
|
conn, err := Dial(ctx, net.TCPDestination(net.DomainAddress("localhost"), 13146), streamSettings)
|
2017-01-26 14:46:44 -05:00
|
|
|
|
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)
|
2018-11-21 08:54:40 -05:00
|
|
|
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())
|
2017-12-18 14:34:00 -05:00
|
|
|
|
2019-02-10 09:02:28 -05:00
|
|
|
common.Must(listen.Close())
|
2017-12-18 14:34:00 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestDialWithRemoteAddr(t *testing.T) {
|
2018-11-21 08:54:40 -05:00
|
|
|
listen, err := ListenWS(context.Background(), net.LocalHostIP, 13148, &internet.MemoryStreamConfig{
|
2018-09-07 08:50:25 -04:00
|
|
|
ProtocolName: "websocket",
|
|
|
|
ProtocolSettings: &Config{
|
|
|
|
Path: "ws",
|
|
|
|
},
|
2018-11-21 08:54:40 -05:00
|
|
|
}, func(conn internet.Connection) {
|
2017-12-18 14:34:00 -05:00
|
|
|
go func(c internet.Connection) {
|
|
|
|
defer c.Close()
|
|
|
|
|
|
|
|
var b [1024]byte
|
2019-02-10 09:02:28 -05:00
|
|
|
_, err := c.Read(b[:])
|
2020-10-11 07:22:46 -04:00
|
|
|
// common.Must(err)
|
2017-12-18 14:34:00 -05:00
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err = c.Write([]byte("Response"))
|
2019-02-02 16:19:30 -05:00
|
|
|
common.Must(err)
|
2017-12-18 14:34:00 -05:00
|
|
|
}(conn)
|
|
|
|
})
|
2019-02-02 16:19:30 -05:00
|
|
|
common.Must(err)
|
2017-12-18 14:34:00 -05:00
|
|
|
|
2018-11-21 08:54:40 -05:00
|
|
|
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"}}},
|
|
|
|
})
|
2017-12-18 14:34:00 -05:00
|
|
|
|
2019-02-02 16:19:30 -05:00
|
|
|
common.Must(err)
|
2017-12-18 14:34:00 -05:00
|
|
|
_, err = conn.Write([]byte("Test connection 1"))
|
2019-02-02 16:19:30 -05:00
|
|
|
common.Must(err)
|
2017-12-18 14:34:00 -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(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
|
|
|
|
2018-11-21 08:54:40 -05: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")))},
|
|
|
|
},
|
2018-11-21 08:54:40 -05:00
|
|
|
}
|
|
|
|
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
|
|
|
|
2018-11-21 08:54:40 -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
|
|
|
}
|