1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-12-23 02:26:49 -05:00
v2fly/common/io/buffered_reader_test.go

38 lines
705 B
Go
Raw Normal View History

2016-02-26 17:45:33 -05:00
package io_test
import (
"testing"
2016-12-06 05:03:42 -05:00
"crypto/rand"
2016-08-20 14:55:45 -04:00
"v2ray.com/core/common/alloc"
. "v2ray.com/core/common/io"
"v2ray.com/core/testing/assert"
2016-02-26 17:45:33 -05:00
)
func TestBufferedReader(t *testing.T) {
2016-05-24 15:55:46 -04:00
assert := assert.On(t)
2016-02-26 17:45:33 -05:00
2016-11-18 19:50:09 -05:00
content := alloc.NewBuffer()
2016-12-06 05:03:42 -05:00
content.FillFrom(rand.Reader)
2016-02-26 17:45:33 -05:00
len := content.Len()
reader := NewBufferedReader(content)
assert.Bool(reader.Cached()).IsTrue()
payload := make([]byte, 16)
nBytes, err := reader.Read(payload)
assert.Int(nBytes).Equals(16)
assert.Error(err).IsNil()
len2 := content.Len()
assert.Int(len - len2).GreaterThan(16)
nBytes, err = reader.Read(payload)
assert.Int(nBytes).Equals(16)
assert.Error(err).IsNil()
assert.Int(content.Len()).Equals(len2)
}