-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathforwarder_test.go
More file actions
455 lines (364 loc) · 9.98 KB
/
forwarder_test.go
File metadata and controls
455 lines (364 loc) · 9.98 KB
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
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
package main
import (
"context"
"net"
"net/netip"
"testing"
"time"
)
func TestNewPortForwarder(t *testing.T) {
tunnel := &Tunnel{
ourIP: netip.MustParseAddr("10.150.0.2"),
}
msgChan := make(chan IPCMessage, 10)
forwarder := NewPortForwarder(tunnel, msgChan)
if forwarder == nil {
t.Fatal("NewPortForwarder returned nil")
}
if forwarder.tunnel != tunnel {
t.Error("tunnel not set correctly")
}
if forwarder.msgChan != msgChan {
t.Error("message channel not set correctly")
}
if forwarder.listeners == nil {
t.Error("listeners map not initialized")
}
if len(forwarder.listeners) != 0 {
t.Error("listeners map should be empty initially")
}
}
func TestPortForwarder_HandleBind(t *testing.T) {
tunnel := &Tunnel{
ourIP: netip.MustParseAddr("10.150.0.2"),
}
msgChan := make(chan IPCMessage, 10)
forwarder := NewPortForwarder(tunnel, msgChan)
// Test binding to a port
port := 8080
err := forwarder.handleBind(port)
// In test environment, this might fail to bind to the WireGuard IP
// but should fall back to localhost
if err != nil {
t.Logf("handleBind failed (expected in test env): %v", err)
return
}
// Check that listener was created
if _, exists := forwarder.listeners[port]; !exists {
t.Error("listener not created for port")
}
// Clean up
forwarder.closeAllListeners()
}
func TestPortForwarder_HandleBindDuplicate(t *testing.T) {
tunnel := &Tunnel{
ourIP: netip.MustParseAddr("10.150.0.2"),
}
msgChan := make(chan IPCMessage, 10)
forwarder := NewPortForwarder(tunnel, msgChan)
defer forwarder.closeAllListeners()
port := 8081
// First bind should succeed or fail gracefully
err1 := forwarder.handleBind(port)
// Second bind to same port should not create duplicate listener
err2 := forwarder.handleBind(port)
// Both should either succeed or fail gracefully
if err1 != nil && err2 != nil {
t.Logf("Both bind attempts failed (expected in test env): %v, %v", err1, err2)
return
}
// Should only have one listener for the port
count := 0
for p := range forwarder.listeners {
if p == port {
count++
}
}
if count > 1 {
t.Errorf("found %d listeners for port %d, want at most 1", count, port)
}
}
func TestPortForwarder_Run(t *testing.T) {
tunnel := &Tunnel{
ourIP: netip.MustParseAddr("10.150.0.2"),
}
msgChan := make(chan IPCMessage, 10)
forwarder := NewPortForwarder(tunnel, msgChan)
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
// Start the forwarder in a goroutine
done := make(chan bool)
go func() {
forwarder.Run(ctx)
done <- true
}()
// Send a BIND message
bindMsg := IPCMessage{
Type: "BIND",
Port: 8082,
}
msgChan <- bindMsg
// Give some time for message processing
time.Sleep(50 * time.Millisecond)
// Cancel context to stop the forwarder
cancel()
// Wait for forwarder to stop
select {
case <-done:
// Good, forwarder stopped
case <-time.After(1 * time.Second):
t.Error("forwarder did not stop within timeout")
}
// All listeners should be closed
if len(forwarder.listeners) != 0 {
t.Errorf("expected 0 listeners after close, got %d", len(forwarder.listeners))
}
}
func TestPortForwarder_RunWithNonBindMessage(t *testing.T) {
tunnel := &Tunnel{
ourIP: netip.MustParseAddr("10.150.0.2"),
}
msgChan := make(chan IPCMessage, 10)
forwarder := NewPortForwarder(tunnel, msgChan)
ctx, cancel := context.WithTimeout(context.Background(), 100*time.Millisecond)
defer cancel()
// Start the forwarder
done := make(chan bool)
go func() {
forwarder.Run(ctx)
done <- true
}()
// Send a non-BIND message
connectMsg := IPCMessage{
Type: "CONNECT",
Port: 8083,
}
msgChan <- connectMsg
// Wait for context timeout
<-done
// Should not have created any listeners
if len(forwarder.listeners) != 0 {
t.Errorf("expected 0 listeners for CONNECT message, got %d", len(forwarder.listeners))
}
}
func TestPortForwarder_CloseAllListeners(t *testing.T) {
tunnel := &Tunnel{
ourIP: netip.MustParseAddr("10.150.0.2"),
}
msgChan := make(chan IPCMessage, 10)
forwarder := NewPortForwarder(tunnel, msgChan)
// Create mock listeners (using real listeners would require available ports)
listener1, err := net.Listen("tcp", "127.0.0.1:0")
if err != nil {
t.Fatalf("failed to create test listener 1: %v", err)
}
listener2, err := net.Listen("tcp", "127.0.0.1:0")
if err != nil {
listener1.Close()
t.Fatalf("failed to create test listener 2: %v", err)
}
port1 := listener1.Addr().(*net.TCPAddr).Port
port2 := listener2.Addr().(*net.TCPAddr).Port
forwarder.listeners[port1] = listener1
forwarder.listeners[port2] = listener2
// Close all listeners
forwarder.closeAllListeners()
// Listeners map should be empty
if len(forwarder.listeners) != 0 {
t.Errorf("expected 0 listeners after closeAll, got %d", len(forwarder.listeners))
}
// Listeners should be closed (attempting to accept should fail)
_, err = listener1.Accept()
if err == nil {
t.Error("listener1 should be closed")
}
_, err = listener2.Accept()
if err == nil {
t.Error("listener2 should be closed")
}
}
func TestPortForwarder_AcceptConnections(t *testing.T) {
// This test is complex to implement without real network setup
// We'll test the basic structure and error handling
tunnel := &Tunnel{
ourIP: netip.MustParseAddr("10.150.0.2"),
}
msgChan := make(chan IPCMessage, 10)
forwarder := NewPortForwarder(tunnel, msgChan)
// Create a listener on an available port
listener, err := net.Listen("tcp", "127.0.0.1:0")
if err != nil {
t.Fatalf("failed to create test listener: %v", err)
}
defer listener.Close()
port := listener.Addr().(*net.TCPAddr).Port
// Start accepting connections in a goroutine
done := make(chan bool)
go func() {
forwarder.acceptConnections(listener, port)
done <- true
}()
// Close the listener to stop accepting
listener.Close()
// Wait for acceptConnections to exit
select {
case <-done:
// Good, acceptConnections stopped
case <-time.After(1 * time.Second):
t.Error("acceptConnections did not stop within timeout")
}
}
func TestPortForwarder_HandleConnection(t *testing.T) {
// This test requires a more complex setup with actual network connections
// For now, we'll test the basic structure
tunnel := &Tunnel{
ourIP: netip.MustParseAddr("10.150.0.2"),
}
msgChan := make(chan IPCMessage, 10)
forwarder := NewPortForwarder(tunnel, msgChan)
// Create a mock connection pair
server, client := net.Pipe()
defer server.Close()
defer client.Close()
// Test that handleConnection doesn't panic
// In a real scenario, this would connect to localhost:port
// but that requires a server running on that port
done := make(chan bool)
go func() {
defer func() {
if r := recover(); r != nil {
t.Errorf("handleConnection panicked: %v", r)
}
done <- true
}()
forwarder.handleConnection(server, 8080)
}()
// Close connections to trigger exit
server.Close()
client.Close()
// Wait for completion
select {
case <-done:
// Good, no panic
case <-time.After(1 * time.Second):
t.Error("handleConnection did not complete within timeout")
}
}
func TestPortForwarder_ConcurrentAccess(t *testing.T) {
tunnel := &Tunnel{
ourIP: netip.MustParseAddr("10.150.0.2"),
}
msgChan := make(chan IPCMessage, 100)
forwarder := NewPortForwarder(tunnel, msgChan)
// Test concurrent access to the listeners map
done := make(chan bool, 10)
// Start multiple goroutines trying to bind to different ports
for i := 0; i < 10; i++ {
go func(port int) {
defer func() {
done <- true
}()
// This will likely fail in test environment, but tests concurrency
forwarder.handleBind(8000 + port)
}(i)
}
// Wait for all goroutines to complete
for i := 0; i < 10; i++ {
select {
case <-done:
// Good
case <-time.After(2 * time.Second):
t.Error("goroutine did not complete within timeout")
return
}
}
// Clean up
forwarder.closeAllListeners()
}
func TestPortForwarder_MessageChannelClosed(t *testing.T) {
tunnel := &Tunnel{
ourIP: netip.MustParseAddr("10.150.0.2"),
}
msgChan := make(chan IPCMessage, 10)
forwarder := NewPortForwarder(tunnel, msgChan)
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
// Start the forwarder
done := make(chan bool)
go func() {
forwarder.Run(ctx)
done <- true
}()
// Close the message channel
close(msgChan)
// Give some time for the forwarder to handle the closed channel
time.Sleep(50 * time.Millisecond)
// Cancel context
cancel()
// Wait for forwarder to stop
select {
case <-done:
// Good, forwarder handled closed channel gracefully
case <-time.After(1 * time.Second):
t.Error("forwarder did not stop after channel close")
}
}
// Test IP address validation
func TestPortForwarder_IPValidation(t *testing.T) {
tests := []struct {
name string
ip string
}{
{"IPv4", "10.150.0.2"},
{"IPv6", "::1"},
{"nil", ""},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
var ip netip.Addr
if tt.ip != "" {
var err error
ip, err = netip.ParseAddr(tt.ip)
if err != nil {
t.Fatalf("invalid test IP: %v", err)
}
}
tunnel := &Tunnel{
ourIP: ip,
}
msgChan := make(chan IPCMessage, 10)
forwarder := NewPortForwarder(tunnel, msgChan)
// Should not panic with any IP configuration
if forwarder == nil {
t.Error("NewPortForwarder returned nil")
}
})
}
}
// Benchmark test for port forwarder creation
func BenchmarkNewPortForwarder(b *testing.B) {
tunnel := &Tunnel{
ourIP: netip.MustParseAddr("10.150.0.2"),
}
msgChan := make(chan IPCMessage, 10)
b.ResetTimer()
for i := 0; i < b.N; i++ {
forwarder := NewPortForwarder(tunnel, msgChan)
_ = forwarder
}
}
// Benchmark test for bind handling
func BenchmarkPortForwarder_HandleBind(b *testing.B) {
tunnel := &Tunnel{
ourIP: netip.MustParseAddr("10.150.0.2"),
}
msgChan := make(chan IPCMessage, 10)
forwarder := NewPortForwarder(tunnel, msgChan)
defer forwarder.closeAllListeners()
b.ResetTimer()
for i := 0; i < b.N; i++ {
// Use different ports to avoid conflicts
port := 8000 + (i % 1000)
forwarder.handleBind(port)
}
}