1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-16 00:48:14 -04:00
v2fly/common/buf/buffered_reader_test.go

37 lines
706 B
Go
Raw Normal View History

2017-02-15 16:51:01 -05:00
package buf_test
2016-02-26 17:45:33 -05:00
import (
2016-12-09 06:08:25 -05:00
"crypto/rand"
2016-02-26 17:45:33 -05:00
"testing"
2017-02-15 16:51:01 -05:00
. "v2ray.com/core/common/buf"
2016-08-20 14:55:45 -04:00
"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
2017-02-15 16:51:01 -05:00
content := New()
assert.Error(content.AppendSupplier(ReadFrom(rand.Reader))).IsNil()
2016-12-06 05:03:42 -05:00
2016-02-26 17:45:33 -05:00
len := content.Len()
2017-02-15 16:51:01 -05:00
reader := NewBufferedReader(content)
2016-12-27 15:41:44 -05:00
assert.Bool(reader.IsBuffered()).IsTrue()
2016-02-26 17:45:33 -05:00
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)
}