test: improvements
This commit is contained in:
parent
b841eb4c54
commit
141d400b4a
1 changed files with 12 additions and 2 deletions
|
@ -4,10 +4,10 @@ import (
|
||||||
"bytes"
|
"bytes"
|
||||||
"compress/bzip2"
|
"compress/bzip2"
|
||||||
"compress/gzip"
|
"compress/gzip"
|
||||||
|
"crypto/rand"
|
||||||
"fmt"
|
"fmt"
|
||||||
"io"
|
"io"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"math/rand"
|
|
||||||
"os"
|
"os"
|
||||||
"os/exec"
|
"os/exec"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
|
@ -15,6 +15,8 @@ import (
|
||||||
"runtime"
|
"runtime"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
|
mrand "math/rand"
|
||||||
|
|
||||||
"github.com/restic/restic/backend"
|
"github.com/restic/restic/backend"
|
||||||
"github.com/restic/restic/backend/local"
|
"github.com/restic/restic/backend/local"
|
||||||
"github.com/restic/restic/repository"
|
"github.com/restic/restic/repository"
|
||||||
|
@ -76,7 +78,7 @@ func ParseID(s string) backend.ID {
|
||||||
func Random(seed, count int) []byte {
|
func Random(seed, count int) []byte {
|
||||||
buf := make([]byte, count)
|
buf := make([]byte, count)
|
||||||
|
|
||||||
rnd := rand.New(rand.NewSource(int64(seed)))
|
rnd := mrand.New(mrand.NewSource(int64(seed)))
|
||||||
for i := 0; i < count; i++ {
|
for i := 0; i < count; i++ {
|
||||||
buf[i] = byte(rnd.Uint32())
|
buf[i] = byte(rnd.Uint32())
|
||||||
}
|
}
|
||||||
|
@ -90,6 +92,14 @@ func RandomReader(seed, size int) *bytes.Reader {
|
||||||
return bytes.NewReader(Random(seed, size))
|
return bytes.NewReader(Random(seed, size))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// GenRandom returns a []byte filled with up to 1000 random bytes.
|
||||||
|
func GenRandom(t testing.TB) []byte {
|
||||||
|
buf := make([]byte, mrand.Intn(1000))
|
||||||
|
_, err := io.ReadFull(rand.Reader, buf)
|
||||||
|
OK(t, err)
|
||||||
|
return buf
|
||||||
|
}
|
||||||
|
|
||||||
// SetupTarTestFixture extracts the tarFile to outputDir.
|
// SetupTarTestFixture extracts the tarFile to outputDir.
|
||||||
func SetupTarTestFixture(t testing.TB, outputDir, tarFile string) {
|
func SetupTarTestFixture(t testing.TB, outputDir, tarFile string) {
|
||||||
input, err := os.Open(tarFile)
|
input, err := os.Open(tarFile)
|
||||||
|
|
Loading…
Reference in a new issue