1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-29 23:36:25 -04:00
v2fly/common/buf/reader_test.go

29 lines
601 B
Go
Raw Normal View History

2016-12-09 07:17:34 -05:00
package buf_test
2016-05-11 13:54:20 -04:00
import (
"bytes"
"testing"
2016-12-09 07:17:34 -05:00
. "v2ray.com/core/common/buf"
2016-08-20 14:55:45 -04:00
"v2ray.com/core/testing/assert"
2016-05-11 13:54:20 -04:00
)
func TestAdaptiveReader(t *testing.T) {
2016-05-24 15:55:46 -04:00
assert := assert.On(t)
2016-05-11 13:54:20 -04:00
rawContent := make([]byte, 1024*1024)
buffer := bytes.NewBuffer(rawContent)
2016-05-11 13:54:20 -04:00
2016-12-09 07:17:34 -05:00
reader := NewReader(buffer)
2016-05-11 13:54:20 -04:00
b1, err := reader.Read()
assert.Error(err).IsNil()
assert.Bool(b1.IsFull()).IsTrue()
2016-12-09 07:17:34 -05:00
assert.Int(b1.Len()).Equals(Size)
assert.Int(buffer.Len()).Equals(cap(rawContent) - Size)
b2, err := reader.Read()
assert.Error(err).IsNil()
assert.Bool(b2.IsFull()).IsTrue()
2016-12-08 10:52:18 -05:00
assert.Int(buffer.Len()).Equals(1007616)
2016-05-11 13:54:20 -04:00
}