1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-10-03 01:06:03 -04:00
v2fly/transport/internet/websocket/ws_test.go

103 lines
2.7 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 (
2017-01-04 09:34:11 -05:00
"bytes"
"context"
2017-02-23 19:05:16 -05:00
"testing"
"time"
2017-08-29 08:32:54 -04:00
"v2ray.com/core/common/net"
2017-01-12 10:10:03 -05:00
tlsgen "v2ray.com/core/testing/tls"
2016-09-30 10:53:40 -04:00
"v2ray.com/core/transport/internet"
2016-10-02 17:43:58 -04:00
v2tls "v2ray.com/core/transport/internet/tls"
2016-12-22 18:30:46 -05:00
. "v2ray.com/core/transport/internet/websocket"
2017-10-24 10:15:35 -04:00
. "v2ray.com/ext/assert"
2016-08-15 08:15:12 -04:00
)
2016-08-15 08:20:47 -04:00
func Test_listenWSAndDial(t *testing.T) {
2017-10-24 10:15:35 -04:00
assert := With(t)
2017-02-23 19:05:16 -05:00
listen, err := ListenWS(internet.ContextWithTransportSettings(context.Background(), &Config{
Path: "ws",
2017-08-29 08:32:54 -04:00
}), net.DomainAddress("localhost"), 13146, func(ctx context.Context, conn internet.Connection) bool {
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
n, err := c.Read(b[:])
2017-10-24 10:15:35 -04:00
//assert(err, IsNil)
2017-05-08 18:01:15 -04:00
if err != nil {
return
}
2017-10-24 10:15:35 -04:00
assert(bytes.HasPrefix(b[:n], []byte("Test connection")), IsTrue)
2017-01-04 09:34:11 -05:00
2017-05-08 18:01:15 -04:00
_, err = c.Write([]byte("Response"))
2017-10-24 10:15:35 -04:00
assert(err, IsNil)
2017-05-08 18:01:15 -04:00
}(conn)
return true
})
2017-10-24 10:15:35 -04:00
assert(err, IsNil)
ctx := internet.ContextWithTransportSettings(context.Background(), &Config{Path: "ws"})
2017-08-29 08:32:54 -04:00
conn, err := Dial(ctx, net.TCPDestination(net.DomainAddress("localhost"), 13146))
2017-10-24 10:15:35 -04:00
assert(err, IsNil)
2017-01-04 09:34:11 -05:00
_, err = conn.Write([]byte("Test connection 1"))
2017-10-24 10:15:35 -04:00
assert(err, IsNil)
2017-01-04 09:34:11 -05:00
var b [1024]byte
n, err := conn.Read(b[:])
2017-10-24 10:15:35 -04:00
assert(err, IsNil)
assert(string(b[:n]), Equals, "Response")
2017-01-04 09:34:11 -05:00
2017-10-24 10:15:35 -04:00
assert(conn.Close(), IsNil)
2016-08-15 09:29:15 -04:00
<-time.After(time.Second * 5)
2017-08-29 08:32:54 -04:00
conn, err = Dial(ctx, net.TCPDestination(net.DomainAddress("localhost"), 13146))
2017-10-24 10:15:35 -04:00
assert(err, IsNil)
2017-01-04 09:34:11 -05:00
_, err = conn.Write([]byte("Test connection 2"))
2017-10-24 10:15:35 -04:00
assert(err, IsNil)
2017-01-04 09:34:11 -05:00
n, err = conn.Read(b[:])
2017-10-24 10:15:35 -04:00
assert(err, IsNil)
assert(string(b[:n]), Equals, "Response")
assert(conn.Close(), IsNil)
2016-08-15 09:29:15 -04:00
<-time.After(time.Second * 15)
2017-08-29 08:32:54 -04:00
conn, err = Dial(ctx, net.TCPDestination(net.DomainAddress("localhost"), 13146))
2017-10-24 10:15:35 -04:00
assert(err, IsNil)
2017-01-04 09:34:11 -05:00
_, err = conn.Write([]byte("Test connection 3"))
2017-10-24 10:15:35 -04:00
assert(err, IsNil)
2017-01-04 09:34:11 -05:00
n, err = conn.Read(b[:])
2017-10-24 10:15:35 -04:00
assert(err, IsNil)
assert(string(b[:n]), Equals, "Response")
assert(conn.Close(), IsNil)
2017-01-04 09:34:11 -05:00
2017-10-24 10:15:35 -04:00
assert(listen.Close(), IsNil)
2016-08-15 08:20:47 -04:00
}
2016-08-15 09:19:53 -04:00
func Test_listenWSAndDial_TLS(t *testing.T) {
2017-10-24 10:15:35 -04:00
assert := With(t)
start := time.Now()
2016-09-30 10:53:40 -04:00
ctx := internet.ContextWithTransportSettings(context.Background(), &Config{
Path: "wss",
2016-09-30 10:53:40 -04:00
})
ctx = internet.ContextWithSecuritySettings(ctx, &v2tls.Config{
AllowInsecure: true,
2017-02-23 19:05:16 -05:00
Certificate: []*v2tls.Certificate{tlsgen.GenerateCertificateForTest()},
})
2017-08-29 08:32:54 -04:00
listen, err := ListenWS(ctx, net.DomainAddress("localhost"), 13143, func(ctx context.Context, conn internet.Connection) bool {
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
}()
return true
})
2017-10-24 10:15:35 -04:00
assert(err, IsNil)
2017-05-08 18:01:15 -04:00
defer listen.Close()
2017-02-23 19:05:16 -05:00
2017-08-29 08:32:54 -04:00
conn, err := Dial(ctx, net.TCPDestination(net.DomainAddress("localhost"), 13143))
2017-10-24 10:15:35 -04:00
assert(err, IsNil)
2017-10-22 10:04:39 -04:00
_ = conn.Close()
2017-10-24 10:15:35 -04:00
end := time.Now()
assert(end.Before(start.Add(time.Second*5)), IsTrue)
2016-08-15 09:19:53 -04:00
}