1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-03 10:15:20 -04:00
v2fly/common/io/buffered_writer_test.go

30 lines
551 B
Go
Raw Normal View History

2016-02-26 17:45:33 -05:00
package io_test
import (
"testing"
2016-08-20 14:55:45 -04:00
"v2ray.com/core/common/alloc"
. "v2ray.com/core/common/io"
"v2ray.com/core/testing/assert"
2016-02-26 17:45:33 -05:00
)
func TestBufferedWriter(t *testing.T) {
2016-05-24 15:55:46 -04:00
assert := assert.On(t)
2016-02-26 17:45:33 -05:00
2016-11-18 19:50:09 -05:00
content := alloc.NewBuffer().Clear()
2016-02-26 17:45:33 -05:00
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)
}