mirror of
https://github.com/XTLS/Xray-core.git
synced 2026-06-27 19:52:43 +00:00
Some checks are pending
Build and Release for Windows 7 / check-assets (push) Waiting to run
Build and Release for Windows 7 / build (win7-32, 386, windows) (push) Blocked by required conditions
Build and Release for Windows 7 / build (win7-64, amd64, windows) (push) Blocked by required conditions
Build and Release / check-assets (push) Waiting to run
Build and Release / build (386, freebsd, ) (push) Blocked by required conditions
Build and Release / build (386, linux, ) (push) Blocked by required conditions
Build and Release / build (386, openbsd, ) (push) Blocked by required conditions
Build and Release / build (386, windows, ) (push) Blocked by required conditions
Build and Release / build (amd64, android, android-amd64) (push) Blocked by required conditions
Build and Release / build (amd64, darwin, ) (push) Blocked by required conditions
Build and Release / build (amd64, freebsd, ) (push) Blocked by required conditions
Build and Release / build (amd64, linux, ) (push) Blocked by required conditions
Build and Release / build (amd64, openbsd, ) (push) Blocked by required conditions
Build and Release / build (amd64, windows, ) (push) Blocked by required conditions
Build and Release / build (arm, 5, linux) (push) Blocked by required conditions
Build and Release / build (arm, 6, linux) (push) Blocked by required conditions
Build and Release / build (arm, 7, freebsd) (push) Blocked by required conditions
Build and Release / build (arm, 7, linux) (push) Blocked by required conditions
Build and Release / build (arm, 7, openbsd) (push) Blocked by required conditions
Build and Release / build (arm64, android) (push) Blocked by required conditions
Build and Release / build (arm64, darwin) (push) Blocked by required conditions
Build and Release / build (arm64, freebsd) (push) Blocked by required conditions
Build and Release / build (arm64, linux) (push) Blocked by required conditions
Build and Release / build (arm64, openbsd) (push) Blocked by required conditions
Build and Release / build (arm64, windows) (push) Blocked by required conditions
Build and Release / build (loong64, linux) (push) Blocked by required conditions
Build and Release / build (mips, linux) (push) Blocked by required conditions
Build and Release / build (mips64, linux) (push) Blocked by required conditions
Build and Release / build (mips64le, linux) (push) Blocked by required conditions
Build and Release / build (mipsle, linux) (push) Blocked by required conditions
Build and Release / build (ppc64, linux) (push) Blocked by required conditions
Build and Release / build (ppc64le, linux) (push) Blocked by required conditions
Build and Release / build (riscv64, linux) (push) Blocked by required conditions
Build and Release / build (s390x, linux) (push) Blocked by required conditions
Tests and Checkings / check-assets (push) Waiting to run
Tests and Checkings / check-proto (push) Waiting to run
Tests and Checkings / check-format (push) Waiting to run
Tests and Checkings / test (macos-latest) (push) Blocked by required conditions
Tests and Checkings / test (ubuntu-latest) (push) Blocked by required conditions
Tests and Checkings / test (windows-latest) (push) Blocked by required conditions
https://github.com/XTLS/Xray-core/pull/6057#issuecomment-4364819830 And https://github.com/XTLS/Xray-core/pull/6149#issuecomment-4546876261
131 lines
2.9 KiB
Go
131 lines
2.9 KiB
Go
package buf_test
|
|
|
|
import (
|
|
"bytes"
|
|
"io"
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/xtls/xray-core/common"
|
|
. "github.com/xtls/xray-core/common/buf"
|
|
"github.com/xtls/xray-core/transport/pipe"
|
|
)
|
|
|
|
func TestBytesReaderWriteTo(t *testing.T) {
|
|
pReader, pWriter := pipe.New(pipe.WithSizeLimit(1024))
|
|
reader := &BufferedReader{Reader: pReader}
|
|
b1 := New()
|
|
b1.WriteString("abc")
|
|
b2 := New()
|
|
b2.WriteString("efg")
|
|
common.Must(pWriter.WriteMultiBuffer(MultiBuffer{b1, b2}))
|
|
pWriter.Close()
|
|
|
|
pReader2, pWriter2 := pipe.New(pipe.WithSizeLimit(1024))
|
|
writer := NewBufferedWriter(pWriter2)
|
|
writer.SetBuffered(false)
|
|
|
|
nBytes, err := io.Copy(writer, reader)
|
|
common.Must(err)
|
|
if nBytes != 6 {
|
|
t.Error("copy: ", nBytes)
|
|
}
|
|
|
|
mb, err := pReader2.ReadMultiBuffer()
|
|
common.Must(err)
|
|
if s := mb.String(); s != "abcefg" {
|
|
t.Error("content: ", s)
|
|
}
|
|
}
|
|
|
|
func TestBytesReaderMultiBuffer(t *testing.T) {
|
|
pReader, pWriter := pipe.New(pipe.WithSizeLimit(1024))
|
|
reader := &BufferedReader{Reader: pReader}
|
|
b1 := New()
|
|
b1.WriteString("abc")
|
|
b2 := New()
|
|
b2.WriteString("efg")
|
|
common.Must(pWriter.WriteMultiBuffer(MultiBuffer{b1, b2}))
|
|
pWriter.Close()
|
|
|
|
mbReader := NewReader(reader)
|
|
mb, err := mbReader.ReadMultiBuffer()
|
|
common.Must(err)
|
|
if s := mb.String(); s != "abcefg" {
|
|
t.Error("content: ", s)
|
|
}
|
|
}
|
|
|
|
func TestReadByte(t *testing.T) {
|
|
sr := strings.NewReader("abcd")
|
|
reader := &BufferedReader{
|
|
Reader: NewReader(sr),
|
|
}
|
|
b, err := reader.ReadByte()
|
|
common.Must(err)
|
|
if b != 'a' {
|
|
t.Error("unexpected byte: ", b, " want a")
|
|
}
|
|
if reader.BufferedBytes() != 3 { // 3 bytes left in buffer
|
|
t.Error("unexpected buffered Bytes: ", reader.BufferedBytes())
|
|
}
|
|
|
|
nBytes, err := reader.WriteTo(DiscardBytes)
|
|
common.Must(err)
|
|
if nBytes != 3 {
|
|
t.Error("unexpect bytes written: ", nBytes)
|
|
}
|
|
}
|
|
|
|
func TestReadBuffer(t *testing.T) {
|
|
{
|
|
sr := strings.NewReader("abcd")
|
|
buf, err := ReadBuffer(sr)
|
|
common.Must(err)
|
|
|
|
if s := buf.String(); s != "abcd" {
|
|
t.Error("unexpected str: ", s, " want abcd")
|
|
}
|
|
buf.Release()
|
|
}
|
|
}
|
|
|
|
func TestReadAtMost(t *testing.T) {
|
|
sr := strings.NewReader("abcd")
|
|
reader := &BufferedReader{
|
|
Reader: NewReader(sr),
|
|
}
|
|
|
|
mb, err := reader.ReadAtMost(3)
|
|
common.Must(err)
|
|
if s := mb.String(); s != "abc" {
|
|
t.Error("unexpected read result: ", s)
|
|
}
|
|
|
|
nBytes, err := reader.WriteTo(DiscardBytes)
|
|
common.Must(err)
|
|
if nBytes != 1 {
|
|
t.Error("unexpect bytes written: ", nBytes)
|
|
}
|
|
}
|
|
|
|
func TestPacketReader_ReadMultiBuffer(t *testing.T) {
|
|
const alpha = "abcefg"
|
|
buf := bytes.NewBufferString(alpha)
|
|
reader := &PacketReader{buf}
|
|
mb, err := reader.ReadMultiBuffer()
|
|
common.Must(err)
|
|
if s := mb.String(); s != alpha {
|
|
t.Error("content: ", s)
|
|
}
|
|
}
|
|
|
|
func TestReaderInterface(t *testing.T) {
|
|
_ = io.Reader(new(ReadVReader))
|
|
_ = Reader(new(ReadVReader))
|
|
|
|
_ = Reader(new(BufferedReader))
|
|
_ = io.Reader(new(BufferedReader))
|
|
_ = io.ByteReader(new(BufferedReader))
|
|
_ = io.WriterTo(new(BufferedReader))
|
|
}
|