1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-20 14:35:23 +00:00
v2fly/common/io/buffered_writer_test.go

30 lines
556 B
Go
Raw Normal View History

2016-02-26 22:45:33 +00:00
package io_test
import (
"testing"
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 TestBufferedWriter(t *testing.T) {
2016-05-24 19:55:46 +00:00
assert := assert.On(t)
2016-02-26 22:45:33 +00:00
content := alloc.NewLargeBuffer().Clear()
writer := NewBufferedWriter(content)
assert.Bool(writer.Cached()).IsTrue()
payload := make([]byte, 16)
nBytes, err := writer.Write(payload)
assert.Int(nBytes).Equals(16)
assert.Error(err).IsNil()
assert.Bool(content.IsEmpty()).IsTrue()
writer.SetCached(false)
assert.Int(content.Len()).Equals(16)
}