mirror of
https://github.com/ipfs/kubo.git
synced 2025-09-08 22:57:50 +08:00

For the rest of the packages in util, move them to thirdparty and update the references. util is gone! License: MIT Signed-off-by: Jeromy <jeromyj@gmail.com>
107 lines
2.0 KiB
Go
107 lines
2.0 KiB
Go
package chunk
|
|
|
|
import (
|
|
"bytes"
|
|
"io"
|
|
"testing"
|
|
|
|
u "gx/ipfs/QmZNVWh8LLjAavuQ2JXuFmuYH3C11xo988vSgp7UQrTRj1/go-ipfs-util"
|
|
)
|
|
|
|
func randBuf(t *testing.T, size int) []byte {
|
|
buf := make([]byte, size)
|
|
if _, err := u.NewTimeSeededRand().Read(buf); err != nil {
|
|
t.Fatal("failed to read enough randomness")
|
|
}
|
|
return buf
|
|
}
|
|
|
|
func copyBuf(buf []byte) []byte {
|
|
cpy := make([]byte, len(buf))
|
|
copy(cpy, buf)
|
|
return cpy
|
|
}
|
|
|
|
func TestSizeSplitterIsDeterministic(t *testing.T) {
|
|
if testing.Short() {
|
|
t.SkipNow()
|
|
}
|
|
|
|
test := func() {
|
|
bufR := randBuf(t, 10000000) // crank this up to satisfy yourself.
|
|
bufA := copyBuf(bufR)
|
|
bufB := copyBuf(bufR)
|
|
|
|
chunksA, _ := Chan(DefaultSplitter(bytes.NewReader(bufA)))
|
|
chunksB, _ := Chan(DefaultSplitter(bytes.NewReader(bufB)))
|
|
|
|
for n := 0; ; n++ {
|
|
a, moreA := <-chunksA
|
|
b, moreB := <-chunksB
|
|
|
|
if !moreA {
|
|
if moreB {
|
|
t.Fatal("A ended, B didnt.")
|
|
}
|
|
return
|
|
}
|
|
|
|
if !bytes.Equal(a, b) {
|
|
t.Fatalf("chunk %d not equal", n)
|
|
}
|
|
}
|
|
}
|
|
|
|
for run := 0; run < 1; run++ { // crank this up to satisfy yourself.
|
|
test()
|
|
}
|
|
}
|
|
|
|
func TestSizeSplitterFillsChunks(t *testing.T) {
|
|
if testing.Short() {
|
|
t.SkipNow()
|
|
}
|
|
|
|
max := 10000000
|
|
b := randBuf(t, max)
|
|
r := &clipReader{r: bytes.NewReader(b), size: 4000}
|
|
chunksize := int64(1024 * 256)
|
|
c, _ := Chan(NewSizeSplitter(r, chunksize))
|
|
|
|
sofar := 0
|
|
whole := make([]byte, max)
|
|
for chunk := range c {
|
|
|
|
bc := b[sofar : sofar+len(chunk)]
|
|
if !bytes.Equal(bc, chunk) {
|
|
t.Fatalf("chunk not correct: (sofar: %d) %d != %d, %v != %v", sofar, len(bc), len(chunk), bc[:100], chunk[:100])
|
|
}
|
|
|
|
copy(whole[sofar:], chunk)
|
|
|
|
sofar += len(chunk)
|
|
if sofar != max && len(chunk) < int(chunksize) {
|
|
t.Fatal("sizesplitter split at a smaller size")
|
|
}
|
|
}
|
|
|
|
if !bytes.Equal(b, whole) {
|
|
t.Fatal("splitter did not split right")
|
|
}
|
|
}
|
|
|
|
type clipReader struct {
|
|
size int
|
|
r io.Reader
|
|
}
|
|
|
|
func (s *clipReader) Read(buf []byte) (int, error) {
|
|
|
|
// clip the incoming buffer to produce smaller chunks
|
|
if len(buf) > s.size {
|
|
buf = buf[:s.size]
|
|
}
|
|
|
|
return s.r.Read(buf)
|
|
}
|