-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconn_test.go
339 lines (290 loc) · 8.81 KB
/
conn_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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
package utp_go
import (
"math"
"net"
"testing"
"time"
"github.com/ethereum/go-ethereum/log"
"github.com/stretchr/testify/require"
)
const (
TEST_BUFFER_SIZE = 2048
TEST_DELAYtime = time.Millisecond * 100
)
func CreateTestConnection(endpoint Endpoint) *connection {
// Create channels
socketEvents := make(chan *socketEvent, 100)
reads := make(chan *readOrWriteResult, 100)
// Create peer address
peer := &TcpPeer{&net.TCPAddr{
IP: net.IPv4(127, 0, 0, 1),
Port: 3400,
},
}
// Create connection ID
cid := ConnectionId{
Send: 101,
Recv: 100,
Peer: peer,
}
conn := &connection{
logger: log.Root(),
state: NewConnState(make(chan error, 1)),
cid: &cid,
config: NewConnectionConfig(),
endpoint: &endpoint,
peerTsDiff: 100 * time.Millisecond,
peerRecvWindow: math.MaxUint32,
socketEvents: socketEvents,
unacked: newDelayMap[*packet](),
reads: reads,
readable: make(chan struct{}, 1),
pendingWrites: make([]*queuedWrite, 0),
writable: make(chan struct{}, 1),
latestTimeout: nil,
}
return conn
}
func TestOnSynInitiator(t *testing.T) {
syn := uint16(100)
endpoint := Endpoint{
Type: Initiator,
SynNum: syn,
}
conn := CreateTestConnection(endpoint)
conn.onSyn(syn)
require.Equal(t, ConnClosed, conn.state.stateType, "expected state to be closed")
require.ErrorIs(t, conn.state.Err, ErrSynFromAcceptor, "expected error to be %v, got %v", ErrSynFromAcceptor, conn.state.Err)
}
func TestOnSynAcceptor(t *testing.T) {
// Setup
syn := uint16(100)
synAck := uint16(101)
endpoint := Endpoint{
Type: Acceptor,
SynNum: syn,
SynAck: synAck,
}
conn := CreateTestConnection(endpoint)
conn.onSyn(syn)
require.Equal(t, ConnConnecting, conn.state.stateType, "expected state to be connecting, got %v", conn.state.stateType)
}
func TestOnSynAcceptorNonMatchingSyn(t *testing.T) {
// Step 1: Setup the connection with expected syn
syn := uint16(100)
synAck := uint16(101)
endpoint := Endpoint{
Type: Acceptor,
SynNum: syn,
SynAck: synAck,
}
conn := CreateTestConnection(endpoint)
// Step 2: Try with different syn value
altSyn := uint16(128)
conn.onSyn(altSyn)
require.Equal(t, ConnClosed, conn.state.stateType,
"expected state to be closed, got %v", conn.state.stateType)
require.ErrorIs(t, conn.state.Err, ErrInvalidSyn,
"expected error to be %v, got %v", ErrInvalidSyn, conn.state.Err)
}
func TestOnStateConnectingInitiator(t *testing.T) {
// Setup
syn := uint16(100)
endpoint := Endpoint{
Type: Initiator,
SynNum: syn,
}
conn := CreateTestConnection(endpoint)
// Test
seqNum := uint16(1)
conn.onState(seqNum, syn)
// Verify
require.Equal(t, ConnConnected, conn.state.stateType,
"expected state to be connected, got %v", conn.state.stateType)
require.Nil(t, conn.state.closing, "expected closing to be nil")
}
func TestOnPacketInvalidAckNum(t *testing.T) {
// Setup connection
syn := uint16(100)
synAck := uint16(101)
endpoint := Endpoint{
Type: Acceptor,
SynNum: syn,
SynAck: synAck,
}
conn := CreateTestConnection(endpoint)
// Setup congestion control
congestionCtrl := newDefaultController(fromConnConfig(conn.config))
sentPackets := newSentPacketsWithoutLogger(synAck, congestionCtrl)
// Send a packet
data := []byte{0xef}
length := uint32(64)
now := time.Now()
sentPackets.OnTransmit(
synAck+1,
st_data,
data,
length,
now,
)
// Setup buffers and state
sendBuf := newSendBuffer(TEST_BUFFER_SIZE)
recvBuf := newReceiveBuffer(TEST_BUFFER_SIZE, syn)
conn.state = &ConnState{
stateType: ConnConnected,
SentPackets: sentPackets,
SendBuf: sendBuf,
RecvBuf: recvBuf,
}
// Process invalid ack
delay := 100 * time.Millisecond
ackResult := conn.processAck(synAck+2, nil, delay, now)
// Verify results
require.Equal(t, ConnClosed, conn.state.stateType, "expected state to be closed")
require.ErrorIs(t, conn.state.Err, ErrInvalidAckNum, "expected error to be %v, got %v", ErrInvalidAckNum, conn.state.Err)
require.Error(t, ackResult, "expected processAck to return an error")
}
func TestOnFinEstablished(t *testing.T) {
// Setup
syn := uint16(100)
synAck := uint16(101)
endpoint := Endpoint{
Type: Acceptor,
SynNum: syn,
SynAck: synAck,
}
conn := CreateTestConnection(endpoint)
// Create buffers and controllers
sendBuf := newSendBuffer(TEST_BUFFER_SIZE)
congestionCtrl := newDefaultController(fromConnConfig(conn.config))
sentPackets := newSentPacketsWithoutLogger(synAck, congestionCtrl)
recvBuf := newReceiveBuffer(TEST_BUFFER_SIZE, syn)
// Set connected state
conn.state = &ConnState{
stateType: ConnConnected,
SendBuf: sendBuf,
SentPackets: sentPackets,
RecvBuf: recvBuf,
}
// Test FIN
fin := syn + 3 // wrapping add in Go handles overflow automatically
err := conn.onFin(fin, []byte{})
require.NoError(t, err, "expected no error")
// Verify state
require.Equal(t, ConnConnected, conn.state.stateType,
"expected state to be Connected, got %v", conn.state.stateType)
require.NotNil(t, conn.state.closing, "expected closing to be not nil")
require.Nil(t, conn.state.closing.LocalFin, "expected closing.LocalFin to be nil")
require.Equal(t, fin, *conn.state.closing.RemoteFin,
"expected closing.RemoteFin to be %d, got %d", fin, *conn.state.closing.RemoteFin)
}
func TestOnFinClosing(t *testing.T) {
// Step 1: Setup initial connection
syn := uint16(100)
synAck := uint16(101)
endpoint := Endpoint{
Type: Acceptor,
SynNum: syn,
SynAck: synAck,
}
conn := CreateTestConnection(endpoint)
// Step 2: Setup buffers and controllers
sendBuf := newSendBuffer(TEST_BUFFER_SIZE)
congestionCtrl := newDefaultController(fromConnConfig(conn.config))
sentPackets := newSentPacketsWithoutLogger(synAck, congestionCtrl)
recvBuf := newReceiveBuffer(TEST_BUFFER_SIZE, syn)
// Step 3: Set local fin
localFin := synAck + 3
conn.state = &ConnState{
stateType: ConnConnected,
SendBuf: sendBuf,
SentPackets: sentPackets,
RecvBuf: recvBuf,
closing: &ClosingRecord{
LocalFin: &localFin,
RemoteFin: nil,
},
}
// Step 4: Test remote fin
remoteFin := syn + 3
err := conn.onFin(remoteFin, []byte{})
require.NoError(t, err, "expected no error")
// Step 5: Verify state
require.Equal(t, ConnConnected, conn.state.stateType,
"expected state to be connected, got %v", conn.state.stateType)
require.NotNil(t, conn.state.closing, "expected closing to be not nil")
require.NotNil(t, conn.state.closing.LocalFin, "expected closing.LocalFin to be not nil")
require.Equal(t, localFin, *conn.state.closing.LocalFin,
"expected closing.LocalFin to be %d, got %d", localFin, *conn.state.closing.LocalFin)
require.NotNil(t, conn.state.closing.RemoteFin, "expected closing.RemoteFin to be not nil")
require.Equal(t, remoteFin, *conn.state.closing.RemoteFin,
"expected closing.LocalFin to be %d, got %d", remoteFin, *conn.state.closing.RemoteFin)
}
func TestOnFinClosingNonMatchingFin(t *testing.T) {
// Step 1: Setup connection
syn := uint16(100)
synAck := uint16(101)
endpoint := Endpoint{
Type: Acceptor,
SynNum: syn,
SynAck: synAck,
}
conn := CreateTestConnection(endpoint)
// Step 2: Setup buffers
sendBuf := newSendBuffer(TEST_BUFFER_SIZE)
congestionCtrl := newDefaultController(fromConnConfig(conn.config))
sentPackets := newSentPacketsWithoutLogger(synAck, congestionCtrl)
recvBuf := newReceiveBuffer(TEST_BUFFER_SIZE, syn)
// Step 3: Set initial fin
fin := syn + 3
conn.state = &ConnState{
stateType: ConnConnected,
SendBuf: sendBuf,
SentPackets: sentPackets,
RecvBuf: recvBuf,
closing: &ClosingRecord{
LocalFin: nil,
RemoteFin: &fin,
},
}
// Step 4: Test with different fin
altFin := fin + 1
err := conn.onFin(altFin, []byte{})
require.NoError(t, err, "expected no error")
// Step 5: Verify error state
require.Equal(t, ConnClosed, conn.state.stateType, "expected state to be closed")
require.ErrorIs(t, conn.state.Err, ErrInvalidFin,
"expected error to be %v, got %v", ErrInvalidFin, conn.state.Err)
}
func TestOnResetNonClosed(t *testing.T) {
// Setup
syn := uint16(100)
endpoint := Endpoint{
Type: Initiator,
SynNum: syn,
}
conn := CreateTestConnection(endpoint)
// Test reset
conn.onReset()
// Verify state
require.Equal(t, ConnClosed, conn.state.stateType, "expected state to be closed")
require.ErrorIs(t, conn.state.Err, ErrReset, "expected error %v, got %v", ErrReset, conn.state.Err)
}
func TestOnResetClosed(t *testing.T) {
// Setup
syn := uint16(100)
endpoint := Endpoint{
Type: Initiator,
SynNum: syn,
}
conn := CreateTestConnection(endpoint)
// Set initial closed state
conn.state = &ConnState{
stateType: ConnClosed,
}
// Test reset
conn.onReset()
// Verify state remains unchanged
require.Equal(t, ConnClosed, conn.state.stateType, "expected state to be closed")
require.NoError(t, conn.state.Err, "expected error to be nil")
}