-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathclient_test.go
More file actions
1117 lines (984 loc) · 28.3 KB
/
client_test.go
File metadata and controls
1117 lines (984 loc) · 28.3 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
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
//go:build testhooks
// nolint
package socksgo_test
import (
"context"
"errors"
"net"
"os"
"testing"
"github.com/asciimoth/gonnect"
"github.com/asciimoth/socksgo"
"github.com/asciimoth/socksgo/protocol"
)
func TestClientNoProxy(t *testing.T) {
t.Parallel()
client := socksgo.ClientNoProxy()
if client.ProxyAddr != "" {
t.Errorf("ProxyAddr = %q, want empty", client.ProxyAddr)
}
if client.WebSocketURL != "" {
t.Errorf("WebSocketURL = %q, want empty", client.WebSocketURL)
}
if client.Filter == nil {
t.Fatal("Filter is nil, want MatchAllFilter")
}
// Test that filter passes everything
if !client.Filter("tcp", "example.com:80") {
t.Error("Filter should pass everything")
}
if !client.GostMbind {
t.Error("GostMbind = false, want true")
}
if !client.GostUDPTun {
t.Error("GostUDPTun = false, want true")
}
if !client.TorLookup {
t.Error("TorLookup = false, want true")
}
if !client.IsNoProxy() {
t.Error("IsNoProxy should return true for ClientNoProxy")
}
}
func TestClientFromURL(t *testing.T) {
tests := []struct {
Name string
Url string
Version string
GetAddr string
IsTLS bool
IsUDPAllowed bool
TLSInsecureSkipVerify bool
WebSocketURL string
}{
{
Name: "Standard socks5",
Url: "socks5://127.0.0.1:8080",
Version: "5",
GetAddr: "127.0.0.1:8080",
IsUDPAllowed: true,
},
{
Name: "Standard socks5h",
Url: "socks5h://127.0.0.1:8080",
Version: "5",
GetAddr: "127.0.0.1:8080",
IsUDPAllowed: true,
},
{
Name: "Standard socks4",
Url: "socks4://127.0.0.1:8080",
Version: "4",
GetAddr: "127.0.0.1:8080",
IsUDPAllowed: true,
},
{
Name: "Standard socks4a",
Url: "socks4a://127.0.0.1:8080",
Version: "4a",
GetAddr: "127.0.0.1:8080",
IsUDPAllowed: true,
},
{
Name: "socks5+tls",
Url: "socks5+tls://127.0.0.1:8080",
Version: "5",
GetAddr: "127.0.0.1:8080",
IsUDPAllowed: false,
IsTLS: true,
TLSInsecureSkipVerify: true,
},
{
Name: "socks5+tls+secure",
Url: "socks5+tls://127.0.0.1:8080?secure",
Version: "5",
GetAddr: "127.0.0.1:8080",
IsUDPAllowed: false,
IsTLS: true,
TLSInsecureSkipVerify: false,
},
{
Name: "socks5+ws",
Url: "socks5+ws://127.0.0.1:8080",
Version: "5",
GetAddr: "127.0.0.1:8080",
IsUDPAllowed: true,
WebSocketURL: "ws://127.0.0.1:8080/ws",
IsTLS: false,
TLSInsecureSkipVerify: false,
},
{
Name: "socks5+ws+path",
Url: "socks5+ws://127.0.0.1:8080/custom/path",
Version: "5",
GetAddr: "127.0.0.1:8080",
IsUDPAllowed: true,
WebSocketURL: "ws://127.0.0.1:8080/custom/path",
IsTLS: false,
TLSInsecureSkipVerify: false,
},
{
Name: "socks5+wss",
Url: "socks5+wss://127.0.0.1:8080",
Version: "5",
GetAddr: "127.0.0.1:8080",
IsUDPAllowed: false,
WebSocketURL: "wss://127.0.0.1:8080/ws",
IsTLS: true,
TLSInsecureSkipVerify: true,
},
{
Name: "socks5+wss+secure",
Url: "socks5+wss://127.0.0.1:8080?secure",
Version: "5",
GetAddr: "127.0.0.1:8080",
IsUDPAllowed: false,
WebSocketURL: "wss://127.0.0.1:8080/ws",
IsTLS: true,
TLSInsecureSkipVerify: false,
},
{
Name: "socks5+ws+tls",
Url: "socks5+ws+tls://127.0.0.1:8080",
Version: "5",
GetAddr: "127.0.0.1:8080",
IsUDPAllowed: false,
WebSocketURL: "wss://127.0.0.1:8080/ws",
IsTLS: true,
TLSInsecureSkipVerify: true,
},
{
Name: "Default port",
Url: "socks5://127.0.0.1",
Version: "5",
GetAddr: "127.0.0.1:1080",
IsUDPAllowed: true,
},
}
for _, tc := range tests {
t.Run(tc.Name, func(t *testing.T) {
client, err := socksgo.ClientFromURL(tc.Url)
if err != nil {
t.Errorf("unexpected error %v", err)
return
}
if client.Version() != tc.Version {
t.Errorf(
"Version() == %s while expected %s",
client.Version(),
tc.Version,
)
}
if client.GetAddr() != tc.GetAddr {
t.Errorf(
"GetAddr() == %s while expected %s",
client.GetAddr(),
tc.GetAddr,
)
}
if client.WebSocketURL != tc.WebSocketURL {
t.Errorf(
"WebSocketURL() == %s while expected %s",
client.WebSocketURL,
tc.WebSocketURL,
)
}
if client.IsTLS() != tc.IsTLS {
t.Errorf(
"IsTLS() == %t while expected %t",
client.IsTLS(),
tc.IsTLS,
)
}
if client.IsUDPAllowed() != tc.IsUDPAllowed {
t.Errorf(
"IsUDPAllowed() == %t while expected %t",
client.IsUDPAllowed(),
tc.IsUDPAllowed,
)
}
if tc.IsTLS {
TLSInsecureSkipVerify := false
if client.TLSConfig != nil {
TLSInsecureSkipVerify = client.TLSConfig.InsecureSkipVerify
}
if TLSInsecureSkipVerify != tc.TLSInsecureSkipVerify {
t.Errorf(
"TLSInsecureSkipVerify() == %t while expected %t",
TLSInsecureSkipVerify,
tc.TLSInsecureSkipVerify,
)
}
}
})
}
}
func TestClientFromURLSafe_ErrorPath(t *testing.T) {
t.Parallel()
_, err := socksgo.ClientFromURLSafe("://invalid-url")
if err == nil {
t.Fatal("Expected error for invalid URL, got nil")
}
}
func TestClientFromURLObjSafe_NilURL(t *testing.T) {
t.Parallel()
client := socksgo.ClientFromURLObjSafe(nil)
if client == nil {
t.Fatal("Expected non-nil client for nil URL")
}
if client.ProxyAddr != "" {
t.Errorf("ProxyAddr = %q, want empty", client.ProxyAddr)
}
if client.WebSocketURL != "" {
t.Errorf("WebSocketURL = %q, want empty", client.WebSocketURL)
}
}
func TestClientFromURLObjSafe_PassParam(t *testing.T) {
t.Parallel()
client, err := socksgo.ClientFromURL("socks5://127.0.0.1:1080?pass")
if err != nil {
t.Fatalf("unexpected error: %v", err)
}
// pass parameter should set Filter to PassAllFilter
// PassAllFilter returns false (use proxy)
if client.Filter == nil {
t.Fatal("Filter should not be nil")
}
// Test that filter passes everything (MatchAllFilter behavior)
// Actually pass sets it to PassAllFilter which returns false
if client.Filter("tcp", "example.com:80") {
t.Error("Filter with pass=true should return false (use proxy)")
}
}
func TestClientFromURLObj(t *testing.T) {
t.Parallel()
tests := []struct {
Name string
URL string
ExpectedInsecure *bool // nil means don't check
ExpectedAssocProb *bool // nil means don't check
ExpectedSecure *bool // nil means don't check (TLSConfig.InsecureSkipVerify = !secure)
}{
{
Name: "insecureudp enabled",
URL: "socks5://127.0.0.1:1080?insecureudp",
ExpectedInsecure: boolPtr(true),
ExpectedAssocProb: nil,
ExpectedSecure: nil,
},
{
Name: "assocprob disabled",
URL: "socks5://127.0.0.1:1080?assocprob=false",
ExpectedInsecure: nil,
ExpectedAssocProb: boolPtr(false),
ExpectedSecure: nil,
},
{
Name: "assocprob enabled",
URL: "socks5://127.0.0.1:1080?assocprob",
ExpectedInsecure: nil,
ExpectedAssocProb: boolPtr(true),
ExpectedSecure: nil,
},
{
Name: "secure disabled",
URL: "socks5://127.0.0.1:1080?secure=false",
ExpectedInsecure: nil,
ExpectedAssocProb: nil,
ExpectedSecure: boolPtr(false),
},
{
Name: "secure enabled",
URL: "socks5+tls://127.0.0.1:1080?secure",
ExpectedInsecure: nil,
ExpectedAssocProb: nil,
ExpectedSecure: boolPtr(true),
},
}
for _, tc := range tests {
t.Run(tc.Name, func(t *testing.T) {
client, err := socksgo.ClientFromURL(tc.URL)
if err != nil {
t.Fatalf("unexpected error: %v", err)
}
if tc.ExpectedInsecure != nil {
if client.InsecureUDP != *tc.ExpectedInsecure {
t.Errorf(
"InsecureUDP = %v, want %v",
client.InsecureUDP,
*tc.ExpectedInsecure,
)
}
}
if tc.ExpectedAssocProb != nil {
if client.DoNotSpawnUDPAsocProbber != !*tc.ExpectedAssocProb {
t.Errorf("DoNotSpawnUDPAsocProbber = %v, want %v",
client.DoNotSpawnUDPAsocProbber, !*tc.ExpectedAssocProb)
}
}
if tc.ExpectedSecure != nil && client.TLSConfig != nil {
if client.TLSConfig.InsecureSkipVerify != !*tc.ExpectedSecure {
t.Errorf(
"TLSConfig.InsecureSkipVerify = %v, want %v",
client.TLSConfig.InsecureSkipVerify,
!*tc.ExpectedSecure,
)
}
}
})
}
}
func boolPtr(b bool) *bool {
return &b
}
func TestClientFromURL_ErrorPath(t *testing.T) {
t.Parallel()
_, err := socksgo.ClientFromURL("://invalid-url")
if err == nil {
t.Fatal("Expected error for invalid URL, got nil")
}
}
func TestClientFromENVSafe_EmptyEnv(t *testing.T) {
// Save original env
origAllProxy := os.Getenv("ALL_PROXY")
origHTTPSProxy := os.Getenv("HTTPS_PROXY")
origHTTPProxy := os.Getenv("HTTP_PROXY")
defer func() {
os.Setenv("ALL_PROXY", origAllProxy)
os.Setenv("HTTPS_PROXY", origHTTPSProxy)
os.Setenv("HTTP_PROXY", origHTTPProxy)
}()
// Clear env vars
os.Unsetenv("ALL_PROXY")
os.Unsetenv("HTTPS_PROXY")
os.Unsetenv("HTTP_PROXY")
client, err := socksgo.ClientFromENVSafe("socks5")
if err != nil {
t.Fatalf("unexpected error: %v", err)
}
if client == nil {
t.Fatal("Expected non-nil client")
}
if !client.IsNoProxy() {
t.Error("IsNoProxy should return true when no proxy env is set")
}
}
func TestClientFromENVSafe_WithEnv(t *testing.T) {
// Save original env
orig := os.Getenv("ALL_PROXY")
defer os.Setenv("ALL_PROXY", orig)
// Set test env
os.Setenv("ALL_PROXY", "socks5://127.0.0.1:1080")
client, err := socksgo.ClientFromENVSafe("socks5")
if err != nil {
t.Fatalf("unexpected error: %v", err)
}
if client == nil {
t.Fatal("Expected non-nil client")
}
if client.ProxyAddr != "127.0.0.1:1080" {
t.Errorf("ProxyAddr = %q, want 127.0.0.1:1080", client.ProxyAddr)
}
}
func TestClientFromENV_EmptyEnv(t *testing.T) {
// Save original env
origAllProxy := os.Getenv("ALL_PROXY")
origHTTPSProxy := os.Getenv("HTTPS_PROXY")
origHTTPProxy := os.Getenv("HTTP_PROXY")
defer func() {
os.Setenv("ALL_PROXY", origAllProxy)
os.Setenv("HTTPS_PROXY", origHTTPSProxy)
os.Setenv("HTTP_PROXY", origHTTPProxy)
}()
// Clear env vars
os.Unsetenv("ALL_PROXY")
os.Unsetenv("HTTPS_PROXY")
os.Unsetenv("HTTP_PROXY")
client, err := socksgo.ClientFromENV("socks5")
if err != nil {
t.Fatalf("unexpected error: %v", err)
}
if client == nil {
t.Fatal("Expected non-nil client")
}
if !client.IsNoProxy() {
t.Error("IsNoProxy should return true when no proxy env is set")
}
}
func TestClientFromENV_WithEnv(t *testing.T) {
// Save original env
orig := os.Getenv("ALL_PROXY")
defer os.Setenv("ALL_PROXY", orig)
// Set test env
os.Setenv("ALL_PROXY", "socks5://127.0.0.1:1080")
client, err := socksgo.ClientFromENV("socks5")
if err != nil {
t.Fatalf("unexpected error: %v", err)
}
if client == nil {
t.Fatal("Expected non-nil client")
}
if client.ProxyAddr != "127.0.0.1:1080" {
t.Errorf("ProxyAddr = %q, want 127.0.0.1:1080", client.ProxyAddr)
}
}
// Mock dialer for testing
type mockDialer struct {
dialFunc func(ctx context.Context, network, address string) (net.Conn, error)
}
func (m *mockDialer) DialContext(
ctx context.Context,
network, address string,
) (net.Conn, error) {
if m.dialFunc != nil {
return m.dialFunc(ctx, network, address)
}
return nil, nil
}
// mockListener implements net.Listener for testing
type mockListener struct {
addr net.Addr
}
func (m *mockListener) Accept() (net.Conn, error) { return nil, nil }
func (m *mockListener) Close() error { return nil }
func (m *mockListener) Addr() net.Addr { return m.addr }
func TestClient_Dial_UDPNetwork(t *testing.T) {
t.Parallel()
client := &socksgo.Client{
ProxyAddr: "127.0.0.1:1080",
}
// UDP networks should be routed to DialPacket
_, err := client.Dial(context.Background(), "udp", "127.0.0.1:53")
// This will fail because we don't have a real proxy, but it should not panic
// and should attempt to dial (not return network unsupported error)
if err == nil {
// It's ok if it doesn't error (in case of future implementation changes)
return
}
}
func TestClient_Dial_FilterPath(t *testing.T) {
t.Parallel()
called := false
mockDialerFunc := func(ctx context.Context, network, address string) (net.Conn, error) {
called = true
return &mockConn{}, nil
}
client := &socksgo.Client{
ProxyAddr: "127.0.0.1:1080",
Filter: gonnect.TrueFilter, // Always use direct connection
Dialer: mockDialerFunc,
}
conn, err := client.Dial(context.Background(), "tcp", "example.com:80")
if err != nil {
t.Fatalf("unexpected error: %v", err)
}
if conn == nil {
t.Fatal("Expected non-nil connection")
}
if !called {
t.Error("Expected custom dialer to be called")
}
}
func TestClient_Dial_UnsupportedNetwork(t *testing.T) {
t.Parallel()
client := &socksgo.Client{
ProxyAddr: "127.0.0.1:1080",
}
_, err := client.Dial(context.Background(), "unix", "/tmp/socket")
if err == nil {
t.Fatal("Expected error for unsupported network, got nil")
}
}
func TestClient_Dial_RequestFails(t *testing.T) {
t.Parallel()
dialErr := errors.New("dial failed")
client := &socksgo.Client{
ProxyAddr: "127.0.0.1:1080",
Dialer: func(ctx context.Context, network, address string) (net.Conn, error) {
return nil, dialErr
},
}
_, err := client.Dial(context.Background(), "tcp", "example.com:80")
if err == nil {
t.Fatal("Expected error when Request fails, got nil")
}
if !errors.Is(err, dialErr) && err.Error() != dialErr.Error() {
t.Errorf("Expected dial error, got %v", err)
}
}
func TestClient_DialPacket_FilterPath(t *testing.T) {
t.Parallel()
called := false
mockPacketDialerFunc := func(ctx context.Context, network, address string) (gonnect.PacketConn, error) {
called = true
return &mockPacketConn{}, nil
}
client := &socksgo.Client{
ProxyAddr: "127.0.0.1:1080",
Filter: gonnect.TrueFilter,
Dialer: func(ctx context.Context, network, address string) (net.Conn, error) { return nil, nil },
PacketDialer: mockPacketDialerFunc,
GostUDPTun: false, // Disable GostUDPTun to use standard path
}
// Check if filter is working
if !client.DoFilter("udp", "127.0.0.1:53") {
t.Fatal("Filter should return true for MatchAllFilter")
}
conn, err := client.PacketDial(context.Background(), "udp", "127.0.0.1:53")
if err != nil {
t.Fatalf("unexpected error: %v", err)
}
if conn == nil {
t.Fatal("Expected non-nil connection")
}
if !called {
t.Error("Expected custom packet dialer to be called")
}
}
func TestClient_DialPacket_UnsupportedNetwork(t *testing.T) {
t.Parallel()
client := &socksgo.Client{
ProxyAddr: "127.0.0.1:1080",
}
_, err := client.PacketDial(context.Background(), "unix", "/tmp/socket")
if err == nil {
t.Fatal("Expected error for unsupported network, got nil")
}
}
func TestClient_ListenPacket_FilterPath(t *testing.T) {
t.Parallel()
called := false
mockPacketListenerFunc := func(ctx context.Context, network, address string) (gonnect.PacketConn, error) {
called = true
return &mockPacketConn{}, nil
}
client := &socksgo.Client{
ProxyAddr: "127.0.0.1:1080",
Filter: gonnect.TrueFilter,
Dialer: func(ctx context.Context, network, address string) (net.Conn, error) { return nil, nil },
DirectPacketListener: mockPacketListenerFunc,
GostUDPTun: false, // Disable GostUDPTun to use standard path
}
conn, err := client.ListenPacket(context.Background(), "udp", "127.0.0.1:0")
if err != nil {
t.Fatalf("unexpected error: %v", err)
}
if conn == nil {
t.Fatal("Expected non-nil connection")
}
if !called {
t.Error("Expected custom packet listener to be called")
}
}
func TestClient_ListenPacket_UnsupportedNetwork(t *testing.T) {
t.Parallel()
client := &socksgo.Client{
ProxyAddr: "127.0.0.1:1080",
}
_, err := client.ListenPacket(context.Background(), "unix", "/tmp/socket")
if err == nil {
t.Fatal("Expected error for unsupported network, got nil")
}
}
func TestClient_Listen_FilterPath(t *testing.T) {
t.Parallel()
called := false
mockListenerFunc := func(ctx context.Context, network, address string) (net.Listener, error) {
called = true
return &mockListener{
addr: &net.TCPAddr{IP: net.ParseIP("127.0.0.1"), Port: 0},
}, nil
}
client := &socksgo.Client{
ProxyAddr: "127.0.0.1:1080",
Filter: gonnect.TrueFilter,
DirectListener: mockListenerFunc,
}
ln, err := client.Listen(context.Background(), "tcp", "127.0.0.1:0")
if err != nil {
t.Fatalf("unexpected error: %v", err)
}
if ln == nil {
t.Fatal("Expected non-nil listener")
}
if !called {
t.Error("Expected custom listener to be called")
}
}
func TestClient_Listen_UnsupportedNetwork(t *testing.T) {
t.Parallel()
client := &socksgo.Client{
ProxyAddr: "127.0.0.1:1080",
}
_, err := client.Listen(context.Background(), "unix", "/tmp/socket")
if err == nil {
t.Fatal("Expected error for unsupported network, got nil")
}
}
func TestClient_LookupIP_InvalidNetwork(t *testing.T) {
t.Parallel()
client := &socksgo.Client{
ProxyAddr: "127.0.0.1:1080",
TorLookup: true,
}
_, err := client.LookupIP(context.Background(), "tcp", "example.com")
if err == nil {
t.Fatal("Expected error for invalid network, got nil")
}
dnsErr, ok := err.(*net.DNSError)
if !ok {
t.Fatalf("Expected *net.DNSError, got %T", err)
}
if !dnsErr.IsNotFound {
t.Error("Expected IsNotFound to be true")
}
}
func TestClient_LookupIP_TorLookupDisabled(t *testing.T) {
t.Parallel()
client := &socksgo.Client{
ProxyAddr: "127.0.0.1:1080",
TorLookup: false,
}
_, err := client.LookupIP(context.Background(), "ip", "example.com")
if err == nil {
t.Fatal("Expected error when TorLookup is disabled, got nil")
}
dnsErr, ok := err.(*net.DNSError)
if !ok {
t.Fatalf("Expected *net.DNSError, got %T", err)
}
if dnsErr.UnwrapErr != socksgo.ErrResolveDisabled {
t.Errorf("Expected ErrResolveDisabled, got %v", dnsErr.UnwrapErr)
}
}
func TestClient_LookupIP_FilterPath(t *testing.T) {
t.Parallel()
called := false
mockResolver := &mockResolver{
FnLookupIP: func(ctx context.Context, network, address string) ([]net.IP, error) {
called = true
return []net.IP{net.ParseIP("127.0.0.1")}, nil
},
FnLookupAddr: nil,
}
client := &socksgo.Client{
ProxyAddr: "127.0.0.1:1080",
TorLookup: true,
Filter: gonnect.TrueFilter,
Resolver: mockResolver,
}
ips, err := client.LookupIP(context.Background(), "ip", "example.com")
if err != nil {
t.Fatalf("unexpected error: %v", err)
}
if len(ips) != 1 {
t.Fatalf("Expected 1 IP, got %d", len(ips))
}
if !called {
t.Error("Expected custom resolver to be called")
}
}
func TestClient_LookupAddr_TorLookupDisabled(t *testing.T) {
t.Parallel()
client := &socksgo.Client{
ProxyAddr: "127.0.0.1:1080",
TorLookup: false,
}
_, err := client.LookupAddr(context.Background(), "127.0.0.1")
if err == nil {
t.Fatal("Expected error when TorLookup is disabled, got nil")
}
dnsErr, ok := err.(*net.DNSError)
if !ok {
t.Fatalf("Expected *net.DNSError, got %T", err)
}
if dnsErr.UnwrapErr != socksgo.ErrResolveDisabled {
t.Errorf("Expected ErrResolveDisabled, got %v", dnsErr.UnwrapErr)
}
}
func TestClient_LookupAddr_FilterPath(t *testing.T) {
t.Parallel()
called := false
mockResolver := &mockResolver{
FnLookupIP: nil,
FnLookupAddr: func(ctx context.Context, address string) ([]string, error) {
called = true
return []string{"example.com"}, nil
},
}
client := &socksgo.Client{
ProxyAddr: "127.0.0.1:1080",
TorLookup: true,
Filter: gonnect.TrueFilter,
Resolver: mockResolver,
}
addrs, err := client.LookupAddr(context.Background(), "127.0.0.1")
if err != nil {
t.Fatalf("unexpected error: %v", err)
}
if len(addrs) != 1 {
t.Fatalf("Expected 1 address, got %d", len(addrs))
}
if !called {
t.Error("Expected custom resolver to be called")
}
}
func TestClient_LookupAddr_RequestFails(t *testing.T) {
t.Parallel()
dialErr := errors.New("dial failed")
client := &socksgo.Client{
ProxyAddr: "127.0.0.1:1080",
TorLookup: true,
Filter: gonnect.FalseFilter, // Force proxy path
Dialer: func(ctx context.Context, network, address string) (net.Conn, error) {
return nil, dialErr
},
}
_, err := client.LookupAddr(context.Background(), "127.0.0.1")
if err == nil {
t.Fatal("Expected error when Request fails, got nil")
}
if !errors.Is(err, dialErr) && err.Error() != dialErr.Error() {
t.Errorf("Expected dial error, got %v", err)
}
}
// Test request method routing through Version() method
func TestClient_Request_VersionRouting(t *testing.T) {
t.Parallel()
tests := []struct {
name string
version string
}{
{"default (5)", ""},
{"socks5", "5"},
{"socks4a", "4a"},
{"socks4", "4"},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
client := &socksgo.Client{
SocksVersion: tt.version,
ProxyAddr: "127.0.0.1:1080",
}
// The request will fail because there's no real proxy,
// but we're testing that the version routing works
_, _, err := client.Request(
context.Background(),
protocol.CmdConnect,
protocol.AddrFromHostPort("example.com:80", "tcp"),
)
// We expect an error since there's no real proxy
if err == nil {
t.Log(
"Request succeeded (unexpected but not necessarily wrong)",
)
}
})
}
}
func TestClient_Request_UnknownVersion(t *testing.T) {
t.Parallel()
client := &socksgo.Client{
SocksVersion: "99", // Unknown version
ProxyAddr: "127.0.0.1:1080",
}
_, _, err := client.Request(
context.Background(),
protocol.CmdConnect,
protocol.AddrFromHostPort("example.com:80", "tcp"),
)
if err == nil {
t.Fatal("Expected error for unknown SOCKS version, got nil")
}
_, ok := err.(socksgo.UnknownSocksVersionError)
if !ok {
t.Errorf("Expected UnknownSocksVersionError, got %T: %v", err, err)
}
}
func TestClient_Request_Socks4_WithoutIP(t *testing.T) {
t.Parallel()
client := &socksgo.Client{
SocksVersion: "4",
ProxyAddr: "127.0.0.1:1080",
// Use a resolver that fails to resolve the hostname
Resolver: &mockResolver{
FnLookupIP: func(ctx context.Context, network, address string) ([]net.IP, error) {
if network == "ip4" {
// Return error for IPv4 lookup
return nil, errors.New("no IPv4 address")
}
return nil, nil
},
FnLookupAddr: func(ctx context.Context, address string) ([]string, error) {
return nil, errors.New("not implemented")
},
},
}
// SOCKS4 requires an IP address, not a hostname
// With a resolver that fails to resolve, Request should return UnsupportedAddrError
_, _, err := client.Request(
context.Background(),
protocol.CmdConnect,
protocol.AddrFromHostPort("example.com:80", "tcp"),
)
// We expect an UnsupportedAddrError
if err == nil {
t.Fatal("Expected error for SOCKS4 with hostname (not IP), got nil")
}
_, ok := err.(socksgo.UnsupportedAddrError)
if !ok {
t.Errorf("Expected UnsupportedAddrError, got %T: %v", err, err)
}
}
// Test SOCKS4 request with IPv6-only address (cannot resolve to IPv4)
func TestClient_Request_Socks4_IPv6Only(t *testing.T) {
t.Parallel()
client := &socksgo.Client{
SocksVersion: "4",
ProxyAddr: "127.0.0.1:1080",
Filter: gonnect.FalseFilter, // Use proxy path
// Use a resolver that returns error for IPv4 lookup
Resolver: &mockResolver{
FnLookupIP: func(ctx context.Context, network, address string) ([]net.IP, error) {
if network == "ip4" {
// Return error for IPv4 lookup
return nil, errors.New("no IPv4 address")
}
// Return IPv6 for other queries
return []net.IP{net.ParseIP("::1")}, nil
},
FnLookupAddr: func(ctx context.Context, address string) ([]string, error) {
return nil, errors.New("not implemented")
},
},
}
// SOCKS4 requires IPv4, ResolveToIP4 will return nil for IPv6-only
_, _, err := client.Request(
context.Background(),
protocol.CmdConnect,
protocol.AddrFromHostPort("ipv6-only.example.com:80", "tcp"),
)
if err == nil {
t.Fatal("Expected error for SOCKS4 with IPv6-only address, got nil")
}
_, ok := err.(socksgo.UnsupportedAddrError)
if !ok {
t.Logf("Got error type %T: %v", err, err)
}
}
func TestClient_Request_UnsupportedNetwork(t *testing.T) {
t.Parallel()
client := &socksgo.Client{
SocksVersion: "5",
ProxyAddr: "127.0.0.1:1080",
}
_, _, err := client.Request(
context.Background(),
protocol.CmdConnect,
protocol.AddrFromHostPort("example.com:80", "unix"),
)
if err == nil {
t.Fatal("Expected error for unsupported network, got nil")
}