mirror of https://github.com/v2ray/v2ray-core
				
				
				
			
		
			
				
	
	
		
			71 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Go
		
	
	
			
		
		
	
	
			71 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Go
		
	
	
| package buf_test
 | |
| 
 | |
| import (
 | |
| 	"bytes"
 | |
| 	"context"
 | |
| 	"io"
 | |
| 	"testing"
 | |
| 
 | |
| 	. "v2ray.com/core/common/buf"
 | |
| 	"v2ray.com/core/testing/assert"
 | |
| 	"v2ray.com/core/transport/ray"
 | |
| )
 | |
| 
 | |
| func TestAdaptiveReader(t *testing.T) {
 | |
| 	assert := assert.On(t)
 | |
| 
 | |
| 	rawContent := make([]byte, 1024*1024)
 | |
| 	buffer := bytes.NewBuffer(rawContent)
 | |
| 
 | |
| 	reader := NewReader(buffer)
 | |
| 	b, err := reader.Read()
 | |
| 	assert.Error(err).IsNil()
 | |
| 	assert.Int(b.Len()).Equals(32 * 1024)
 | |
| }
 | |
| 
 | |
| func TestBytesReaderWriteTo(t *testing.T) {
 | |
| 	assert := assert.On(t)
 | |
| 
 | |
| 	stream := ray.NewStream(context.Background())
 | |
| 	reader := ToBytesReader(stream)
 | |
| 	b1 := New()
 | |
| 	b1.AppendBytes('a', 'b', 'c')
 | |
| 	b2 := New()
 | |
| 	b2.AppendBytes('e', 'f', 'g')
 | |
| 	assert.Error(stream.Write(NewMultiBufferValue(b1, b2))).IsNil()
 | |
| 	stream.Close()
 | |
| 
 | |
| 	stream2 := ray.NewStream(context.Background())
 | |
| 	writer := ToBytesWriter(stream2)
 | |
| 
 | |
| 	nBytes, err := io.Copy(writer, reader)
 | |
| 	assert.Error(err).IsNil()
 | |
| 	assert.Int64(nBytes).Equals(6)
 | |
| 
 | |
| 	mb, err := stream2.Read()
 | |
| 	assert.Error(err).IsNil()
 | |
| 	assert.Int(len(mb)).Equals(2)
 | |
| 	assert.String(mb[0].String()).Equals("abc")
 | |
| 	assert.String(mb[1].String()).Equals("efg")
 | |
| }
 | |
| 
 | |
| func TestBytesReaderMultiBuffer(t *testing.T) {
 | |
| 	assert := assert.On(t)
 | |
| 
 | |
| 	stream := ray.NewStream(context.Background())
 | |
| 	reader := ToBytesReader(stream)
 | |
| 	b1 := New()
 | |
| 	b1.AppendBytes('a', 'b', 'c')
 | |
| 	b2 := New()
 | |
| 	b2.AppendBytes('e', 'f', 'g')
 | |
| 	assert.Error(stream.Write(NewMultiBufferValue(b1, b2))).IsNil()
 | |
| 	stream.Close()
 | |
| 
 | |
| 	mbReader := NewReader(reader)
 | |
| 	mb, err := mbReader.Read()
 | |
| 	assert.Error(err).IsNil()
 | |
| 	assert.Int(len(mb)).Equals(2)
 | |
| 	assert.String(mb[0].String()).Equals("abc")
 | |
| 	assert.String(mb[1].String()).Equals("efg")
 | |
| }
 |