mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-12-23 02:26:49 -05:00
23 lines
445 B
Go
23 lines
445 B
Go
package srtp_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"v2ray.com/core/common/buf"
|
|
"v2ray.com/core/testing/assert"
|
|
. "v2ray.com/core/transport/internet/headers/srtp"
|
|
)
|
|
|
|
func TestSRTPWrite(t *testing.T) {
|
|
assert := assert.On(t)
|
|
|
|
content := []byte{'a', 'b', 'c', 'd', 'e', 'f', 'g'}
|
|
srtp := SRTP{}
|
|
|
|
payload := buf.NewLocal(2048)
|
|
payload.AppendSupplier(srtp.Write)
|
|
payload.Append(content)
|
|
|
|
assert.Int(payload.Len()).Equals(len(content) + srtp.Size())
|
|
}
|