1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-08-31 00:34:14 -04:00
v2fly/transport/internet/headers/srtp/srtp_test.go
2018-03-11 23:45:24 +01:00

27 lines
514 B
Go

package srtp_test
import (
"context"
"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'}
srtpRaw, err := New(context.Background(), &Config{})
assert(err, IsNil)
srtp := srtpRaw.(*SRTP)
payload := buf.New()
payload.AppendSupplier(srtp.Write)
payload.Append(content)
assert(payload.Len(), Equals, len(content)+srtp.Size())
}