Skip to content

Commit a3fa14c

Browse files
committed
Update TestCopyWithLargeFile
Add helper to create random files of any size. Skip large file copy when short flag is given. Signed-off-by: Derek McGowan <[email protected]>
1 parent 7333bda commit a3fa14c

File tree

2 files changed

+15
-32
lines changed

2 files changed

+15
-32
lines changed

fs/copy_test.go

+5-29
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ package fs
22

33
import (
44
_ "crypto/sha256"
5-
"io"
65
"io/ioutil"
76
"os"
87
"testing"
8+
"time"
99

1010
"github.com/containerd/continuity/fs/fstest"
1111
"github.com/pkg/errors"
@@ -48,41 +48,17 @@ func TestCopyDirectoryWithLocalSymlink(t *testing.T) {
4848

4949
// TestCopyWithLargeFile tests copying a file whose size > 2^32 bytes.
5050
func TestCopyWithLargeFile(t *testing.T) {
51-
dataR, dataW := io.Pipe()
52-
var written int64
53-
max := int64(3 * 1024 * 1024 * 1024)
54-
defer dataR.Close()
55-
56-
go func() {
57-
var (
58-
data = make([]byte, 64*1024)
59-
err error
60-
n int
61-
)
62-
defer func() {
63-
dataW.CloseWithError(err)
64-
}()
65-
66-
for written < max {
67-
n, err = dataW.Write(data)
68-
if err != nil {
69-
return
70-
}
71-
written += int64(n)
72-
}
73-
}()
74-
51+
if testing.Short() {
52+
t.SkipNow()
53+
}
7554
apply := fstest.Apply(
7655
fstest.CreateDir("/banana", 0755),
77-
fstest.WriteFileStream("/banana/split", dataR, 0644),
56+
fstest.CreateRandomFile("/banana/split", time.Now().UnixNano(), 3*1024*1024*1024, 0644),
7857
)
7958

8059
if err := testCopy(apply); err != nil {
8160
t.Fatal(err)
8261
}
83-
if written < max {
84-
t.Fatalf("wrote fewer bytes than expected: %d", written)
85-
}
8662
}
8763

8864
func testCopy(apply fstest.Applier) error {

fs/fstest/file.go

+10-3
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ package fstest
33
import (
44
"bytes"
55
"io"
6+
"math/rand"
67
"net"
78
"os"
89
"path/filepath"
@@ -23,12 +24,18 @@ func (a applyFn) Apply(root string) error {
2324
// CreateFile returns a file applier which creates a file as the
2425
// provided name with the given content and permission.
2526
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)
2728
}
2829

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
3037
// 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 {
3239
return applyFn(func(root string) (retErr error) {
3340
fullPath := filepath.Join(root, name)
3441
f, err := os.OpenFile(fullPath, os.O_WRONLY|os.O_CREATE|os.O_TRUNC, perm)

0 commit comments

Comments
 (0)