-
Notifications
You must be signed in to change notification settings - Fork 101
/
reader_test.go
1018 lines (868 loc) · 28.1 KB
/
reader_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 maxminddb
import (
"errors"
"fmt"
"math/big"
"math/rand"
"net"
"net/netip"
"os"
"path/filepath"
"testing"
"time"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func TestReader(t *testing.T) {
for _, recordSize := range []uint{24, 28, 32} {
for _, ipVersion := range []uint{4, 6} {
fileName := fmt.Sprintf(
"MaxMind-DB-test-ipv%d-%d.mmdb",
ipVersion,
recordSize,
)
t.Run(fileName, func(t *testing.T) {
reader, err := Open(testFile(fileName))
require.NoError(t, err, "unexpected error while opening database: %v", err)
checkMetadata(t, reader, ipVersion, recordSize)
if ipVersion == 4 {
checkIpv4(t, reader)
} else {
checkIpv6(t, reader)
}
})
}
}
}
func TestReaderBytes(t *testing.T) {
for _, recordSize := range []uint{24, 28, 32} {
for _, ipVersion := range []uint{4, 6} {
fileName := fmt.Sprintf(
testFile("MaxMind-DB-test-ipv%d-%d.mmdb"),
ipVersion,
recordSize,
)
bytes, err := os.ReadFile(fileName)
require.NoError(t, err)
reader, err := FromBytes(bytes)
require.NoError(t, err, "unexpected error while opening bytes: %v", err)
checkMetadata(t, reader, ipVersion, recordSize)
if ipVersion == 4 {
checkIpv4(t, reader)
} else {
checkIpv6(t, reader)
}
}
}
}
func TestLookupNetwork(t *testing.T) {
bigInt := new(big.Int)
bigInt.SetString("1329227995784915872903807060280344576", 10)
decoderRecord := map[string]any{
"array": []any{
uint64(1),
uint64(2),
uint64(3),
},
"boolean": true,
"bytes": []uint8{
0x0,
0x0,
0x0,
0x2a,
},
"double": 42.123456,
"float": float32(1.1),
"int32": -268435456,
"map": map[string]any{
"mapX": map[string]any{
"arrayX": []any{
uint64(0x7),
uint64(0x8),
uint64(0x9),
},
"utf8_stringX": "hello",
},
},
"uint128": bigInt,
"uint16": uint64(0x64),
"uint32": uint64(0x10000000),
"uint64": uint64(0x1000000000000000),
"utf8_string": "unicode! ☯ - ♫",
}
tests := []struct {
IP netip.Addr
DBFile string
ExpectedNetwork string
ExpectedRecord any
ExpectedFound bool
}{
{
IP: netip.MustParseAddr("1.1.1.1"),
DBFile: "MaxMind-DB-test-ipv6-32.mmdb",
ExpectedNetwork: "1.0.0.0/8",
ExpectedRecord: nil,
ExpectedFound: false,
},
{
IP: netip.MustParseAddr("::1:ffff:ffff"),
DBFile: "MaxMind-DB-test-ipv6-24.mmdb",
ExpectedNetwork: "::1:ffff:ffff/128",
ExpectedRecord: map[string]any{"ip": "::1:ffff:ffff"},
ExpectedFound: true,
},
{
IP: netip.MustParseAddr("::2:0:1"),
DBFile: "MaxMind-DB-test-ipv6-24.mmdb",
ExpectedNetwork: "::2:0:0/122",
ExpectedRecord: map[string]any{"ip": "::2:0:0"},
ExpectedFound: true,
},
{
IP: netip.MustParseAddr("1.1.1.1"),
DBFile: "MaxMind-DB-test-ipv4-24.mmdb",
ExpectedNetwork: "1.1.1.1/32",
ExpectedRecord: map[string]any{"ip": "1.1.1.1"},
ExpectedFound: true,
},
{
IP: netip.MustParseAddr("1.1.1.3"),
DBFile: "MaxMind-DB-test-ipv4-24.mmdb",
ExpectedNetwork: "1.1.1.2/31",
ExpectedRecord: map[string]any{"ip": "1.1.1.2"},
ExpectedFound: true,
},
{
IP: netip.MustParseAddr("1.1.1.3"),
DBFile: "MaxMind-DB-test-decoder.mmdb",
ExpectedNetwork: "1.1.1.0/24",
ExpectedRecord: decoderRecord,
ExpectedFound: true,
},
{
IP: netip.MustParseAddr("::ffff:1.1.1.128"),
DBFile: "MaxMind-DB-test-decoder.mmdb",
ExpectedNetwork: "::ffff:1.1.1.0/120",
ExpectedRecord: decoderRecord,
ExpectedFound: true,
},
{
IP: netip.MustParseAddr("::1.1.1.128"),
DBFile: "MaxMind-DB-test-decoder.mmdb",
ExpectedNetwork: "::101:100/120",
ExpectedRecord: decoderRecord,
ExpectedFound: true,
},
{
IP: netip.MustParseAddr("200.0.2.1"),
DBFile: "MaxMind-DB-no-ipv4-search-tree.mmdb",
ExpectedNetwork: "::/64",
ExpectedRecord: "::0/64",
ExpectedFound: true,
},
{
IP: netip.MustParseAddr("::200.0.2.1"),
DBFile: "MaxMind-DB-no-ipv4-search-tree.mmdb",
ExpectedNetwork: "::/64",
ExpectedRecord: "::0/64",
ExpectedFound: true,
},
{
IP: netip.MustParseAddr("0:0:0:0:ffff:ffff:ffff:ffff"),
DBFile: "MaxMind-DB-no-ipv4-search-tree.mmdb",
ExpectedNetwork: "::/64",
ExpectedRecord: "::0/64",
ExpectedFound: true,
},
{
IP: netip.MustParseAddr("ef00::"),
DBFile: "MaxMind-DB-no-ipv4-search-tree.mmdb",
ExpectedNetwork: "8000::/1",
ExpectedRecord: nil,
ExpectedFound: false,
},
}
for _, test := range tests {
t.Run(fmt.Sprintf("%s - %s", test.DBFile, test.IP), func(t *testing.T) {
var record any
reader, err := Open(testFile(test.DBFile))
require.NoError(t, err)
result := reader.Lookup(test.IP)
require.NoError(t, result.Err())
assert.Equal(t, test.ExpectedFound, result.Found())
assert.Equal(t, test.ExpectedNetwork, result.Prefix().String())
require.NoError(t, result.Decode(&record))
assert.Equal(t, test.ExpectedRecord, record)
})
}
}
func TestDecodingToInterface(t *testing.T) {
reader, err := Open(testFile("MaxMind-DB-test-decoder.mmdb"))
require.NoError(t, err, "unexpected error while opening database: %v", err)
var recordInterface any
err = reader.Lookup(netip.MustParseAddr("::1.1.1.0")).Decode(&recordInterface)
require.NoError(t, err, "unexpected error while doing lookup: %v", err)
checkDecodingToInterface(t, recordInterface)
}
func TestMetadataPointer(t *testing.T) {
_, err := Open(testFile("MaxMind-DB-test-metadata-pointers.mmdb"))
require.NoError(t, err, "unexpected error while opening database: %v", err)
}
func checkDecodingToInterface(t *testing.T, recordInterface any) {
record := recordInterface.(map[string]any)
assert.Equal(t, []any{uint64(1), uint64(2), uint64(3)}, record["array"])
assert.Equal(t, true, record["boolean"])
assert.Equal(t, []byte{0x00, 0x00, 0x00, 0x2a}, record["bytes"])
assert.InEpsilon(t, 42.123456, record["double"], 1e-10)
assert.InEpsilon(t, float32(1.1), record["float"], 1e-5)
assert.Equal(t, -268435456, record["int32"])
assert.Equal(t,
map[string]any{
"mapX": map[string]any{
"arrayX": []any{uint64(7), uint64(8), uint64(9)},
"utf8_stringX": "hello",
},
},
record["map"],
)
assert.Equal(t, uint64(100), record["uint16"])
assert.Equal(t, uint64(268435456), record["uint32"])
assert.Equal(t, uint64(1152921504606846976), record["uint64"])
assert.Equal(t, "unicode! ☯ - ♫", record["utf8_string"])
bigInt := new(big.Int)
bigInt.SetString("1329227995784915872903807060280344576", 10)
assert.Equal(t, bigInt, record["uint128"])
}
type TestType struct {
Array []uint `maxminddb:"array"`
Boolean bool `maxminddb:"boolean"`
Bytes []byte `maxminddb:"bytes"`
Double float64 `maxminddb:"double"`
Float float32 `maxminddb:"float"`
Int32 int32 `maxminddb:"int32"`
Map map[string]any `maxminddb:"map"`
Uint16 uint16 `maxminddb:"uint16"`
Uint32 uint32 `maxminddb:"uint32"`
Uint64 uint64 `maxminddb:"uint64"`
Uint128 big.Int `maxminddb:"uint128"`
Utf8String string `maxminddb:"utf8_string"`
}
func TestDecoder(t *testing.T) {
reader, err := Open(testFile("MaxMind-DB-test-decoder.mmdb"))
require.NoError(t, err)
verify := func(result TestType) {
assert.Equal(t, []uint{uint(1), uint(2), uint(3)}, result.Array)
assert.True(t, result.Boolean)
assert.Equal(t, []byte{0x00, 0x00, 0x00, 0x2a}, result.Bytes)
assert.InEpsilon(t, 42.123456, result.Double, 1e-10)
assert.InEpsilon(t, float32(1.1), result.Float, 1e-5)
assert.Equal(t, int32(-268435456), result.Int32)
assert.Equal(t,
map[string]any{
"mapX": map[string]any{
"arrayX": []any{uint64(7), uint64(8), uint64(9)},
"utf8_stringX": "hello",
},
},
result.Map,
)
assert.Equal(t, uint16(100), result.Uint16)
assert.Equal(t, uint32(268435456), result.Uint32)
assert.Equal(t, uint64(1152921504606846976), result.Uint64)
assert.Equal(t, "unicode! ☯ - ♫", result.Utf8String)
bigInt := new(big.Int)
bigInt.SetString("1329227995784915872903807060280344576", 10)
assert.Equal(t, bigInt, &result.Uint128)
}
{
// Directly lookup and decode.
var testV TestType
require.NoError(t, reader.Lookup(netip.MustParseAddr("::1.1.1.0")).Decode(&testV))
verify(testV)
}
{
// Lookup record offset, then Decode.
var testV TestType
result := reader.Lookup(netip.MustParseAddr("::1.1.1.0"))
require.NoError(t, result.Err())
require.True(t, result.Found())
res := reader.LookupOffset(result.Offset())
require.NoError(t, res.Decode(&testV))
verify(testV)
}
require.NoError(t, reader.Close())
}
func TestDecodePath(t *testing.T) {
reader, err := Open(testFile("MaxMind-DB-test-decoder.mmdb"))
require.NoError(t, err)
result := reader.Lookup(netip.MustParseAddr("::1.1.1.0"))
require.NoError(t, result.Err())
var u16 uint16
require.NoError(t, result.DecodePath(&u16, "uint16"))
assert.Equal(t, uint16(100), u16)
var u uint
require.NoError(t, result.DecodePath(&u, "array", 0))
assert.Equal(t, uint(1), u)
var u2 uint
require.NoError(t, result.DecodePath(&u2, "array", 2))
assert.Equal(t, uint(3), u2)
// This is past the end of the array
var u3 uint
require.NoError(t, result.DecodePath(&u3, "array", 3))
assert.Equal(t, uint(0), u3)
// Negative offsets
var n1 uint
require.NoError(t, result.DecodePath(&n1, "array", -1))
assert.Equal(t, uint(3), n1)
var n2 uint
require.NoError(t, result.DecodePath(&n2, "array", -3))
assert.Equal(t, uint(1), n2)
var u4 uint
require.NoError(t, result.DecodePath(&u4, "map", "mapX", "arrayX", 1))
assert.Equal(t, uint(8), u4)
// Does key not exist
var ne uint
require.NoError(t, result.DecodePath(&ne, "does-not-exist", 1))
assert.Equal(t, uint(0), ne)
}
type TestInterface interface {
method() bool
}
func (t *TestType) method() bool {
return t.Boolean
}
func TestStructInterface(t *testing.T) {
var result TestInterface = &TestType{}
reader, err := Open(testFile("MaxMind-DB-test-decoder.mmdb"))
require.NoError(t, err)
require.NoError(t, reader.Lookup(netip.MustParseAddr("::1.1.1.0")).Decode(&result))
assert.True(t, result.method())
}
func TestNonEmptyNilInterface(t *testing.T) {
var result TestInterface
reader, err := Open(testFile("MaxMind-DB-test-decoder.mmdb"))
require.NoError(t, err)
err = reader.Lookup(netip.MustParseAddr("::1.1.1.0")).Decode(&result)
assert.Equal(
t,
"maxminddb: cannot unmarshal map into type maxminddb.TestInterface",
err.Error(),
)
}
type CityTraits struct {
AutonomousSystemNumber uint `json:"autonomous_system_number,omitempty" maxminddb:"autonomous_system_number"`
}
type City struct {
Traits CityTraits `maxminddb:"traits"`
}
func TestEmbeddedStructAsInterface(t *testing.T) {
var city City
var result any = city.Traits
db, err := Open(testFile("GeoIP2-ISP-Test.mmdb"))
require.NoError(t, err)
require.NoError(t, db.Lookup(netip.MustParseAddr("1.128.0.0")).Decode(&result))
}
type BoolInterface interface {
true() bool
}
type Bool bool
func (b Bool) true() bool {
return bool(b)
}
type ValueTypeTestType struct {
Boolean BoolInterface `maxminddb:"boolean"`
}
func TestValueTypeInterface(t *testing.T) {
var result ValueTypeTestType
result.Boolean = Bool(false)
reader, err := Open(testFile("MaxMind-DB-test-decoder.mmdb"))
require.NoError(t, err)
// although it would be nice to support cases like this, I am not sure it
// is possible to do so in a general way.
assert.Error(t, reader.Lookup(netip.MustParseAddr("::1.1.1.0")).Decode(&result))
}
type NestedMapX struct {
UTF8StringX string `maxminddb:"utf8_stringX"`
}
type NestedPointerMapX struct {
ArrayX []int `maxminddb:"arrayX"`
}
type PointerMap struct {
MapX struct {
Ignored string
NestedMapX
*NestedPointerMapX
} `maxminddb:"mapX"`
}
type TestPointerType struct {
Array *[]uint `maxminddb:"array"`
Boolean *bool `maxminddb:"boolean"`
Bytes *[]byte `maxminddb:"bytes"`
Double *float64 `maxminddb:"double"`
Float *float32 `maxminddb:"float"`
Int32 *int32 `maxminddb:"int32"`
Map *PointerMap `maxminddb:"map"`
Uint16 *uint16 `maxminddb:"uint16"`
Uint32 *uint32 `maxminddb:"uint32"`
// Test for pointer to pointer
Uint64 **uint64 `maxminddb:"uint64"`
Uint128 *big.Int `maxminddb:"uint128"`
Utf8String *string `maxminddb:"utf8_string"`
}
func TestComplexStructWithNestingAndPointer(t *testing.T) {
reader, err := Open(testFile("MaxMind-DB-test-decoder.mmdb"))
require.NoError(t, err)
var result TestPointerType
err = reader.Lookup(netip.MustParseAddr("::1.1.1.0")).Decode(&result)
require.NoError(t, err)
assert.Equal(t, []uint{uint(1), uint(2), uint(3)}, *result.Array)
assert.True(t, *result.Boolean)
assert.Equal(t, []byte{0x00, 0x00, 0x00, 0x2a}, *result.Bytes)
assert.InEpsilon(t, 42.123456, *result.Double, 1e-10)
assert.InEpsilon(t, float32(1.1), *result.Float, 1e-5)
assert.Equal(t, int32(-268435456), *result.Int32)
assert.Equal(t, []int{7, 8, 9}, result.Map.MapX.ArrayX)
assert.Equal(t, "hello", result.Map.MapX.UTF8StringX)
assert.Equal(t, uint16(100), *result.Uint16)
assert.Equal(t, uint32(268435456), *result.Uint32)
assert.Equal(t, uint64(1152921504606846976), **result.Uint64)
assert.Equal(t, "unicode! ☯ - ♫", *result.Utf8String)
bigInt := new(big.Int)
bigInt.SetString("1329227995784915872903807060280344576", 10)
assert.Equal(t, bigInt, result.Uint128)
require.NoError(t, reader.Close())
}
// See GitHub #115.
func TestNestedMapDecode(t *testing.T) {
db, err := Open(testFile("GeoIP2-Country-Test.mmdb"))
require.NoError(t, err)
var r map[string]map[string]any
require.NoError(t, db.Lookup(netip.MustParseAddr("89.160.20.128")).Decode(&r))
assert.Equal(
t,
map[string]map[string]any{
"continent": {
"code": "EU",
"geoname_id": uint64(6255148),
"names": map[string]any{
"de": "Europa",
"en": "Europe",
"es": "Europa",
"fr": "Europe",
"ja": "ヨーロッパ",
"pt-BR": "Europa",
"ru": "Европа",
"zh-CN": "欧洲",
},
},
"country": {
"geoname_id": uint64(2661886),
"is_in_european_union": true,
"iso_code": "SE",
"names": map[string]any{
"de": "Schweden",
"en": "Sweden",
"es": "Suecia",
"fr": "Suède",
"ja": "スウェーデン王国",
"pt-BR": "Suécia",
"ru": "Швеция",
"zh-CN": "瑞典",
},
},
"registered_country": {
"geoname_id": uint64(2921044),
"is_in_european_union": true,
"iso_code": "DE",
"names": map[string]any{
"de": "Deutschland",
"en": "Germany",
"es": "Alemania",
"fr": "Allemagne",
"ja": "ドイツ連邦共和国",
"pt-BR": "Alemanha",
"ru": "Германия",
"zh-CN": "德国",
},
},
},
r,
)
}
func TestNestedOffsetDecode(t *testing.T) {
db, err := Open(testFile("GeoIP2-City-Test.mmdb"))
require.NoError(t, err)
result := db.Lookup(netip.MustParseAddr("81.2.69.142"))
require.NoError(t, result.Err())
require.True(t, result.Found())
var root struct {
CountryOffset uintptr `maxminddb:"country"`
Location struct {
Latitude float64 `maxminddb:"latitude"`
// Longitude is directly nested within the parent map.
LongitudeOffset uintptr `maxminddb:"longitude"`
// TimeZone is indirected via a pointer.
TimeZoneOffset uintptr `maxminddb:"time_zone"`
} `maxminddb:"location"`
}
res := db.LookupOffset(result.Offset())
require.NoError(t, res.Decode(&root))
assert.InEpsilon(t, 51.5142, root.Location.Latitude, 1e-10)
var longitude float64
res = db.LookupOffset(root.Location.LongitudeOffset)
require.NoError(t, res.Decode(&longitude))
assert.InEpsilon(t, -0.0931, longitude, 1e-10)
var timeZone string
res = db.LookupOffset(root.Location.TimeZoneOffset)
require.NoError(t, res.Decode(&timeZone))
assert.Equal(t, "Europe/London", timeZone)
var country struct {
IsoCode string `maxminddb:"iso_code"`
}
res = db.LookupOffset(root.CountryOffset)
require.NoError(t, res.Decode(&country))
assert.Equal(t, "GB", country.IsoCode)
require.NoError(t, db.Close())
}
func TestDecodingUint16IntoInt(t *testing.T) {
reader, err := Open(testFile("MaxMind-DB-test-decoder.mmdb"))
require.NoError(t, err, "unexpected error while opening database: %v", err)
var result struct {
Uint16 int `maxminddb:"uint16"`
}
err = reader.Lookup(netip.MustParseAddr("::1.1.1.0")).Decode(&result)
require.NoError(t, err)
assert.Equal(t, 100, result.Uint16)
}
func TestIpv6inIpv4(t *testing.T) {
reader, err := Open(testFile("MaxMind-DB-test-ipv4-24.mmdb"))
require.NoError(t, err, "unexpected error while opening database: %v", err)
var result TestType
err = reader.Lookup(netip.MustParseAddr("2001::")).Decode(&result)
var emptyResult TestType
assert.Equal(t, emptyResult, result)
expected := errors.New(
"error looking up '2001::': you attempted to look up an IPv6 address in an IPv4-only database",
)
assert.Equal(t, expected, err)
require.NoError(t, reader.Close(), "error on close")
}
func TestBrokenDoubleDatabase(t *testing.T) {
reader, err := Open(testFile("GeoIP2-City-Test-Broken-Double-Format.mmdb"))
require.NoError(t, err, "unexpected error while opening database: %v", err)
var result any
err = reader.Lookup(netip.MustParseAddr("2001:220::")).Decode(&result)
expected := newInvalidDatabaseError(
"the MaxMind DB file's data section contains bad data (float 64 size of 2)",
)
require.ErrorAs(t, err, &expected)
require.NoError(t, reader.Close(), "error on close")
}
func TestInvalidNodeCountDatabase(t *testing.T) {
_, err := Open(testFile("GeoIP2-City-Test-Invalid-Node-Count.mmdb"))
expected := newInvalidDatabaseError("the MaxMind DB contains invalid metadata")
assert.Equal(t, expected, err)
}
func TestMissingDatabase(t *testing.T) {
reader, err := Open("file-does-not-exist.mmdb")
assert.Nil(t, reader, "received reader when doing lookups on DB that doesn't exist")
assert.Regexp(t, "open file-does-not-exist.mmdb.*", err)
}
func TestNonDatabase(t *testing.T) {
reader, err := Open("README.md")
assert.Nil(t, reader, "received reader when doing lookups on DB that doesn't exist")
assert.Equal(t, "error opening database: invalid MaxMind DB file", err.Error())
}
func TestDecodingToNonPointer(t *testing.T) {
reader, err := Open(testFile("MaxMind-DB-test-decoder.mmdb"))
require.NoError(t, err)
var recordInterface any
err = reader.Lookup(netip.MustParseAddr("::1.1.1.0")).Decode(recordInterface)
assert.Equal(t, "result param must be a pointer", err.Error())
require.NoError(t, reader.Close(), "error on close")
}
// func TestNilLookup(t *testing.T) {
// reader, err := Open(testFile("MaxMind-DB-test-decoder.mmdb"))
// require.NoError(t, err)
// var recordInterface any
// err = reader.Lookup(nil).Decode( recordInterface)
// assert.Equal(t, "IP passed to Lookup cannot be nil", err.Error())
// require.NoError(t, reader.Close(), "error on close")
// }
func TestUsingClosedDatabase(t *testing.T) {
reader, err := Open(testFile("MaxMind-DB-test-decoder.mmdb"))
require.NoError(t, err)
require.NoError(t, reader.Close())
addr := netip.MustParseAddr("::")
result := reader.Lookup(addr)
assert.Equal(t, "cannot call Lookup on a closed database", result.Err().Error())
var recordInterface any
err = reader.Lookup(addr).Decode(recordInterface)
assert.Equal(t, "cannot call Lookup on a closed database", err.Error())
err = reader.LookupOffset(0).Decode(recordInterface)
assert.Equal(t, "cannot call Decode on a closed database", err.Error())
}
func checkMetadata(t *testing.T, reader *Reader, ipVersion, recordSize uint) {
metadata := reader.Metadata
assert.Equal(t, uint(2), metadata.BinaryFormatMajorVersion)
assert.Equal(t, uint(0), metadata.BinaryFormatMinorVersion)
assert.IsType(t, uint(0), metadata.BuildEpoch)
assert.Equal(t, "Test", metadata.DatabaseType)
assert.Equal(t, map[string]string{
"en": "Test Database",
"zh": "Test Database Chinese",
}, metadata.Description)
assert.Equal(t, ipVersion, metadata.IPVersion)
assert.Equal(t, []string{"en", "zh"}, metadata.Languages)
if ipVersion == 4 {
assert.Equal(t, uint(164), metadata.NodeCount)
} else {
assert.Equal(t, uint(416), metadata.NodeCount)
}
assert.Equal(t, recordSize, metadata.RecordSize)
}
func checkIpv4(t *testing.T, reader *Reader) {
for i := uint(0); i < 6; i++ {
address := fmt.Sprintf("1.1.1.%d", uint(1)<<i)
ip := netip.MustParseAddr(address)
var result map[string]string
err := reader.Lookup(ip).Decode(&result)
require.NoError(t, err, "unexpected error while doing lookup: %v", err)
assert.Equal(t, map[string]string{"ip": address}, result)
}
pairs := map[string]string{
"1.1.1.3": "1.1.1.2",
"1.1.1.5": "1.1.1.4",
"1.1.1.7": "1.1.1.4",
"1.1.1.9": "1.1.1.8",
"1.1.1.15": "1.1.1.8",
"1.1.1.17": "1.1.1.16",
"1.1.1.31": "1.1.1.16",
}
for keyAddress, valueAddress := range pairs {
data := map[string]string{"ip": valueAddress}
ip := netip.MustParseAddr(keyAddress)
var result map[string]string
err := reader.Lookup(ip).Decode(&result)
require.NoError(t, err, "unexpected error while doing lookup: %v", err)
assert.Equal(t, data, result)
}
for _, address := range []string{"1.1.1.33", "255.254.253.123"} {
ip := netip.MustParseAddr(address)
var result map[string]string
err := reader.Lookup(ip).Decode(&result)
require.NoError(t, err, "unexpected error while doing lookup: %v", err)
assert.Nil(t, result)
}
}
func checkIpv6(t *testing.T, reader *Reader) {
subnets := []string{
"::1:ffff:ffff", "::2:0:0",
"::2:0:40", "::2:0:50", "::2:0:58",
}
for _, address := range subnets {
var result map[string]string
err := reader.Lookup(netip.MustParseAddr(address)).Decode(&result)
require.NoError(t, err, "unexpected error while doing lookup: %v", err)
assert.Equal(t, map[string]string{"ip": address}, result)
}
pairs := map[string]string{
"::2:0:1": "::2:0:0",
"::2:0:33": "::2:0:0",
"::2:0:39": "::2:0:0",
"::2:0:41": "::2:0:40",
"::2:0:49": "::2:0:40",
"::2:0:52": "::2:0:50",
"::2:0:57": "::2:0:50",
"::2:0:59": "::2:0:58",
}
for keyAddress, valueAddress := range pairs {
data := map[string]string{"ip": valueAddress}
var result map[string]string
err := reader.Lookup(netip.MustParseAddr(keyAddress)).Decode(&result)
require.NoError(t, err, "unexpected error while doing lookup: %v", err)
assert.Equal(t, data, result)
}
for _, address := range []string{"1.1.1.33", "255.254.253.123", "89fa::"} {
var result map[string]string
err := reader.Lookup(netip.MustParseAddr(address)).Decode(&result)
require.NoError(t, err, "unexpected error while doing lookup: %v", err)
assert.Nil(t, result)
}
}
func BenchmarkOpen(b *testing.B) {
var db *Reader
var err error
for i := 0; i < b.N; i++ {
db, err = Open("GeoLite2-City.mmdb")
if err != nil {
b.Error(err)
}
}
assert.NotNil(b, db)
require.NoError(b, db.Close(), "error on close")
}
func BenchmarkInterfaceLookup(b *testing.B) {
db, err := Open("GeoLite2-City.mmdb")
require.NoError(b, err)
//nolint:gosec // this is a test
r := rand.New(rand.NewSource(time.Now().UnixNano()))
var result any
s := make(net.IP, 4)
for i := 0; i < b.N; i++ {
ip := randomIPv4Address(r, s)
err = db.Lookup(ip).Decode(&result)
if err != nil {
b.Error(err)
}
}
require.NoError(b, db.Close(), "error on close")
}
func BenchmarkLookupNetwork(b *testing.B) {
db, err := Open("GeoLite2-City.mmdb")
require.NoError(b, err)
//nolint:gosec // this is a test
r := rand.New(rand.NewSource(time.Now().UnixNano()))
s := make(net.IP, 4)
for i := 0; i < b.N; i++ {
ip := randomIPv4Address(r, s)
res := db.Lookup(ip)
if err := res.Err(); err != nil {
b.Error(err)
}
if !res.Prefix().IsValid() {
b.Fatalf("invalid network for %s", ip)
}
}
require.NoError(b, db.Close(), "error on close")
}
type fullCity struct {
City struct {
GeoNameID uint `maxminddb:"geoname_id"`
Names map[string]string `maxminddb:"names"`
} `maxminddb:"city"`
Continent struct {
Code string `maxminddb:"code"`
GeoNameID uint `maxminddb:"geoname_id"`
Names map[string]string `maxminddb:"names"`
} `maxminddb:"continent"`
Country struct {
GeoNameID uint `maxminddb:"geoname_id"`
IsInEuropeanUnion bool `maxminddb:"is_in_european_union"`
IsoCode string `maxminddb:"iso_code"`
Names map[string]string `maxminddb:"names"`
} `maxminddb:"country"`
Location struct {
AccuracyRadius uint16 `maxminddb:"accuracy_radius"`
Latitude float64 `maxminddb:"latitude"`
Longitude float64 `maxminddb:"longitude"`
MetroCode uint `maxminddb:"metro_code"`
TimeZone string `maxminddb:"time_zone"`
} `maxminddb:"location"`
Postal struct {
Code string `maxminddb:"code"`
} `maxminddb:"postal"`
RegisteredCountry struct {
GeoNameID uint `maxminddb:"geoname_id"`
IsInEuropeanUnion bool `maxminddb:"is_in_european_union"`
IsoCode string `maxminddb:"iso_code"`
Names map[string]string `maxminddb:"names"`
} `maxminddb:"registered_country"`
RepresentedCountry struct {
GeoNameID uint `maxminddb:"geoname_id"`
IsInEuropeanUnion bool `maxminddb:"is_in_european_union"`
IsoCode string `maxminddb:"iso_code"`
Names map[string]string `maxminddb:"names"`
Type string `maxminddb:"type"`
} `maxminddb:"represented_country"`
Subdivisions []struct {
GeoNameID uint `maxminddb:"geoname_id"`
IsoCode string `maxminddb:"iso_code"`
Names map[string]string `maxminddb:"names"`
} `maxminddb:"subdivisions"`
Traits struct {
IsAnonymousProxy bool `maxminddb:"is_anonymous_proxy"`
IsSatelliteProvider bool `maxminddb:"is_satellite_provider"`
} `maxminddb:"traits"`
}
func BenchmarkCityLookup(b *testing.B) {
db, err := Open("GeoLite2-City.mmdb")
require.NoError(b, err)
//nolint:gosec // this is a test
r := rand.New(rand.NewSource(time.Now().UnixNano()))
var result fullCity
s := make(net.IP, 4)
for i := 0; i < b.N; i++ {
ip := randomIPv4Address(r, s)
err = db.Lookup(ip).Decode(&result)
if err != nil {
b.Error(err)
}
}
require.NoError(b, db.Close(), "error on close")
}
func BenchmarkCityLookupOnly(b *testing.B) {
db, err := Open("GeoLite2-City.mmdb")
require.NoError(b, err)
//nolint:gosec // this is a test
r := rand.New(rand.NewSource(time.Now().UnixNano()))
s := make(net.IP, 4)
for i := 0; i < b.N; i++ {
ip := randomIPv4Address(r, s)
result := db.Lookup(ip)
if err := result.Err(); err != nil {
b.Error(err)
}
}
require.NoError(b, db.Close(), "error on close")
}
func BenchmarkDecodeCountryCodeWithStruct(b *testing.B) {
db, err := Open("GeoLite2-City.mmdb")
require.NoError(b, err)
type MinCountry struct {
Country struct {
IsoCode string `maxminddb:"iso_code"`
} `maxminddb:"country"`
}
//nolint:gosec // this is a test
r := rand.New(rand.NewSource(0))
var result MinCountry
s := make(net.IP, 4)
for i := 0; i < b.N; i++ {
ip := randomIPv4Address(r, s)
err = db.Lookup(ip).Decode(&result)
if err != nil {
b.Error(err)
}
}
require.NoError(b, db.Close(), "error on close")
}
func BenchmarkDecodePathCountryCode(b *testing.B) {
db, err := Open("GeoLite2-City.mmdb")
require.NoError(b, err)
path := []any{"country", "iso_code"}
//nolint:gosec // this is a test
r := rand.New(rand.NewSource(0))
var result string
s := make(net.IP, 4)
for i := 0; i < b.N; i++ {
ip := randomIPv4Address(r, s)
err = db.Lookup(ip).DecodePath(&result, path...)
if err != nil {
b.Error(err)