Skip to content

Commit 7c63727

Browse files
committed
Add OutOfRangeError and handle it properly
1 parent f96e307 commit 7c63727

File tree

3 files changed

+31
-13
lines changed

3 files changed

+31
-13
lines changed

types/conversion.go

+4-5
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,14 @@
1414

1515
package types
1616

17-
import (
18-
"errors"
19-
)
20-
2117
// Uint64ToUint32 safely converts a uint64 into a uint32 without overflow
2218
func Uint64ToUint32(v uint64) (uint32, error) {
2319
// Check for overflow without casting
2420
if v > uint64(^uint32(0)) { // ^uint32(0) is the maximum uint32 value (4,294,967,295)
25-
return 0, errors.New("value exceeds uint32 range")
21+
return 0, &OutOfRangeError{
22+
Value: v,
23+
Type: "uint32",
24+
}
2625
}
2726

2827
return uint32(v), nil // #nosec G103: safe after bounds check

types/conversion_test.go

+15-7
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,13 @@ func TestUint64ToUint32(t *testing.T) {
2323
input uint64
2424
want uint32
2525
wantErr bool
26+
errType error
2627
}{
27-
{"Zero", 0, 0, false},
28-
{"Max uint32", 4294967295, 4294967295, false},
29-
{"Overflow", 4294967296, 0, true},
30-
{"Large overflow", 18446744073709551615, 0, true},
31-
{"Mid-range value", 2147483648, 2147483648, false},
28+
{"Zero", 0, 0, false, nil},
29+
{"Max uint32", 4294967295, 4294967295, false, nil},
30+
{"Overflow", 4294967296, 0, true, &OutOfRangeError{}},
31+
{"Large overflow", 18446744073709551615, 0, true, &OutOfRangeError{}},
32+
{"Mid-range value", 2147483648, 2147483648, false, nil},
3233
}
3334

3435
for _, tt := range tests {
@@ -38,8 +39,15 @@ func TestUint64ToUint32(t *testing.T) {
3839
t.Errorf("Uint64ToUint32() error = %v, wantErr %v", err, tt.wantErr)
3940
return
4041
}
41-
if got != tt.want {
42-
t.Errorf("Uint64ToUint32() = %v, want %v", got, tt.want)
42+
if tt.wantErr {
43+
// Check if the error is of type OutOfRangeError
44+
if _, ok := err.(*OutOfRangeError); !ok {
45+
t.Errorf("Expected error type *OutOfRangeError, got %T", err)
46+
}
47+
} else {
48+
if got != tt.want {
49+
t.Errorf("Uint64ToUint32() = %v, want %v", got, tt.want)
50+
}
4351
}
4452
})
4553
}

types/errors.go

+12-1
Original file line numberDiff line numberDiff line change
@@ -106,14 +106,25 @@ func (e *ValidationError) Error() string {
106106
)
107107
}
108108

109+
// OutOfRangeError indicates that a value is outside the expected range.
110+
type OutOfRangeError struct {
111+
Value uint64
112+
Type string
113+
}
114+
115+
// Error returns a formatted error string for the OutOfRangeError.
116+
func (e *OutOfRangeError) Error() string {
117+
return fmt.Sprintf("value %d out of range for %s", e.Value, e.Type)
118+
}
119+
109120
// HandleServerError handles separate server errors and sends appropriate responses
110121
func HandleServerError(writer http.ResponseWriter, err error) {
111122
var level = log.Warn() // set the default log level for most HTTP responses
112123

113124
var respErr error
114125

115126
switch err := err.(type) {
116-
case *RouterMissingParamError, *RouterParsingError, *json.SyntaxError, *NoBodyError, *ValidationError:
127+
case *RouterMissingParamError, *RouterParsingError, *json.SyntaxError, *NoBodyError, *ValidationError, *OutOfRangeError:
117128
respErr = responses.SendBadRequest(writer, err.Error())
118129
case *json.UnmarshalTypeError:
119130
respErr = responses.SendBadRequest(writer, "bad type in json data")

0 commit comments

Comments
 (0)