| 12345678910111213141516171819202122 |
- package srtp_test
- import (
- "testing"
- "v2ray.com/core/common/buf"
- . "v2ray.com/core/transport/internet/headers/srtp"
- . "v2ray.com/ext/assert"
- )
- func TestSRTPWrite(t *testing.T) {
- assert := With(t)
- content := []byte{'a', 'b', 'c', 'd', 'e', 'f', 'g'}
- srtp := SRTP{}
- payload := buf.NewLocal(2048)
- payload.AppendSupplier(srtp.Write)
- payload.Append(content)
- assert(payload.Len(), Equals, len(content)+srtp.Size())
- }
|