mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-22 19:50:36 +00:00
231e468e19
git-subtree-dir: erigon-lib git-subtree-mainline:3c8cbda809
git-subtree-split:93d9c9d9fe
97 lines
2.2 KiB
Go
97 lines
2.2 KiB
Go
package compress
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"fmt"
|
|
"math/rand"
|
|
"path/filepath"
|
|
"testing"
|
|
|
|
"github.com/ledgerwatch/erigon-lib/common/cmp"
|
|
"github.com/ledgerwatch/log/v3"
|
|
)
|
|
|
|
func FuzzDecompressMatch(f *testing.F) {
|
|
logger := log.New()
|
|
f.Fuzz(func(t *testing.T, x []byte, pos []byte, workers int8) {
|
|
t.Helper()
|
|
t.Parallel()
|
|
if len(pos) < 1 || workers < 1 {
|
|
t.Skip()
|
|
return
|
|
}
|
|
var a [][]byte
|
|
j := 0
|
|
for i := 0; i < len(pos) && j < len(x); i++ {
|
|
if pos[i] == 0 {
|
|
continue
|
|
}
|
|
next := cmp.Min(j+int(pos[i]*10), len(x)-1)
|
|
bbb := x[j:next]
|
|
a = append(a, bbb)
|
|
j = next
|
|
}
|
|
|
|
ctx := context.Background()
|
|
tmpDir := t.TempDir()
|
|
file := filepath.Join(tmpDir, fmt.Sprintf("compressed-%d", rand.Int31()))
|
|
c, err := NewCompressor(ctx, t.Name(), file, tmpDir, 2, int(workers), log.LvlDebug, logger)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
c.DisableFsync()
|
|
defer c.Close()
|
|
for _, b := range a {
|
|
if err = c.AddWord(b); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|
|
if err = c.Compress(); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
c.Close()
|
|
d, err := NewDecompressor(file)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
defer d.Close()
|
|
g := d.MakeGetter()
|
|
buf := make([]byte, (1 << 16))
|
|
word_idx := 0
|
|
for g.HasNext() {
|
|
expected := a[word_idx]
|
|
savePos := g.dataP
|
|
cmp := g.MatchCmp(expected)
|
|
pos1 := g.dataP
|
|
if cmp != 0 {
|
|
t.Fatalf("MatchCmp: expected match: %v\n", expected)
|
|
}
|
|
g.Reset(savePos)
|
|
ok, _ := g.Match(expected)
|
|
pos2 := g.dataP
|
|
if !ok {
|
|
t.Fatalf("MatchBool: expected match: %v\n", expected)
|
|
}
|
|
g.Reset(savePos)
|
|
word, nexPos := g.Next(nil)
|
|
if bytes.Compare(word, expected) != 0 {
|
|
t.Fatalf("bytes.Compare: expected match: %v with word %v\n", expected, word)
|
|
}
|
|
if pos1 != pos2 && pos2 != nexPos {
|
|
t.Fatalf("pos1 %v != pos2 %v != nexPos %v\n", pos1, pos2, nexPos)
|
|
}
|
|
g.Reset(savePos)
|
|
word2, nexPos2 := g.FastNext(buf)
|
|
if bytes.Compare(word2, expected) != 0 {
|
|
t.Fatalf("bytes.Compare: expected match: %v with word %v\n", expected, word)
|
|
}
|
|
if pos1 != pos2 && pos2 != nexPos && nexPos != nexPos2 {
|
|
t.Fatalf("pos1 %v != pos2 %v != nexPos %v\n", pos1, pos2, nexPos)
|
|
}
|
|
word_idx++
|
|
}
|
|
})
|
|
|
|
}
|