2016-05-11 13:54:20 -04:00
|
|
|
package io_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"crypto/rand"
|
|
|
|
"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-05-11 13:54:20 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestAdaptiveWriter(t *testing.T) {
|
2016-05-24 15:55:46 -04:00
|
|
|
assert := assert.On(t)
|
2016-05-11 13:54:20 -04:00
|
|
|
|
2016-12-06 05:03:42 -05:00
|
|
|
lb := alloc.NewBuffer()
|
2016-12-05 09:19:14 -05:00
|
|
|
lb.FillFrom(rand.Reader)
|
2016-05-11 13:54:20 -04:00
|
|
|
|
2016-12-06 05:03:42 -05:00
|
|
|
expectedBytes := append([]byte(nil), lb.Bytes()...)
|
2016-05-11 13:54:20 -04:00
|
|
|
|
2016-12-06 05:03:42 -05:00
|
|
|
writeBuffer := bytes.NewBuffer(make([]byte, 0, 1024*1024))
|
|
|
|
|
|
|
|
writer := NewAdaptiveWriter(NewBufferedWriter(writeBuffer))
|
2016-05-11 13:54:20 -04:00
|
|
|
err := writer.Write(lb)
|
|
|
|
assert.Error(err).IsNil()
|
2016-12-06 05:03:42 -05:00
|
|
|
assert.Bytes(expectedBytes).Equals(writeBuffer.Bytes())
|
2016-05-11 13:54:20 -04:00
|
|
|
}
|