v2ray-core/common/io/buffered_writer_test.go

30 lines
556 B
Go
Raw Normal View History

2016-02-26 23:45:33 +01:00
package io_test
import (
"testing"
2016-08-20 20:55:45 +02:00
"v2ray.com/core/common/alloc"
. "v2ray.com/core/common/io"
"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
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)
}