mirror of
https://github.com/jwetzell/artnet-go.git
synced 2026-08-11 02:03:37 +00:00
79 lines
2.0 KiB
Go
79 lines
2.0 KiB
Go
package artnet_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/google/go-cmp/cmp"
|
|
"github.com/google/go-cmp/cmp/cmpopts"
|
|
"github.com/jwetzell/artnet-go"
|
|
)
|
|
|
|
func TestGoodArtTodControlUnmarshal(t *testing.T) {
|
|
tests := []struct {
|
|
Name string
|
|
Data []byte
|
|
Expected *artnet.ArtTodControl
|
|
}{
|
|
{
|
|
Name: "ACT Packet 1",
|
|
Data: []byte{0x41, 0x72, 0x74, 0x2d, 0x4e, 0x65, 0x74, 0x00, 0x00, 0x82, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00},
|
|
Expected: &artnet.ArtTodControl{
|
|
Net: 0x00,
|
|
Command: artnet.AtcFlush,
|
|
Address: 0x00,
|
|
},
|
|
},
|
|
}
|
|
|
|
for _, test := range tests {
|
|
t.Run(test.Name, func(t *testing.T) {
|
|
got := &artnet.ArtTodControl{}
|
|
|
|
err := got.UnmarshalBinary(test.Data)
|
|
if err != nil {
|
|
t.Fatalf("failed to Unmarshal ArtTodControl: %s", err)
|
|
}
|
|
diff := cmp.Diff(test.Expected, got, cmpopts.IgnoreUnexported(artnet.ArtTodControl{}))
|
|
if diff != "" {
|
|
t.Fatalf("ArtTodControl does not match\n%s", diff)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func BenchmarkArtTodControlUnmarshalBinary(b *testing.B) {
|
|
data := []byte{0x41, 0x72, 0x74, 0x2d, 0x4e, 0x65, 0x74, 0x00, 0x00, 0x82, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00}
|
|
|
|
for b.Loop() {
|
|
got := artnet.ArtTodControl{}
|
|
|
|
err := got.UnmarshalBinary(data)
|
|
if err != nil {
|
|
b.Fatalf("failed to decode ArtTodControl: %s", err)
|
|
}
|
|
}
|
|
}
|
|
|
|
func BenchmarkArtTodControlMarshalBinary(b *testing.B) {
|
|
data := artnet.ArtTodControl{
|
|
Net: 0x00,
|
|
Command: artnet.AtcFlush,
|
|
Address: 0x00,
|
|
}
|
|
|
|
for b.Loop() {
|
|
_, err := data.MarshalBinary()
|
|
if err != nil {
|
|
b.Fatalf("failed to encode ArtTodControl: %s", err)
|
|
}
|
|
}
|
|
}
|
|
|
|
func FuzzArtTodControlUnmarshalBinary(f *testing.F) {
|
|
f.Add([]byte{0x41, 0x72, 0x74, 0x2d, 0x4e, 0x65, 0x74, 0x00, 0x00, 0x82, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00})
|
|
f.Fuzz(func(t *testing.T, data []byte) {
|
|
artTodControl := artnet.ArtTodControl{}
|
|
artTodControl.UnmarshalBinary(data)
|
|
})
|
|
}
|