1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-28 18:25:23 +00:00
v2fly/common/alloc/buffer_test.go
2015-10-10 22:15:10 +02:00

34 lines
569 B
Go

package alloc
import (
"testing"
"github.com/v2ray/v2ray-core/testing/unit"
)
func TestBufferClear(t *testing.T) {
assert := unit.Assert(t)
buffer := NewBuffer().Clear()
defer buffer.Release()
payload := "Bytes"
buffer.Append([]byte(payload))
assert.Int(buffer.Len()).Equals(len(payload))
buffer.Clear()
assert.Int(buffer.Len()).Equals(0)
}
func TestBufferIsFull(t *testing.T) {
assert := unit.Assert(t)
buffer := NewBuffer()
defer buffer.Release()
assert.Bool(buffer.IsFull()).IsTrue()
buffer.Clear()
assert.Bool(buffer.IsFull()).IsFalse()
}