Skip to content

Commit 4f477b6

Browse files
jaswdrsean-
andauthored
fix intn panic (#163)
* faker: fix panic from int wraparound when Intn(math.MaxInt+1) * Refactoring code, renaming rndInt to value and removing unreachable code --------- Co-authored-by: Sean Chittenden <[email protected]>
1 parent 514850e commit 4f477b6

File tree

2 files changed

+13
-23
lines changed

2 files changed

+13
-23
lines changed

faker.go

+9-20
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,6 @@ import (
1010
"time"
1111
)
1212

13-
const (
14-
maxUint = ^uint(0)
15-
minUint = 0
16-
maxInt = int(maxUint >> 1)
17-
minInt = -maxInt - 1
18-
)
19-
2013
// Faker is the Generator struct for Faker
2114
type Faker struct {
2215
Generator GeneratorInterface
@@ -103,8 +96,8 @@ func (f Faker) Float64(maxDecimals, min, max int) float64 {
10396

10497
// Int returns a fake Int number for Faker
10598
func (f Faker) Int() int {
106-
max := int(^uint(0)>>1) - 1
107-
min := 0
99+
max := math.MaxInt
100+
min := math.MinInt
108101
return f.IntBetween(min, max)
109102
}
110103

@@ -130,8 +123,7 @@ func (f Faker) Int64() int64 {
130123

131124
// UInt returns a fake UInt number for Faker
132125
func (f Faker) UInt() uint {
133-
maxU := ^uint(0) >> 1
134-
max := int(maxU)
126+
max := math.MaxInt
135127
return uint(f.IntBetween(0, max))
136128
}
137129

@@ -159,19 +151,16 @@ func (f Faker) UInt64() uint64 {
159151
func (f Faker) IntBetween(min, max int) int {
160152
diff := max - min
161153

162-
if diff < 0 {
163-
diff = 0
164-
}
165-
154+
var value int
166155
if diff == 0 {
167156
return min
157+
} else if diff == math.MaxInt {
158+
value = f.Generator.Intn(diff)
159+
} else if diff > 0 {
160+
value = f.Generator.Intn(diff + 1)
168161
}
169162

170-
if diff == maxInt {
171-
return f.Generator.Intn(diff)
172-
}
173-
174-
return f.Generator.Intn(diff+1) + min
163+
return min + value
175164
}
176165

177166
// Int8Between returns a fake Int8 between a given minimum and maximum values for Faker

faker_test.go

+4-3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ package faker
22

33
import (
44
"fmt"
5+
"math"
56
"math/rand"
67
"reflect"
78
"strings"
@@ -160,10 +161,10 @@ func TestIntBetweenNegativeValues(t *testing.T) {
160161

161162
func TestIntBetweenWithMaxValues(t *testing.T) {
162163
f := New()
163-
value := f.IntBetween(minInt, maxInt)
164+
value := f.IntBetween(math.MinInt, math.MaxInt)
164165
Expect(t, fmt.Sprintf("%T", value), "int")
165-
Expect(t, true, value >= minInt)
166-
Expect(t, true, value <= maxInt)
166+
Expect(t, true, value >= math.MinInt)
167+
Expect(t, true, value <= math.MaxInt)
167168
}
168169

169170
func TestIntBetweenWithInvalidInterval(t *testing.T) {

0 commit comments

Comments
 (0)