v2ray-core/common/io/buffered_reader_test.go

38 lines
705 B
Go
Raw Normal View History

2016-02-26 22:45:33 +00:00
package io_test
import (
"testing"
2016-12-06 10:03:42 +00:00
"crypto/rand"
2016-08-20 18:55:45 +00:00
"v2ray.com/core/common/alloc"
. "v2ray.com/core/common/io"
"v2ray.com/core/testing/assert"
2016-02-26 22:45:33 +00:00
)
func TestBufferedReader(t *testing.T) {
2016-05-24 19:55:46 +00:00
assert := assert.On(t)
2016-02-26 22:45:33 +00:00
2016-11-19 00:50:09 +00:00
content := alloc.NewBuffer()
2016-12-06 10:03:42 +00:00
content.FillFrom(rand.Reader)
2016-02-26 22:45:33 +00: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)
}