1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-28 10:15:23 +00:00
v2fly/transport/internet/headers/utp/utp_test.go
2018-04-19 22:56:55 +02:00

27 lines
511 B
Go

package utp_test
import (
"context"
"testing"
"v2ray.com/core/common/buf"
. "v2ray.com/core/transport/internet/headers/utp"
. "v2ray.com/ext/assert"
)
func TestUTPWrite(t *testing.T) {
assert := With(t)
content := []byte{'a', 'b', 'c', 'd', 'e', 'f', 'g'}
utpRaw, err := New(context.Background(), &Config{})
assert(err, IsNil)
utp := utpRaw.(*UTP)
payload := buf.New()
payload.AppendSupplier(utp.Write)
payload.Write(content)
assert(payload.Len(), Equals, int32(len(content))+utp.Size())
}