2016-08-07 03:08:30 -04:00
|
|
|
package srtp_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/v2ray/v2ray-core/common/alloc"
|
|
|
|
"github.com/v2ray/v2ray-core/testing/assert"
|
|
|
|
. "github.com/v2ray/v2ray-core/transport/internet/authenticators/srtp"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestSRTPOpenSeal(t *testing.T) {
|
|
|
|
assert := assert.On(t)
|
|
|
|
|
|
|
|
content := []byte{'a', 'b', 'c', 'd', 'e', 'f', 'g'}
|
|
|
|
payload := alloc.NewLocalBuffer(2048).Clear().Append(content)
|
2016-08-07 09:05:05 -04:00
|
|
|
srtp := SRTP{}
|
2016-08-07 03:08:30 -04:00
|
|
|
srtp.Seal(payload)
|
|
|
|
assert.Int(payload.Len()).GreaterThan(len(content))
|
|
|
|
assert.Bool(srtp.Open(payload)).IsTrue()
|
|
|
|
assert.Bytes(content).Equals(payload.Bytes())
|
|
|
|
}
|