mirror of
https://github.com/jwetzell/showbridge-go.git
synced 2026-04-26 21:05:30 +00:00
add tests for comman GetAnyAs functions
This commit is contained in:
216
internal/common/common_test.go
Normal file
216
internal/common/common_test.go
Normal file
@@ -0,0 +1,216 @@
|
||||
package common_test
|
||||
|
||||
import (
|
||||
"slices"
|
||||
"testing"
|
||||
|
||||
"github.com/jwetzell/showbridge-go/internal/common"
|
||||
)
|
||||
|
||||
func TestGoodGetAnyAsInt(t *testing.T) {
|
||||
testCases := []struct {
|
||||
name string
|
||||
value any
|
||||
typedValue int
|
||||
}{
|
||||
{
|
||||
name: "int",
|
||||
value: int(42),
|
||||
typedValue: 42,
|
||||
},
|
||||
{
|
||||
name: "uint",
|
||||
value: uint(42),
|
||||
typedValue: 42,
|
||||
},
|
||||
{
|
||||
name: "float32 without decimal",
|
||||
value: float32(42.0),
|
||||
typedValue: 42,
|
||||
},
|
||||
{
|
||||
name: "float64 without decimal",
|
||||
value: float64(42.0),
|
||||
typedValue: 42,
|
||||
},
|
||||
}
|
||||
|
||||
for _, testCase := range testCases {
|
||||
t.Run(testCase.name, func(t *testing.T) {
|
||||
value, ok := common.GetAnyAsInt(testCase.value)
|
||||
if !ok {
|
||||
t.Fatalf("GetAnyAsInt expected to succeed but failed")
|
||||
}
|
||||
if value != testCase.typedValue {
|
||||
t.Fatalf("GetAnyAsInt expected got %d, expected %d", value, testCase.typedValue)
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
func TestBadGetAnyAsInt(t *testing.T) {
|
||||
testCases := []struct {
|
||||
name string
|
||||
value any
|
||||
}{
|
||||
{
|
||||
name: "string",
|
||||
value: "value",
|
||||
},
|
||||
{
|
||||
name: "float with decimal",
|
||||
value: 1.5,
|
||||
},
|
||||
}
|
||||
|
||||
for _, testCase := range testCases {
|
||||
t.Run(testCase.name, func(t *testing.T) {
|
||||
value, ok := common.GetAnyAsInt(testCase.value)
|
||||
if ok {
|
||||
t.Fatalf("GetAnyAsInt expected to fail but succeeded, got: %v", value)
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
func TestGoodGetAnyAsByteSlice(t *testing.T) {
|
||||
testCases := []struct {
|
||||
name string
|
||||
value any
|
||||
typedValue []byte
|
||||
}{
|
||||
{
|
||||
name: "byte slice",
|
||||
value: []byte{1, 2, 3},
|
||||
typedValue: []byte{1, 2, 3},
|
||||
},
|
||||
{
|
||||
name: "int slice",
|
||||
value: []int{1, 2, 3},
|
||||
typedValue: []byte{1, 2, 3},
|
||||
},
|
||||
{
|
||||
name: "uint slice",
|
||||
value: []uint{1, 2, 3},
|
||||
typedValue: []byte{1, 2, 3},
|
||||
},
|
||||
{
|
||||
name: "float32 without decimal slice",
|
||||
value: []float32{1, 2, 3},
|
||||
typedValue: []byte{1, 2, 3},
|
||||
},
|
||||
{
|
||||
name: "float64 without decimal slice",
|
||||
value: []float64{1, 2, 3},
|
||||
typedValue: []byte{1, 2, 3},
|
||||
},
|
||||
}
|
||||
|
||||
for _, testCase := range testCases {
|
||||
t.Run(testCase.name, func(t *testing.T) {
|
||||
value, ok := common.GetAnyAsByteSlice(testCase.value)
|
||||
if !ok {
|
||||
t.Fatalf("GetAnyAsByteSlice expected to succeed but failed")
|
||||
}
|
||||
if !slices.Equal(value, testCase.typedValue) {
|
||||
t.Fatalf("GetAnyAsByteSlice expected got %d, expected %d", value, testCase.typedValue)
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
func TestBadGetAnyAsByteSlice(t *testing.T) {
|
||||
testCases := []struct {
|
||||
name string
|
||||
value any
|
||||
}{
|
||||
{
|
||||
name: "not a slice",
|
||||
value: "value",
|
||||
},
|
||||
{
|
||||
name: "not a int slice",
|
||||
value: []any{"value1", 2},
|
||||
},
|
||||
}
|
||||
|
||||
for _, testCase := range testCases {
|
||||
t.Run(testCase.name, func(t *testing.T) {
|
||||
value, ok := common.GetAnyAsByteSlice(testCase.value)
|
||||
if ok {
|
||||
t.Fatalf("GetAnyAsByteSlice expected to fail but succeeded, got: %v", value)
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
func TestGoodGetAnyAsIntSlice(t *testing.T) {
|
||||
testCases := []struct {
|
||||
name string
|
||||
value any
|
||||
typedValue []int
|
||||
}{
|
||||
{
|
||||
name: "int slice",
|
||||
value: []int{1, 2, 3},
|
||||
typedValue: []int{1, 2, 3},
|
||||
},
|
||||
{
|
||||
name: "byte slice",
|
||||
value: []byte{1, 2, 3},
|
||||
typedValue: []int{1, 2, 3},
|
||||
},
|
||||
{
|
||||
name: "uint slice",
|
||||
value: []uint{1, 2, 3},
|
||||
typedValue: []int{1, 2, 3},
|
||||
},
|
||||
{
|
||||
name: "float32 without decimal slice",
|
||||
value: []float32{1, 2, 3},
|
||||
typedValue: []int{1, 2, 3},
|
||||
},
|
||||
{
|
||||
name: "float64 without decimal slice",
|
||||
value: []float64{1, 2, 3},
|
||||
typedValue: []int{1, 2, 3},
|
||||
},
|
||||
}
|
||||
|
||||
for _, testCase := range testCases {
|
||||
t.Run(testCase.name, func(t *testing.T) {
|
||||
value, ok := common.GetAnyAsIntSlice(testCase.value)
|
||||
if !ok {
|
||||
t.Fatalf("GetAnyAsIntSlice expected to succeed but failed")
|
||||
}
|
||||
if !slices.Equal(value, testCase.typedValue) {
|
||||
t.Fatalf("GetAnyAsIntSlice expected got %d, expected %d", value, testCase.typedValue)
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
func TestBadGetAnyAsIntSlice(t *testing.T) {
|
||||
testCases := []struct {
|
||||
name string
|
||||
value any
|
||||
}{
|
||||
{
|
||||
name: "not a slice",
|
||||
value: "value",
|
||||
},
|
||||
{
|
||||
name: "not a int slice",
|
||||
value: []any{"value1", 2},
|
||||
},
|
||||
}
|
||||
|
||||
for _, testCase := range testCases {
|
||||
t.Run(testCase.name, func(t *testing.T) {
|
||||
value, ok := common.GetAnyAsIntSlice(testCase.value)
|
||||
if ok {
|
||||
t.Fatalf("GetAnyAsIntSlice expected to fail but succeeded, got: %v", value)
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user