1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-02-20 15:37:33 -05:00
v2fly/common/bufio/reader_test.go

38 lines
739 B
Go
Raw Normal View History

2016-12-09 13:17:34 +01:00
package bufio_test
2016-02-26 23:45:33 +01:00
import (
2016-12-09 12:08:25 +01:00
"crypto/rand"
2016-02-26 23:45:33 +01:00
"testing"
2016-12-09 11:35:27 +01:00
"v2ray.com/core/common/buf"
2016-12-09 13:17:34 +01:00
. "v2ray.com/core/common/bufio"
2016-08-20 20:55:45 +02:00
"v2ray.com/core/testing/assert"
2016-02-26 23:45:33 +01:00
)
func TestBufferedReader(t *testing.T) {
2016-05-24 21:55:46 +02:00
assert := assert.On(t)
2016-02-26 23:45:33 +01:00
2016-12-09 12:08:25 +01:00
content := buf.New()
2016-12-21 15:37:16 +01:00
assert.Error(content.AppendSupplier(buf.ReadFrom(rand.Reader))).IsNil()
2016-12-06 11:03:42 +01:00
2016-02-26 23:45:33 +01:00
len := content.Len()
2016-12-09 13:17:34 +01:00
reader := NewReader(content)
2016-12-27 21:41:44 +01:00
assert.Bool(reader.IsBuffered()).IsTrue()
2016-02-26 23:45:33 +01: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)
}