1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-30 07:46:41 -04:00
v2fly/common/buf/buffer_test.go

99 lines
1.8 KiB
Go
Raw Normal View History

2016-12-09 05:35:27 -05:00
package buf_test
2015-10-10 16:15:10 -04:00
import (
2018-11-02 10:01:33 -04:00
"bytes"
"crypto/rand"
2015-10-10 16:15:10 -04:00
"testing"
2018-10-24 07:16:08 -04:00
"v2ray.com/core/common"
2016-12-09 05:35:27 -05:00
. "v2ray.com/core/common/buf"
2018-11-02 10:01:33 -04:00
"v2ray.com/core/common/compare"
2017-10-24 10:15:35 -04:00
. "v2ray.com/ext/assert"
2015-10-10 16:15:10 -04:00
)
func TestBufferClear(t *testing.T) {
2017-10-24 10:15:35 -04:00
assert := With(t)
2015-10-10 16:15:10 -04:00
2016-12-09 06:08:25 -05:00
buffer := New()
2015-10-10 16:15:10 -04:00
defer buffer.Release()
payload := "Bytes"
2018-04-19 16:56:55 -04:00
buffer.Write([]byte(payload))
2018-04-02 14:00:50 -04:00
assert(buffer.Len(), Equals, int32(len(payload)))
2015-10-10 16:15:10 -04:00
buffer.Clear()
2018-04-02 14:00:50 -04:00
assert(buffer.Len(), Equals, int32(0))
2015-10-10 16:15:10 -04:00
}
2016-12-06 05:03:42 -05:00
func TestBufferIsEmpty(t *testing.T) {
2017-10-24 10:15:35 -04:00
assert := With(t)
2015-10-10 16:15:10 -04:00
2016-12-09 06:08:25 -05:00
buffer := New()
2015-10-10 16:15:10 -04:00
defer buffer.Release()
2017-10-24 10:15:35 -04:00
assert(buffer.IsEmpty(), IsTrue)
2015-10-10 16:15:10 -04:00
}
2016-01-31 15:24:40 -05:00
2016-04-29 17:47:42 -04:00
func TestBufferString(t *testing.T) {
2017-10-24 10:15:35 -04:00
assert := With(t)
2016-04-29 17:47:42 -04:00
2016-12-09 06:08:25 -05:00
buffer := New()
2016-04-29 17:47:42 -04:00
defer buffer.Release()
2018-11-02 16:34:04 -04:00
common.Must2(buffer.WriteString("Test String"))
2017-10-24 10:15:35 -04:00
assert(buffer.String(), Equals, "Test String")
2016-04-29 17:47:42 -04:00
}
2016-11-21 16:08:34 -05:00
2018-10-24 07:16:08 -04:00
func TestBufferSlice(t *testing.T) {
{
b := New()
common.Must2(b.Write([]byte("abcd")))
bytes := b.BytesFrom(-2)
if err := compare.BytesEqualWithDetail(bytes, []byte{'c', 'd'}); err != nil {
t.Error(err)
}
}
{
b := New()
common.Must2(b.Write([]byte("abcd")))
bytes := b.BytesTo(-2)
if err := compare.BytesEqualWithDetail(bytes, []byte{'a', 'b'}); err != nil {
t.Error(err)
}
}
{
b := New()
common.Must2(b.Write([]byte("abcd")))
bytes := b.BytesRange(-3, -1)
if err := compare.BytesEqualWithDetail(bytes, []byte{'b', 'c'}); err != nil {
t.Error(err)
}
}
}
2018-11-02 10:01:33 -04:00
func TestBufferReadFullFrom(t *testing.T) {
payload := make([]byte, 1024)
common.Must2(rand.Read(payload))
reader := bytes.NewReader(payload)
b := New()
n, err := b.ReadFullFrom(reader, 1024)
common.Must(err)
if n != 1024 {
t.Error("expect reading 1024 bytes, but actually ", n)
}
if err := compare.BytesEqualWithDetail(payload, b.Bytes()); err != nil {
t.Error(err)
}
}
2017-04-21 08:32:29 -04:00
func BenchmarkNewBuffer(b *testing.B) {
2016-11-21 16:08:34 -05:00
for i := 0; i < b.N; i++ {
2016-12-09 06:08:25 -05:00
buffer := New()
2016-11-21 16:08:34 -05:00
buffer.Release()
}
}