hakurei/internal/pipewire/pipewire_test.go
Ophestra cfeb7818eb
All checks were successful
Test / Create distribution (push) Successful in 37s
Test / Sandbox (push) Successful in 2m19s
Test / Hakurei (push) Successful in 3m17s
Test / Hpkg (push) Successful in 4m15s
Test / Sandbox (race detector) (push) Successful in 4m20s
Test / Hakurei (race detector) (push) Successful in 5m7s
Test / Flake checks (push) Successful in 1m21s
internal/pipewire: implement Core::Info and generation footer
These are not directly related but are first encountered on the same message in the capture.

Signed-off-by: Ophestra <cat@gensokyo.uk>
2025-11-25 15:16:12 +09:00

35 lines
952 B
Go

package pipewire_test
import (
_ "embed"
)
var (
//go:embed testdata/00-sendmsg00-message00-header
sendmsg00Message00Header string
//go:embed testdata/01-sendmsg00-message00-POD
sendmsg00Message00POD string
//go:embed testdata/02-sendmsg00-message01-header
sendmsg00Message01Header string
//go:embed testdata/03-sendmsg00-message01-POD
sendmsg00Message01POD string
//go:embed testdata/04-sendmsg00-message02-header
sendmsg00Message02Header string
//go:embed testdata/05-sendmsg00-message02-POD
sendmsg00Message02POD string
//go:embed testdata/06-sendmsg00-message03-header
sendmsg00Message03Header string
//go:embed testdata/07-sendmsg00-message03-POD
sendmsg00Message03POD string
//go:embed testdata/08-recvmsg00-message00-header
recvmsg00Message00Header string
//go:embed testdata/09-recvmsg00-message00-POD
recvmsg00Message00POD string
//go:embed testdata/10-recvmsg00-message00-footer
recvmsg00Message00Footer string
)