-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdomainSearcher_test.go
1069 lines (923 loc) · 27.3 KB
/
domainSearcher_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
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
package main
import (
"bufio"
"bytes"
"database/sql"
"encoding/json"
"errors"
"flag"
"fmt"
"io"
"io/ioutil"
"net"
"net/http"
"os"
"strings"
"testing"
"time"
"github.com/cloudflare/cloudflare-go"
"github.com/fatih/color"
_ "github.com/mattn/go-sqlite3"
"github.com/ovh/go-ovh/ovh"
"github.com/oze4/godaddygo"
"github.com/twiny/whois/v2"
)
// Test checkFileExists
func TestCheckFileExists(t *testing.T) {
// Create temp file
tmpfile, err := os.CreateTemp("", "example")
if err != nil {
t.Fatal(err)
}
// Remove test file en end of test function execution
defer os.Remove(tmpfile.Name())
// Check file exists
if !checkFileExists(tmpfile.Name()) {
t.Fatalf("Expected file %s to exist, but it does not", tmpfile.Name())
}
// Check inexistent file exists
if checkFileExists("nonexistentfile.txt") {
t.Fatalf("Expected nonexistentfile.txt to not exist, but it does")
}
}
// Test checkDNS
func TestCheckDNS(t *testing.T) {
// Valid domain
validDomain := "alfaexploit.com"
if err := checkDNS(validDomain); err != nil {
t.Errorf("Expected domain %s to be valid, but got error: %v", validDomain, err)
}
// Empty domain
invalidDomain := ""
if err := checkDNS(invalidDomain); err == nil {
t.Errorf("Expected domain %s to be invalid, but got no error", invalidDomain)
}
// len(name) > 255 domain
invalidDomain = "KpYTnQSWGuQ5pm4bQyx9rluKU4q8qLj1QNTd4wcT4OzBgJwQo1BGskbctE1mabrGOUCESgFBeTqEHVbhXEVDJM4rgR56CXDFoWTPIwlM9MTMR09B3fwkUY4GzO2bl35cMpVRL1cYcNJMU98oh0l7KBiBzA6eKHkXdoagQbuuT1KS4OovGAa5JH2TxmbEPSGynT2p3JhDTGVm0ZHRfBly5HharptauKdqVNeZegzlVofJ4D1FxpjOBzqSAeO1VAs.com"
if err := checkDNS(invalidDomain); err == nil {
t.Errorf("Expected domain %s to be invalid, but got no error", invalidDomain)
}
// Invalid domains
invalidDomain = "ex*ample.com"
if err := checkDNS(invalidDomain); err == nil {
t.Errorf("Expected domain %s to be invalid, but got no error", invalidDomain)
}
invalidDomain = ".example.com"
if err := checkDNS(invalidDomain); err == nil {
t.Errorf("Expected domain %s to be invalid, but got no error", invalidDomain)
}
invalidDomain = "-example.com"
if err := checkDNS(invalidDomain); err == nil {
t.Errorf("Expected domain %s to be invalid, but got no error", invalidDomain)
}
invalidDomain = "example.com-"
if err := checkDNS(invalidDomain); err == nil {
t.Errorf("Expected domain %s to be invalid, but got no error", invalidDomain)
}
invalidDomain = "ex~ample.com-"
if err := checkDNS(invalidDomain); err == nil {
t.Errorf("Expected domain %s to be invalid, but got no error", invalidDomain)
}
}
// Test createTable
func TestCreateTable(t *testing.T) {
db, err := sql.Open("sqlite3", ":memory:")
if err != nil {
t.Errorf("Failed to open database: %v", err)
}
defer db.Close()
// Create table
err = createTable(db)
if err != nil {
t.Errorf("Expected no error, but got: %v", err)
}
// Check if table exists
_, err = db.Exec("SELECT 1 FROM domain_list LIMIT 1;")
if err != nil {
t.Errorf("Expected table domain_list to exist, but got error: %v", err)
}
}
func TestPopulateOvh(t *testing.T) {
// Copy original functions content
getOvhDomainsOri := getOvhDomains
// unmock functions content
defer func() {
getOvhDomains = getOvhDomainsOri
}()
getOvhDomains = func(client *ovh.Client, OVHDomainData *[]string) error {
*OVHDomainData = append(*OVHDomainData, "testdomain1.com")
return nil
}
// Create memory database
db, err := sql.Open("sqlite3", ":memory:")
if err != nil {
t.Fatalf("Failed to open database: %v", err)
}
defer db.Close()
// Create table
err = createTable(db)
if err != nil {
t.Fatalf("Failed to create table: %v", err)
}
if err := populateOvh(db); err != nil {
t.Errorf("Expected no error when checking populateOvh, but got: %v", err)
}
}
func TestPopulateCloudFlare(t *testing.T) {
// Copy original functions content
getCloudFlareDomainsOri := getCloudFlareDomains
// unmock functions content
defer func() {
getCloudFlareDomains = getCloudFlareDomainsOri
}()
getCloudFlareDomains = func(api *cloudflare.API) ([]cloudflare.Zone, error) {
zone := cloudflare.Zone{
ID: "1234567890abcdef1234567890abcdef",
Name: "example.com",
DevMode: 0,
OriginalNS: []string{"ns1.example.com", "ns2.example.com"},
OriginalRegistrar: "Example Registrar",
OriginalDNSHost: "Example DNS Host",
CreatedOn: time.Date(2023, 1, 1, 12, 0, 0, 0, time.UTC),
ModifiedOn: time.Date(2023, 1, 2, 12, 0, 0, 0, time.UTC),
NameServers: []string{"ns-cloud-a1.googledomains.com", "ns-cloud-a2.googledomains.com"},
Owner: cloudflare.Owner{
ID: "owner123",
Email: "[email protected]",
Name: "Example Owner",
OwnerType: "user",
},
Permissions: []string{
"#dns_records:edit",
"#dns_records:read",
},
Plan: cloudflare.ZonePlan{
ZonePlanCommon: cloudflare.ZonePlanCommon{
ID: "free",
Name: "Free Plan",
Price: 0,
Currency: "USD",
Frequency: "monthly",
},
LegacyID: "legacy123",
IsSubscribed: true,
CanSubscribe: true,
LegacyDiscount: false,
ExternallyManaged: false,
},
PlanPending: cloudflare.ZonePlan{
ZonePlanCommon: cloudflare.ZonePlanCommon{
ID: "",
Name: "",
Price: 0,
Currency: "",
Frequency: "",
},
LegacyID: "",
IsSubscribed: false,
CanSubscribe: false,
LegacyDiscount: false,
ExternallyManaged: false,
},
Status: "active",
Paused: false,
Type: "full",
Host: struct {
Name string
Website string
}{
Name: "Example Host",
Website: "https://www.example.com",
},
VanityNS: nil,
Betas: nil,
DeactReason: "",
Meta: cloudflare.ZoneMeta{
PageRuleQuota: 3,
WildcardProxiable: false,
PhishingDetected: false,
},
Account: cloudflare.Account{
ID: "account123",
Name: "Example Account",
Type: "standard",
CreatedOn: time.Date(2022, 12, 25, 10, 0, 0, 0, time.UTC),
Settings: nil,
},
VerificationKey: "verificationkey123",
}
zones := []cloudflare.Zone{zone}
return zones, nil
}
// Create memory database
db, err := sql.Open("sqlite3", ":memory:")
if err != nil {
t.Fatalf("Failed to open database: %v", err)
}
defer db.Close()
// Create table
err = createTable(db)
if err != nil {
t.Fatalf("Failed to create table: %v", err)
}
if err := populateCloudFlare(db); err != nil {
t.Errorf("Expected no error when checking populateCloudFlare, but got: %v", err)
}
}
func TestPopulateGoDaddy(t *testing.T) {
// Copy original functions content
getGoDaddyDomainsOri := getGoDaddyDomains
// unmock functions content
defer func() {
getGoDaddyDomains = getGoDaddyDomainsOri
}()
getGoDaddyDomains = func(api godaddygo.API) ([]godaddygo.DomainSummary, error) {
expiration, _ := time.Parse(time.RFC3339, "2025-01-01T00:00:00Z")
created, _ := time.Parse(time.RFC3339, "2020-01-01T00:00:00Z")
zone := godaddygo.DomainSummary{
Domain: "example.com",
Status: "ACTIVE",
Expires: expiration,
CreatedAt: created,
}
zones := []godaddygo.DomainSummary{zone}
return zones, nil
}
// Create memory database
db, err := sql.Open("sqlite3", ":memory:")
if err != nil {
t.Fatalf("Failed to open database: %v", err)
}
defer db.Close()
// Create table
err = createTable(db)
if err != nil {
t.Fatalf("Failed to create table: %v", err)
}
if err := populateGoDaddy(db); err != nil {
t.Errorf("Expected no error when checking populateGoDaddy, but got: %v", err)
}
}
// populateDonDominio(db)
func TestPopulateDonDominio(t *testing.T) {
// Copy original functions content
getDonDominioDomainsOri := getDonDominioDomains
// unmock functions content
defer func() {
getDonDominioDomains = getDonDominioDomainsOri
}()
getDonDominioDomains = func(client *http.Client, r *http.Request) (*http.Response, error) {
//fmt.Println("-- Executing mocked getDonDominioDomains function")
type QueryInfo struct {
Page int `json:"page"`
PageLength int `json:"pageLength"`
Results int `json:"results"`
Total int `json:"total"`
}
type Domain struct {
Name string `json:"name"`
Status string `json:"status"`
TLD string `json:"tld"`
DomainID int `json:"domainID"`
TsExpir string `json:"tsExpir"`
}
type ResponseData struct {
QueryInfo QueryInfo `json:"queryInfo"`
Domains []Domain `json:"domains"`
}
type Response struct {
Success bool `json:"success"`
ErrorCode int `json:"errorCode"`
ErrorCodeMsg string `json:"errorCodeMsg"`
Action string `json:"action"`
Version string `json:"version"`
ResponseData ResponseData `json:"responseData"`
}
responseData := Response{
Success: true,
ErrorCode: 0,
ErrorCodeMsg: "",
Action: "domain/list",
Version: "1.0.20",
ResponseData: ResponseData{
QueryInfo: QueryInfo{
Page: 1,
PageLength: 1000,
Results: 122,
Total: 122,
},
Domains: []Domain{
{
Name: "example.com",
Status: "active",
TLD: "com",
DomainID: 123456,
TsExpir: "2025-01-01",
},
},
},
}
responseJSON, _ := json.Marshal(responseData)
resp := &http.Response{
StatusCode: 200,
Body: ioutil.NopCloser(bytes.NewBuffer(responseJSON)),
Header: make(http.Header),
}
// Configurar encabezados HTTP si es necesario
resp.Header.Set("Content-Type", "application/json")
return resp, nil
}
// Create memory database
db, err := sql.Open("sqlite3", ":memory:")
if err != nil {
t.Fatalf("Failed to open database: %v", err)
}
defer db.Close()
// Create table
err = createTable(db)
if err != nil {
t.Fatalf("Failed to create table: %v", err)
}
if err := populateDonDominio(db, "nil"); err != nil {
t.Errorf("Expected no error when checking populateDonDominio, but got: %v", err)
}
}
// Test populateDB
func TestPopulateDB(t *testing.T) {
// Copy original functions content
populateOvhOri := populateOvh
populateCloudFlareOri := populateCloudFlare
populateGoDaddyOri := populateGoDaddy
populateDonDominioOri := populateDonDominio
// unmock functions content
defer func() {
populateOvh = populateOvhOri
populateCloudFlare = populateCloudFlareOri
populateGoDaddy = populateGoDaddyOri
populateDonDominio = populateDonDominioOri
}()
populateOvh = func(db *sql.DB) error {
return nil
}
populateCloudFlare = func(db *sql.DB) error {
return nil
}
populateGoDaddy = func(db *sql.DB) error {
return nil
}
populateDonDominio = func(db *sql.DB, socks5 string) error {
return nil
}
db, err := sql.Open("sqlite3", ":memory:")
if err != nil {
t.Errorf("Failed to open database: %v", err)
}
defer db.Close()
if err := populateDB(db, "nil"); err != nil {
t.Errorf("Expected no error when populating db, but got: %v", err)
}
populateOvh = func(db *sql.DB) error {
return errors.New("populateOvh error")
}
populateCloudFlare = func(db *sql.DB) error {
return errors.New("populateCloudFlare error")
}
populateGoDaddy = func(db *sql.DB) error {
return errors.New("populateGoDaddy error")
}
populateDonDominio = func(db *sql.DB, socks5 string) error {
return errors.New("populateDonDominio error")
}
if err := populateDB(db, "nil"); err == nil {
t.Errorf("Expected error when populating db, but got: %v", err)
}
}
// Test getDnsNs
func TestGetDnsNs(t *testing.T) {
ns, err := getDnsNs("alfaexploit.com")
if err != nil {
t.Errorf("Expected no error in getDnsNs, but got: %v", err)
} else {
for _, v := range ns {
//fmt.Println(" ", v.Host)
if v.Host != "dns200.anycast.me." && v.Host != "ns200.anycast.me." {
t.Errorf("Expected dns200.anycast.me or ns200.anycast.me, but got: %v", v.Host)
}
}
}
}
// Test getWhois
func TestGetWhois(t *testing.T) {
_, err := getWhois("alfaexploit.com")
if err != nil {
t.Errorf("Expected no error in getWhois, but got: %v", err)
}
}
// Test queryDB
func TestQueryDB(t *testing.T) {
// Mock getDnsNs function in order to speed up tests execution
getDnsNsOri := getDnsNs
// unmock functions content
defer func() {
getDnsNs = getDnsNsOri
}()
getDnsNs = func(domainToSearch string) ([]*net.NS, error) {
//fmt.Println("-- Executing mocked getDnsNs function, domain: ", domainToSearch)
switch domainToSearch {
case "alfaexploit.com":
ns := make([]*net.NS, 2)
ns[0] = &net.NS{
Host: "nstest1.example.com.",
}
ns[1] = &net.NS{
Host: "nstest2.example.com.",
}
return ns, nil
default:
return nil, nil
}
}
// Mock getWhois function in order to speed up tests execution
getWhoisOri := getWhois
// unmock functions content
defer func() {
getWhois = getWhoisOri
}()
getWhois = func(domainToSearch string) (whois.Response, error) {
//fmt.Println("-- Executing mocked getWhois function, domain: ", domainToSearch)
return whois.Response{
Domain: domainToSearch,
Name: domainToSearch,
TLD: "test",
WHOISHost: "whois.test.com",
WHOISRaw: "testWHOIS",
}, nil
}
// Create memory database
db, err := sql.Open("sqlite3", ":memory:")
if err != nil {
t.Fatalf("Failed to open database: %v", err)
}
defer db.Close()
// Create table
err = createTable(db)
if err != nil {
t.Fatalf("Failed to create table: %v", err)
}
// Insert test domain
_, err = db.Exec(`INSERT INTO domain_list (id, realId, isp, domain) VALUES ("1", "realId", "ovh", "example.com")`)
if err != nil {
t.Fatalf("Failed to insert domain: %v", err)
}
// Search domain
err = queryDB("example.com", db, 0)
if err != nil {
t.Errorf("Expected no error when querying existing domain, but got: %v", err)
}
// Search non-db domain
err = queryDB("alfaexploit.com", db, 0)
if err != nil {
t.Errorf("Expected no error when querying non-db domain, but got: %v", err)
}
// Search inexistent domain
err = queryDB("nonexistent.com", db, 0)
if err != nil {
t.Errorf("Expected no error when querying nonexistent domain, but got: %v", err)
}
}
// Test checkPopulatedDb
func TestCheckPopulateDB(t *testing.T) {
// Create memory database
db, err := sql.Open("sqlite3", ":memory:")
if err != nil {
t.Fatalf("Failed to open database: %v", err)
}
defer db.Close()
// Create table
err = createTable(db)
if err != nil {
t.Fatalf("Failed to create table: %v", err)
}
// Insert test domain
_, err = db.Exec(`INSERT INTO domain_list (id, realId, isp, domain) VALUES ("1", "realId", "ovh", "example.com")`)
if err != nil {
t.Fatalf("Failed to insert domain: %v", err)
}
// Search inexistent domain
err = checkPopulatedDb(db)
if err != nil {
t.Errorf("Expected no error when checking databse population, but got: %v", err)
}
}
// Test regenerateDb
func TestRegenerateDb(t *testing.T) {
// Copy original functions content
populateOvhOri := populateOvh
populateCloudFlareOri := populateCloudFlare
populateGoDaddyOri := populateGoDaddy
populateDonDominioOri := populateDonDominio
checkPopulatedDbOri := checkPopulatedDb
// unmock functions content
defer func() {
populateOvh = populateOvhOri
populateCloudFlare = populateCloudFlareOri
populateGoDaddy = populateGoDaddyOri
populateDonDominio = populateDonDominioOri
checkPopulatedDb = checkPopulatedDbOri
}()
populateOvh = func(db *sql.DB) error {
return nil
}
populateCloudFlare = func(db *sql.DB) error {
return nil
}
populateGoDaddy = func(db *sql.DB) error {
return nil
}
populateDonDominio = func(db *sql.DB, socks5 string) error {
return nil
}
checkPopulatedDb = func(db *sql.DB) error {
return nil
}
dbFile := "/tmp/testDb.db"
if err := regenerateDb(dbFile, "nil"); err != nil {
t.Errorf("Expected no error when checking TestRegenerateDb, but got: %v", err)
}
checkPopulatedDb = func(db *sql.DB) error {
return fmt.Errorf("Error populating DB")
}
if err := regenerateDb(dbFile, "nil"); err == nil {
t.Errorf("Expected error when checking TestRegenerateDb, but got: %v", err)
}
}
// Test main
func TestMain(t *testing.T) {
// Copy original functions content
populateOvhOri := populateOvh
populateCloudFlareOri := populateCloudFlare
populateGoDaddyOri := populateGoDaddy
populateDonDominioOri := populateDonDominio
// unmock functions content
defer func() {
populateOvh = populateOvhOri
populateCloudFlare = populateCloudFlareOri
populateGoDaddy = populateGoDaddyOri
populateDonDominio = populateDonDominioOri
}()
populateOvh = func(db *sql.DB) error {
return nil
}
populateCloudFlare = func(db *sql.DB) error {
return nil
}
populateGoDaddy = func(db *sql.DB) error {
return nil
}
populateDonDominio = func(db *sql.DB, socks5 string) error {
return nil
}
checkPopulatedDb = func(db *sql.DB) error {
return nil
}
// Save original Args and restore on exit function
oldArgs := os.Args
defer func() {
os.Args = oldArgs
}()
// Args reset
flag.CommandLine = flag.NewFlagSet(os.Args[0], flag.ExitOnError)
// Configure new Args
os.Args = []string{"cmd", "-exit"}
// Copy original functions content
// We cant unmock it using defer because maybe we need to make some prints in console for debugging
osStdoutOri := os.Stdout
osStderrOri := os.Stderr
colorOutputOri := color.Output
colorErrorOri := color.Error
// All content written to w pipe, will be copied automatically to r pipe
r, w, _ := os.Pipe()
// Make Stdout/Stderr to be written to w pipe
// Color module defines other Stdout/Stderr, so pipe them to w pipe too
os.Stdout = w
os.Stderr = w
color.Output = w
color.Error = w
main()
// Close w pipe
w.Close()
// Restore Stdout/Stderr to normal output
os.Stdout = osStdoutOri
os.Stderr = osStderrOri
color.Output = colorOutputOri
color.Error = colorErrorOri
// Read all r pipe content
out, _ := io.ReadAll(r)
//fmt.Println("--- out ---")
//fmt.Println(out)
scanner := bufio.NewScanner(bytes.NewReader(out))
bannerFound := false
for scanner.Scan() {
line := scanner.Text()
//fmt.Println("-- LINE: ", line)
if strings.Contains(line, "coded by Kr0m: alfaexploit.com") {
bannerFound = true
break
}
}
if !bannerFound {
t.Fatalf(`TestMain: No banner found`)
}
}
// Test main -regenerateDB
func TestMainDbFileRegenerateDB(t *testing.T) {
dbFile := "/tmp/testDb.db"
// Remove DB:
err := os.Remove(dbFile)
fileNotFoundError := "remove " + dbFile + ": no such file or directory"
if err != nil && err.Error() != fileNotFoundError {
t.Fatalf(`Error deleting DB file: %s`, dbFile)
}
// Create DB:
file, err := os.Create(dbFile)
if err != nil {
t.Fatalf(`Error TestMainDbFileRegenerateDB: %v`, err)
}
file.Close()
// Copy original functions content
populateOvhOri := populateOvh
populateCloudFlareOri := populateCloudFlare
populateGoDaddyOri := populateGoDaddy
populateDonDominioOri := populateDonDominio
// unmock functions content
defer func() {
populateOvh = populateOvhOri
populateCloudFlare = populateCloudFlareOri
populateGoDaddy = populateGoDaddyOri
populateDonDominio = populateDonDominioOri
}()
populateOvh = func(db *sql.DB) error {
return nil
}
populateCloudFlare = func(db *sql.DB) error {
return nil
}
populateGoDaddy = func(db *sql.DB) error {
return nil
}
populateDonDominio = func(db *sql.DB, socks5 string) error {
return nil
}
checkPopulatedDb = func(db *sql.DB) error {
return nil
}
// Save original Args and restore on exit function
oldArgs := os.Args
defer func() {
os.Args = oldArgs
}()
// Args reset
flag.CommandLine = flag.NewFlagSet(os.Args[0], flag.ExitOnError)
// Configure new Args
os.Args = []string{"cmd", "-regenerateDB", "-exit"}
// Copy original functions content
// We cant unmock it using defer because maybe we need to make some prints in console for debugging
osStdoutOri := os.Stdout
osStderrOri := os.Stderr
colorOutputOri := color.Output
colorErrorOri := color.Error
// All content written to w pipe, will be copied automatically to r pipe
r, w, _ := os.Pipe()
// Make Stdout/Stderr to be written to w pipe
// Color module defines other Stdout/Stderr, so pipe them to w pipe too
os.Stdout = w
os.Stderr = w
color.Output = w
color.Error = w
main()
// Close w pipe
w.Close()
// Restore Stdout/Stderr to normal output
os.Stdout = osStdoutOri
os.Stderr = osStderrOri
color.Output = colorOutputOri
color.Error = colorErrorOri
// Read all r pipe content
out, _ := io.ReadAll(r)
//fmt.Println("--- out ---")
//fmt.Println(out)
scanner := bufio.NewScanner(bytes.NewReader(out))
lineFound := false
for scanner.Scan() {
line := scanner.Text()
//fmt.Println("-- LINE: ", line)
if strings.Contains(line, "> Regenerating DB.") {
lineFound = true
break
}
}
if !lineFound {
t.Fatalf(`TestMainDbFileRegenerateDB: '> Regenerating DB.' line not found`)
}
}
// Test searchCLI correct query
func TestSearchCLICorrectQuery(t *testing.T) {
// Args reset
flag.CommandLine = flag.NewFlagSet(os.Args[0], flag.ExitOnError)
// Create memory database
db, err := sql.Open("sqlite3", ":memory:")
if err != nil {
t.Fatalf("Failed to open database: %v", err)
}
defer db.Close()
// Create table
err = createTable(db)
if err != nil {
t.Fatalf("Failed to create table: %v", err)
}
// Insert test domain
_, err = db.Exec(`INSERT INTO domain_list (id, realId, isp, domain) VALUES ("1", "realId", "ovh", "example.com")`)
if err != nil {
t.Fatalf("Failed to insert domain: %v", err)
}
// Save original os.Stdout, os.Stderr
osStdoutOri := os.Stdout
osStderrOri := os.Stderr
colorOutputOri := color.Output
colorErrorOri := color.Error
// Create pipes for capturing output and simulating input
// In a pipe what is written to its w extreme can be readed on its r extreme
rOut, wOut, _ := os.Pipe()
rIn, wIn, _ := os.Pipe()
// Redirect os.Stdout and os.Stderr -> wOut
os.Stdout = wOut
os.Stderr = wOut
color.Output = wOut
color.Error = wOut
// Simulate user input by writing to wIn
input := "example.com\n"
io.WriteString(wIn, input)
wIn.Close() // Close input after writing
// Run the search function, readline in searchCLI function doesnt read fro STDIN, it reads from console directly, thats the reason we send the STDIN to read from
searchCLI(db, true, io.NopCloser(rIn))
// Close the write end of the output pipe to signal that we are done writing
wOut.Close()
// Restore os.Stdout and os.Stderr to their original state
os.Stdout = osStdoutOri
os.Stderr = osStderrOri
color.Output = colorOutputOri
color.Error = colorErrorOri
// Read the captured output from the pipe
out, err := io.ReadAll(rOut)
if err != nil {
t.Fatalf("Failed to read output: %v", err)
}
// Scan output and check if expected line is present
scanner := bufio.NewScanner(bytes.NewReader(out))
lineFound := false
for scanner.Scan() {
line := scanner.Text()
//fmt.Println("LINE: ", line) // Depuración
if strings.Contains(line, "DOMAIN: example.com") {
lineFound = true
break
}
}
if !lineFound {
t.Fatalf(`TestSearchCLICorrectQuery: 'DOMAIN: example.com' line not found`)
}
}
// Test searchCLI incorrect query1
func TestSearchCLIIncorrectQuery1(t *testing.T) {
// Args reset
flag.CommandLine = flag.NewFlagSet(os.Args[0], flag.ExitOnError)
// Create memory database
db, err := sql.Open("sqlite3", ":memory:")
if err != nil {
t.Fatalf("Failed to open database: %v", err)
}
defer db.Close()
// Create table
err = createTable(db)
if err != nil {
t.Fatalf("Failed to create table: %v", err)
}
// Insert test domain
_, err = db.Exec(`INSERT INTO domain_list (id, realId, isp, domain) VALUES ("1", "realId", "ovh", "example.com")`)
if err != nil {
t.Fatalf("Failed to insert domain: %v", err)
}
// Save original os.Stdout, os.Stderr
osStdoutOri := os.Stdout
osStderrOri := os.Stderr
colorOutputOri := color.Output
colorErrorOri := color.Error
// Create pipes for capturing output and simulating input
// In a pipe what is written to its w extreme can be readed on its r extreme
rOut, wOut, _ := os.Pipe()
rIn, wIn, _ := os.Pipe()
// Redirect os.Stdout and os.Stderr -> wOut
os.Stdout = wOut
os.Stderr = wOut
color.Output = wOut
color.Error = wOut
// Simulate user input by writing to the input pipe
input := "KpYTnQSWGuQ5pm4bQyx9rluKU4q8qLj1QNTd4wcT4OzBgJwQo1BGskbctE1mabrGOUCESgFBeTqEHVbhXEVDJM4rgR56CXDFoWTPIwlM9MTMR09B3fwkUY4GzO2bl35cMpVRL1cYcNJMU98oh0l7KBiBzA6eKHkXdoagQbuuT1KS4OovGAa5JH2TxmbEPSGynT2p3JhDTGVm0ZHRfBly5HharptauKdqVNeZegzlVofJ4D1FxpjOBzqSAeO1VAs.com\n"
io.WriteString(wIn, input)
wIn.Close()
// Run the search function, readline in searchCLI function doesnt read fro STDIN, it reads from console directly, thats the reason we send the STDIN to read from
searchCLI(db, true, io.NopCloser(rIn))
// Close output pipe to signal that we are done writing
wOut.Close()
// Restore os.Stdout and os.Stderr to their original state
os.Stdout = osStdoutOri
os.Stderr = osStderrOri
color.Output = colorOutputOri
color.Error = colorErrorOri
// Read all output
out, _ := io.ReadAll(rOut)
if err != nil {
t.Fatalf("Failed to read output: %v", err)
}
// Scan output and check if expected line is present
scanner := bufio.NewScanner(bytes.NewReader(out))
lineFound := false
for scanner.Scan() {
line := scanner.Text()
//fmt.Println("LINE: ", line)
if strings.Contains(line, "Invalid domain") {
lineFound = true
break
}
}
if !lineFound {
t.Fatalf(`TestSearchCLIIncorrectQuery1: 'Invalid domain' line not found`)
}
}
// Test searchCLI incorrect query2
func TestSearchCLIIncorrectQuery2(t *testing.T) {
// Args reset
flag.CommandLine = flag.NewFlagSet(os.Args[0], flag.ExitOnError)
// Create memory database
db, err := sql.Open("sqlite3", ":memory:")
if err != nil {
t.Fatalf("Failed to open database: %v", err)
}
defer db.Close()