forked from storj/utp-go
-
Notifications
You must be signed in to change notification settings - Fork 2
/
utp_listener_test.go
147 lines (134 loc) · 3.78 KB
/
utp_listener_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
package utp_test
import (
"context"
"crypto/rand"
"encoding/binary"
"fmt"
"github.com/optimism-java/utp-go"
"github.com/stretchr/testify/assert"
"go.uber.org/zap"
"go.uber.org/zap/zapcore"
"go.uber.org/zap/zaptest"
"io"
"sync"
"testing"
"time"
)
func TestAcceptUtpWithConnId(t *testing.T) {
logger := zaptest.NewLogger(t, zaptest.Level(zapcore.DebugLevel))
l := newTestServer(t, logger.Named("server"))
var wg sync.WaitGroup
wg.Add(1)
go func() {
conn, err := l.AcceptUTPWithConnId(12)
if err != nil {
panic(err)
}
logger.Info("accept a conn with connectionId:", zap.Any("connId", 12))
buf := make([]byte, 100)
n, err := conn.Read(buf)
if err != nil {
panic(err)
}
assert.Equal(t, "hello! connId is 12", string(buf[:n]))
wg.Done()
}()
connSetConnId, err := utp.DialOptions("utp", l.Addr().String(),
utp.WithContext(context.Background()), utp.WithConnId(12))
if err != nil {
panic(err)
}
_, err = connSetConnId.Write([]byte("hello! connId is 12"))
if err != nil {
panic(err)
}
wg.Wait()
err = l.Close()
if err != nil {
panic(err)
}
}
func TestAcceptWithoutConnId(t *testing.T) {
logger := zaptest.NewLogger(t, zaptest.Level(zapcore.DebugLevel))
l := newTestServer(t, logger.Named("server"))
var wg sync.WaitGroup
wg.Add(1)
go func() {
conn, err := l.AcceptUTP()
if err != nil {
panic(err)
}
logger.Info("accept a conn without connectionId")
buf := make([]byte, 100)
n, err := conn.Read(buf)
if err != nil {
panic(err)
}
assert.Equal(t, "hello! connId is not defined", string(buf[:n]))
n, err = conn.Write([]byte("hello! connId is not defined"))
assert.NoError(t, err, "server write to conn has error")
wg.Done()
}()
connNoSetConnId, err := utp.DialOptions("utp", l.Addr().String(), utp.WithLogger(logger.Named("client")))
if err != nil {
panic(err)
}
buf := []byte("hello! connId is not defined")
fmt.Println("write buf:", len(buf))
_, err = connNoSetConnId.Write(buf)
if err != nil {
panic(err)
}
readBuf := make([]byte, 100)
n, err := connNoSetConnId.Read(readBuf)
assert.NoError(t, err, "cli conn read buf has error")
assert.Equal(t, "hello! connId is not defined", string(readBuf[:n]))
}
func TestAcceptTimeout(t *testing.T) {
logger := zaptest.NewLogger(t, zaptest.Level(zapcore.DebugLevel))
l := newTestServer(t, logger.Named("server"))
go func() {
ctx, cancel := context.WithTimeout(context.Background(), time.Duration(1)*time.Second)
_, err := l.AcceptUTPContext(ctx, 13)
assert.Equal(t, true, err != nil, "except timeout but not")
cancel()
}()
time.Sleep(time.Duration(2) * time.Second)
}
func TestListenerClosed(t *testing.T) {
logger := zaptest.NewLogger(t, zaptest.Level(zapcore.DebugLevel))
l := newTestServer(t, logger.Named("server"))
go func() {
now := time.Now()
timeout := time.Duration(10) * time.Second
ctx, cancel := context.WithTimeout(context.Background(), timeout)
_, _ = l.AcceptUTPContext(ctx, 13)
timeComsumed := time.Since(now).Seconds()
assert.Equal(t, true, timeComsumed < timeout.Seconds(), "except stoped immediately but not")
cancel()
}()
_ = l.Close()
now := time.Now()
timeout := time.Duration(10) * time.Second
ctx, cancel := context.WithTimeout(context.Background(), timeout)
_, _ = l.AcceptUTPContext(ctx, 13)
timeComsumed := time.Since(now).Seconds()
assert.Equal(t, true, timeComsumed < timeout.Seconds(), "except stoped immediately but not")
cancel()
}
func randomUint32() uint32 {
var buf [4]byte
_, err := io.ReadFull(rand.Reader, buf[:])
if err != nil {
panic("can't read from random source: " + err.Error())
}
return binary.LittleEndian.Uint32(buf[:])
}
func randomPayload(l int) []byte {
buf := make([]byte, l)
_, err := io.ReadFull(rand.Reader, buf[:])
if err != nil {
panic("can't read from random source: " + err.Error())
}
return buf
}