v2ray-core/common/bufio/writer_test.go

54 lines
1.1 KiB
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-04 21:34:22 +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 TestBufferedWriter(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-02-26 23:45:33 +01:00
2016-12-09 13:17:34 +01:00
writer := NewWriter(content)
2016-12-27 21:41:44 +01:00
assert.Bool(writer.Buffered()).IsTrue()
2016-02-26 23:45:33 +01: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 21:41:44 +01:00
writer.SetBuffered(false)
2016-02-26 23:45:33 +01:00
assert.Int(content.Len()).Equals(16)
}
2016-12-04 21:34:22 +01:00
func TestBufferedWriterLargePayload(t *testing.T) {
assert := assert.On(t)
2016-12-09 12:08:25 +01:00
content := buf.NewLocal(128 * 1024)
2016-12-04 21:34:22 +01:00
2016-12-09 13:17:34 +01:00
writer := NewWriter(content)
2016-12-27 21:41:44 +01:00
assert.Bool(writer.Buffered()).IsTrue()
2016-12-04 21:34:22 +01: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 15:19:14 +01:00
assert.Bytes(content.Bytes()).Equals(payload)
2016-12-04 21:34:22 +01:00
}