-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path04-00_arithmetic_bounds_test.go
75 lines (67 loc) · 1.83 KB
/
04-00_arithmetic_bounds_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
package hd_test
import (
"testing"
hd "github.com/nikolaydubina/go-hackers-delight"
)
func FuzzIsInRangeNormal(f *testing.F) {
for _, x := range fuzzInt32 {
for _, a := range fuzzInt32 {
for _, b := range fuzzInt32 {
f.Add(x, a, b)
}
}
}
f.Fuzz(func(t *testing.T, x, a, b int32) {
if a >= b {
t.Skip()
}
vs := []struct {
exp bool
got bool
}{
{exp: a <= x && x <= b, got: hd.IsInRange(x, a, b)},
{exp: a <= x && x < b, got: hd.IsInRangeClosedOpen(x, a, b)},
{exp: a < x && x <= b, got: hd.IsInRangeOpenClosed(x, a, b)},
{exp: a < x && x < b, got: hd.IsInRangeOpen(x, a, b)},
{exp: a < x && x < b, got: hd.IsInRangeOpen2(x, a, b)},
}
for _, v := range vs {
if v.exp != v.got {
t.Errorf("x=%d, a=%d, b=%d: expected %v, got %v", x, a, b, v.exp, v.got)
}
}
})
}
func FuzzIsInRangePowerTwo(f *testing.F) {
for _, x := range fuzzUint32 {
for _, a := range fuzzUint32 {
for ip := range hd.PowerOfTwo[:31] {
f.Add(x, a, uint8(ip))
}
}
}
f.Fuzz(func(t *testing.T, x, a uint32, ip uint8) {
if int(ip) >= 31 {
t.Skip()
}
p := hd.PowerOfTwo[ip]
t.Run("IsInRangePowerTwo", func(t *testing.T) {
exp := x <= uint32(p-1)
got := hd.IsInRangePowerTwo(x, int(ip))
if exp != got {
t.Errorf("IsInRangePowerTwo: %v %v %v %0X %0X %v %v", x, a, ip, x-a, uint(x-a)>>ip, got, exp)
}
})
t.Run("IsInRangePowerTwoOffset", func(t *testing.T) {
if hd.IsMostSignificantSet(hd.IsSubOverflowUnsigned(x, a)) {
t.Skip("offset formula is not resistant to overflows")
}
// naive approach to rely on uint64 space to protect from overflow
exp := uint64(a) <= uint64(x) && uint64(x) <= uint64(a)+uint64(p-1)
got := hd.IsInRangePowerTwoOffset(x, a, int(ip))
if exp != got {
t.Errorf("%v %v %v %0X %0X %v %v", x, a, ip, x-a, uint(x-a)>>ip, got, exp)
}
})
})
}