v2ray-core/common/bufio/writer_test.go

54 lines
1.1 KiB
Go
Raw Normal View History

2016-12-09 12:17:34 +00:00
package bufio_test
2016-02-26 22:45:33 +00:00
import (
2016-12-04 20:34:22 +00:00
"crypto/rand"
2016-02-26 22:45:33 +00:00
"testing"
2016-12-09 10:35:27 +00:00
"v2ray.com/core/common/buf"
2016-12-09 12:17:34 +00:00
. "v2ray.com/core/common/bufio"
2016-08-20 18:55:45 +00:00
"v2ray.com/core/testing/assert"
2016-02-26 22:45:33 +00:00
)
func TestBufferedWriter(t *testing.T) {
2016-05-24 19:55:46 +00:00
assert := assert.On(t)
2016-02-26 22:45:33 +00:00
2016-12-09 11:08:25 +00:00
content := buf.New()
2016-02-26 22:45:33 +00:00
2016-12-09 12:17:34 +00:00
writer := NewWriter(content)
2016-12-27 22:09:08 +00:00
assert.Bool(writer.IsBuffered()).IsTrue()
2016-02-26 22:45:33 +00:00
payload := make([]byte, 16)
nBytes, err := writer.Write(payload)
assert.Int(nBytes).Equals(16)
assert.Error(err).IsNil()
assert.Bool(content.IsEmpty()).IsTrue()
2016-12-27 20:41:44 +00:00
writer.SetBuffered(false)
2016-02-26 22:45:33 +00:00
assert.Int(content.Len()).Equals(16)
}
2016-12-04 20:34:22 +00:00
func TestBufferedWriterLargePayload(t *testing.T) {
assert := assert.On(t)
2016-12-09 11:08:25 +00:00
content := buf.NewLocal(128 * 1024)
2016-12-04 20:34:22 +00:00
2016-12-09 12:17:34 +00:00
writer := NewWriter(content)
2016-12-27 22:09:08 +00:00
assert.Bool(writer.IsBuffered()).IsTrue()
2016-12-04 20:34:22 +00:00
payload := make([]byte, 64*1024)
rand.Read(payload)
nBytes, err := writer.Write(payload[:1024])
assert.Int(nBytes).Equals(1024)
assert.Error(err).IsNil()
assert.Bool(content.IsEmpty()).IsTrue()
nBytes, err = writer.Write(payload[1024:])
assert.Error(err).IsNil()
assert.Int(nBytes).Equals(63 * 1024)
2016-12-05 14:19:14 +00:00
assert.Bytes(content.Bytes()).Equals(payload)
2016-12-04 20:34:22 +00:00
}