mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 20:07:38 +03:00
23 lines
433 B
Go
23 lines
433 B
Go
package buf_test
|
|
|
|
import (
|
|
"bytes"
|
|
"crypto/rand"
|
|
"testing"
|
|
|
|
vb "github.com/v2fly/v2ray-core/v5/common/buf"
|
|
"sing/common/buf"
|
|
)
|
|
|
|
func TestBuffer(t *testing.T) {
|
|
v := vb.New()
|
|
v.ReadFullFrom(rand.Reader, 1024)
|
|
buffer := buf.New()
|
|
buffer.Write(v.Bytes())
|
|
v.Write(v.Bytes())
|
|
buffer.Write(buffer.Bytes())
|
|
|
|
if bytes.Compare(v.Bytes(), buffer.Bytes()) > 0 {
|
|
t.Fatal("bad request data\n", v.Bytes(), "\n", buffer.Bytes())
|
|
}
|
|
}
|