mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
50 lines
948 B
Go
50 lines
948 B
Go
|
package fake
|
||
|
|
||
|
import (
|
||
|
"bytes"
|
||
|
"math/rand"
|
||
|
"io"
|
||
|
"archive/tar"
|
||
|
)
|
||
|
|
||
|
|
||
|
func FakeTar() (io.Reader, error) {
|
||
|
content := []byte("Hello world!\n")
|
||
|
buf := new(bytes.Buffer)
|
||
|
tw := tar.NewWriter(buf)
|
||
|
for _, name := range []string {"/etc/postgres/postgres.conf", "/etc/passwd", "/var/log/postgres", "/var/log/postgres/postgres.conf"} {
|
||
|
hdr := new(tar.Header)
|
||
|
hdr.Size = int64(len(content))
|
||
|
hdr.Name = name
|
||
|
if err := tw.WriteHeader(hdr); err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
tw.Write([]byte(content))
|
||
|
}
|
||
|
tw.Close()
|
||
|
return buf, nil
|
||
|
}
|
||
|
|
||
|
|
||
|
func WriteFakeTar(dst io.Writer) error {
|
||
|
if data, err := FakeTar(); err != nil {
|
||
|
return err
|
||
|
} else if _, err := io.Copy(dst, data); err != nil {
|
||
|
return err
|
||
|
}
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
|
||
|
func RandomBytesChanged() uint {
|
||
|
return uint(rand.Int31n(24 * 1024 * 1024))
|
||
|
}
|
||
|
|
||
|
func RandomFilesChanged() uint {
|
||
|
return uint(rand.Int31n(42))
|
||
|
}
|
||
|
|
||
|
func RandomContainerSize() uint {
|
||
|
return uint(rand.Int31n(142 * 1024 * 1024))
|
||
|
}
|