Files
go-easy-utils/strx/to_uint_x_test.go
2025-07-08 15:26:54 +08:00

107 lines
1.9 KiB
Go

package strx
import (
"github.com/stretchr/testify/assert"
"testing"
)
func TestToUint(t *testing.T) {
testCases := []struct {
name string
input string
expected uint
}{
{"正数", "123", 123},
{"零", "0", 0},
{"负数", "-1", 0},
}
for _, tc := range testCases {
t.Run(tc.name, func(t *testing.T) {
res := ToUint(tc.input)
assert.Equal(t, tc.expected, res)
})
}
}
func TestToUint8(t *testing.T) {
testCases := []struct {
name string
input string
expected uint8
}{
{"正常值", "123", 123},
{"零", "0", 0},
{"负值", "-1", 0},
{"超出范围", "256", 0},
}
for _, tc := range testCases {
t.Run(tc.name, func(t *testing.T) {
res := ToUint8(tc.input)
assert.Equal(t, tc.expected, res)
})
}
}
func TestToUint16(t *testing.T) {
testCases := []struct {
name string
input string
expected uint16
}{
{"正常值", "12345", 12345},
{"零", "0", 0},
{"负值", "-1", 0},
{"超出范围", "65536", 0},
}
for _, tc := range testCases {
t.Run(tc.name, func(t *testing.T) {
res := ToUint16(tc.input)
assert.Equal(t, tc.expected, res)
})
}
}
func TestToUint32(t *testing.T) {
testCases := []struct {
name string
input string
expected uint32
}{
{"正常值", "1234567", 1234567},
{"零", "0", 0},
{"负值", "-1", 0},
{"超出范围", "4294967296", 0},
}
for _, tc := range testCases {
t.Run(tc.name, func(t *testing.T) {
res := ToUint32(tc.input)
assert.Equal(t, tc.expected, res)
})
}
}
func TestToUint64(t *testing.T) {
testCases := []struct {
name string
input string
expectedOutput uint64
}{
{"正常值", "12345", 12345},
{"零", "0", 0},
{"最大值", "18446744073709551615", 18446744073709551615},
{"负值", "-1", 0},
{"非数字", "not a number", 0},
}
for _, tc := range testCases {
t.Run(tc.name, func(t *testing.T) {
res := ToUint64(tc.input)
assert.Equal(t, tc.expectedOutput, res)
})
}
}