Add preallocate tests

This commit is contained in:
Michael Eischer 2020-08-19 22:31:10 +02:00
parent 8cc9514879
commit 121233e1b3
1 changed files with 34 additions and 0 deletions

View File

@ -0,0 +1,34 @@
package restorer
import (
"os"
"path"
"strconv"
"testing"
"github.com/restic/restic/internal/fs"
"github.com/restic/restic/internal/test"
)
func TestPreallocate(t *testing.T) {
for _, i := range []int64{0, 1, 4096, 1024 * 1024} {
t.Run(strconv.FormatInt(i, 10), func(t *testing.T) {
dirpath, cleanup := test.TempDir(t)
defer cleanup()
flags := os.O_CREATE | os.O_TRUNC | os.O_WRONLY
wr, err := os.OpenFile(path.Join(dirpath, "test"), flags, 0600)
test.OK(t, err)
defer wr.Close()
err = preallocateFile(wr, i)
test.OK(t, err)
fi, err := wr.Stat()
test.OK(t, err)
efi := fs.ExtendedStat(fi)
test.Assert(t, efi.Size == i || efi.Blocks > 0, "Preallocated size of %v, got size %v block %v", i, efi.Size, efi.Blocks)
})
}
}