mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-01 16:57:46 -04:00
27 lines
584 B
Go
27 lines
584 B
Go
package io_test
|
|
|
|
import (
|
|
"bytes"
|
|
"crypto/rand"
|
|
"testing"
|
|
|
|
"github.com/v2ray/v2ray-core/common/alloc"
|
|
. "github.com/v2ray/v2ray-core/common/io"
|
|
v2testing "github.com/v2ray/v2ray-core/testing"
|
|
"github.com/v2ray/v2ray-core/testing/assert"
|
|
)
|
|
|
|
func TestAdaptiveWriter(t *testing.T) {
|
|
v2testing.Current(t)
|
|
|
|
lb := alloc.NewLargeBuffer()
|
|
rand.Read(lb.Value)
|
|
|
|
writeBuffer := make([]byte, 0, 1024*1024)
|
|
|
|
writer := NewAdaptiveWriter(NewBufferedWriter(bytes.NewBuffer(writeBuffer)))
|
|
err := writer.Write(lb)
|
|
assert.Error(err).IsNil()
|
|
assert.Bytes(lb.Bytes()).Equals(writeBuffer)
|
|
}
|