package processor_test import ( "testing" "github.com/jwetzell/showbridge-go/internal/config" "github.com/jwetzell/showbridge-go/internal/processor" ) func TestFloatParseFromRegistry(t *testing.T) { registration, ok := processor.ProcessorRegistry["float.parse"] if !ok { t.Fatalf("float.parse processor not registered") } processorInstance, err := registration.New(config.ProcessorConfig{ Type: "float.parse", }) if err != nil { t.Fatalf("failed to create float.parse processor: %s", err) } if processorInstance.Type() != "float.parse" { t.Fatalf("float.parse processor has wrong type: %s", processorInstance.Type()) } } func TestGoodFloatParse(t *testing.T) { tests := []struct { name string params map[string]any payload any expected float64 }{ { name: "positive number", params: map[string]any{ "bitSize": 64, }, payload: "12345.67", expected: 12345.67, }, { name: "negative number", params: map[string]any{ "bitSize": 64, }, payload: "-12345.67", expected: -12345.67, }, { name: "zero", params: map[string]any{ "bitSize": 64, }, payload: "0", expected: 0, }, } for _, test := range tests { t.Run(test.name, func(t *testing.T) { registration, ok := processor.ProcessorRegistry["float.parse"] if !ok { t.Fatalf("float.parse processor not registered") } processorInstance, err := registration.New(config.ProcessorConfig{ Type: "float.parse", Params: test.params, }) if err != nil { t.Fatalf("float.parse failed to create processor: %s", err) } got, err := processorInstance.Process(t.Context(), test.payload) gotFloat, ok := got.(float64) if !ok { t.Fatalf("float.parse returned a %T payload: %s", got, got) } if err != nil { t.Fatalf("float.parse failed: %s", err) } if gotFloat != test.expected { t.Fatalf("float.parse got %f, expected %f", gotFloat, test.expected) } }) } } func TestBadFloatParse(t *testing.T) { tests := []struct { name string params map[string]any payload any errorString string }{ { name: "non-string bitSize", params: map[string]any{ "bitSize": "32", }, payload: "1.23", errorString: "float.parse bitSize error: not a number", }, { name: "non-string input", params: map[string]any{ "bitSize": 64, }, payload: []byte{0x01}, errorString: "float.parse processor only accepts a string", }, { name: "not float string", params: map[string]any{ "bitSize": 64, }, payload: "abcd", errorString: "strconv.ParseFloat: parsing \"abcd\": invalid syntax", }, { name: "bit size overflow", params: map[string]any{ "bitSize": 32, }, payload: "1.79e+64", errorString: "strconv.ParseFloat: parsing \"1.79e+64\": value out of range", }, } for _, test := range tests { t.Run(test.name, func(t *testing.T) { registration, ok := processor.ProcessorRegistry["float.parse"] if !ok { t.Fatalf("float.parse processor not registered") } processorInstance, err := registration.New(config.ProcessorConfig{ Type: "float.parse", Params: test.params, }) if err != nil { if err.Error() != test.errorString { t.Fatalf("float.parse got error '%s', expected '%s'", err.Error(), test.errorString) } return } got, err := processorInstance.Process(t.Context(), test.payload) if err == nil { t.Fatalf("float.parse expected to fail but succeeded, got: %v", got) } if err.Error() != test.errorString { t.Fatalf("float.parse got error '%s', expected '%s'", err.Error(), test.errorString) } }) } }