v2ray-core/common/io/reader_test.go

28 lines
585 B
Go
Raw Normal View History

2016-05-11 17:54:20 +00:00
package io_test
import (
"bytes"
"testing"
2016-08-20 18:55:45 +00:00
"v2ray.com/core/common/alloc"
. "v2ray.com/core/common/io"
"v2ray.com/core/testing/assert"
2016-05-11 17:54:20 +00:00
)
func TestAdaptiveReader(t *testing.T) {
2016-05-24 19:55:46 +00:00
assert := assert.On(t)
2016-05-11 17:54:20 +00:00
rawContent := make([]byte, 1024*1024)
reader := NewAdaptiveReader(bytes.NewBuffer(rawContent))
b1, err := reader.Read()
assert.Error(err).IsNil()
assert.Bool(b1.IsFull()).IsTrue()
assert.Int(b1.Len()).Equals(alloc.BufferSize)
b2, err := reader.Read()
assert.Error(err).IsNil()
assert.Bool(b2.IsFull()).IsTrue()
assert.Int(b2.Len()).Equals(alloc.LargeBufferSize)
}