@@ -3,6 +3,7 @@ package fstest
3
3
import (
4
4
"bytes"
5
5
"io"
6
+ "math/rand"
6
7
"net"
7
8
"os"
8
9
"path/filepath"
@@ -23,12 +24,18 @@ func (a applyFn) Apply(root string) error {
23
24
// CreateFile returns a file applier which creates a file as the
24
25
// provided name with the given content and permission.
25
26
func CreateFile (name string , content []byte , perm os.FileMode ) Applier {
26
- return WriteFileStream (name , bytes .NewReader (content ), perm )
27
+ return writeFileStream (name , bytes .NewReader (content ), perm )
27
28
}
28
29
29
- // WriteFileStream returns a file applier which creates a file as the
30
+ // CreateRandomFile returns a file applier which creates a file with random
31
+ // content of the given size using the given seed and permission.
32
+ func CreateRandomFile (name string , seed , size int64 , perm os.FileMode ) Applier {
33
+ return writeFileStream (name , io .LimitReader (rand .New (rand .NewSource (seed )), size ), perm )
34
+ }
35
+
36
+ // writeFileStream returns a file applier which creates a file as the
30
37
// provided name with the given content from the provided i/o stream and permission.
31
- func WriteFileStream (name string , stream io.Reader , perm os.FileMode ) Applier {
38
+ func writeFileStream (name string , stream io.Reader , perm os.FileMode ) Applier {
32
39
return applyFn (func (root string ) (retErr error ) {
33
40
fullPath := filepath .Join (root , name )
34
41
f , err := os .OpenFile (fullPath , os .O_WRONLY | os .O_CREATE | os .O_TRUNC , perm )
0 commit comments