diff options
Diffstat (limited to 'internal/pipewire/core_test.go')
| -rw-r--r-- | internal/pipewire/core_test.go | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/internal/pipewire/core_test.go b/internal/pipewire/core_test.go index a6b6729a..42b18b98 100644 --- a/internal/pipewire/core_test.go +++ b/internal/pipewire/core_test.go @@ -745,6 +745,23 @@ func TestRegistryGlobal(t *testing.T) { }.run(t) } +func TestRegistryGlobalRemove(t *testing.T) { + t.Parallel() + + encodingTestCases[pipewire.RegistryGlobalRemove, *pipewire.RegistryGlobalRemove]{ + {"sample", []byte{ + /* size: rest of data*/ 0x10, 0, 0, 0, + /* type: Struct */ 0xe, 0, 0, 0, + /* size: 4 bytes */ 4, 0, 0, 0, + /* type: Int */ 4, 0, 0, 0, + /* value: 0xbad */ 0xad, 0xb, 0, 0, + /* padding */ 0, 0, 0, 0, + }, pipewire.RegistryGlobalRemove{ + ID: 0xbad, + }, nil}, + }.run(t) +} + func TestRegistryBind(t *testing.T) { t.Parallel() |
