| 1234567891011121314151617181920212223242526 |
- 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.Append(content)
- assert(payload.Len(), Equals, int32(len(content))+utp.Size())
- }
|