mirror of https://github.com/v2ray/v2ray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
448 B
26 lines
448 B
package buf_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
. "v2ray.com/core/common/buf"
|
|
"v2ray.com/core/testing/assert"
|
|
)
|
|
|
|
func TestMultiBufferRead(t *testing.T) {
|
|
assert := assert.On(t)
|
|
|
|
b1 := New()
|
|
b1.AppendBytes('a', 'b')
|
|
|
|
b2 := New()
|
|
b2.AppendBytes('c', 'd')
|
|
mb := NewMultiBufferValue(b1, b2)
|
|
|
|
bs := make([]byte, 32)
|
|
nBytes, err := mb.Read(bs)
|
|
assert.Error(err).IsNil()
|
|
assert.Int(nBytes).Equals(4)
|
|
assert.Bytes(bs[:nBytes]).Equals([]byte("abcd"))
|
|
}
|