mirror of
https://github.com/jwetzell/showbridge-go.git
synced 2026-04-26 21:05:30 +00:00
94 lines
1.9 KiB
Go
94 lines
1.9 KiB
Go
package processor_test
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/jwetzell/showbridge-go/internal/common"
|
|
"github.com/jwetzell/showbridge-go/internal/config"
|
|
"github.com/jwetzell/showbridge-go/internal/processor"
|
|
)
|
|
|
|
type TestStruct struct {
|
|
String string
|
|
Int int
|
|
Float float64
|
|
Bool bool
|
|
Data any
|
|
}
|
|
|
|
func (t TestStruct) GetString() string {
|
|
return t.String
|
|
}
|
|
|
|
func (t TestStruct) GetInt() int {
|
|
return t.Int
|
|
}
|
|
|
|
func (t TestStruct) GetFloat() float64 {
|
|
return t.Float
|
|
}
|
|
|
|
func (t TestStruct) GetBool() bool {
|
|
return t.Bool
|
|
}
|
|
|
|
func (t TestStruct) GetData() any {
|
|
return t.Data
|
|
}
|
|
|
|
func (t TestStruct) Void() {}
|
|
|
|
type TestProcessor struct {
|
|
}
|
|
|
|
func (p *TestProcessor) Type() string {
|
|
return "test"
|
|
}
|
|
func (p *TestProcessor) Process(ctx context.Context, wrappedPayload common.WrappedPayload) (common.WrappedPayload, error) {
|
|
return wrappedPayload, nil
|
|
}
|
|
|
|
func TestProcessorBadRegistrationNoType(t *testing.T) {
|
|
defer func() {
|
|
if r := recover(); r == nil {
|
|
t.Fatalf("processor registration should have panicked but did not")
|
|
}
|
|
}()
|
|
|
|
processor.RegisterProcessor(processor.ProcessorRegistration{
|
|
Type: "",
|
|
New: func(config config.ProcessorConfig) (processor.Processor, error) {
|
|
return &TestProcessor{}, nil
|
|
},
|
|
})
|
|
}
|
|
|
|
func TestProcessorBadRegistrationNoNew(t *testing.T) {
|
|
defer func() {
|
|
if r := recover(); r == nil {
|
|
t.Fatalf("processor registration should have panicked but did not")
|
|
}
|
|
}()
|
|
|
|
processor.RegisterProcessor(processor.ProcessorRegistration{
|
|
Type: "test",
|
|
New: nil,
|
|
})
|
|
}
|
|
|
|
func TestProcessorBadRegistrationExistingType(t *testing.T) {
|
|
defer func() {
|
|
if r := recover(); r == nil {
|
|
t.Fatalf("processor registration should have panicked but did not")
|
|
}
|
|
}()
|
|
|
|
processor.RegisterProcessor(processor.ProcessorRegistration{
|
|
Type: "string.create",
|
|
New: func(config config.ProcessorConfig) (processor.Processor, error) {
|
|
return &TestProcessor{}, nil
|
|
},
|
|
})
|
|
}
|