mirror of
https://github.com/restic/restic.git
synced 2025-10-10 08:13:16 +00:00
restorer: windows test fixes
This commit is contained in:
10
internal/restorer/fileswriter_other_test.go
Normal file
10
internal/restorer/fileswriter_other_test.go
Normal file
@@ -0,0 +1,10 @@
|
||||
//go:build !windows
|
||||
// +build !windows
|
||||
|
||||
package restorer
|
||||
|
||||
import "syscall"
|
||||
|
||||
func notEmptyDirError() error {
|
||||
return syscall.ENOTEMPTY
|
||||
}
|
@@ -4,7 +4,7 @@ import (
|
||||
"fmt"
|
||||
"os"
|
||||
"path/filepath"
|
||||
"syscall"
|
||||
"runtime"
|
||||
"testing"
|
||||
|
||||
"github.com/restic/restic/internal/errors"
|
||||
@@ -72,7 +72,7 @@ func TestCreateFile(t *testing.T) {
|
||||
rtest.OK(t, os.Mkdir(path, 0o700))
|
||||
rtest.OK(t, os.WriteFile(filepath.Join(path, "file"), []byte("data"), 0o400))
|
||||
},
|
||||
err: syscall.ENOTEMPTY,
|
||||
err: notEmptyDirError(),
|
||||
},
|
||||
{
|
||||
name: "hardlinks",
|
||||
@@ -81,6 +81,11 @@ func TestCreateFile(t *testing.T) {
|
||||
rtest.OK(t, os.Link(path, path+"h"))
|
||||
},
|
||||
check: func(t testing.TB, path string) {
|
||||
if runtime.GOOS == "windows" {
|
||||
// hardlinks are not supported on windows
|
||||
return
|
||||
}
|
||||
|
||||
data, err := os.ReadFile(path + "h")
|
||||
rtest.OK(t, err)
|
||||
rtest.Equals(t, "test-test-test-data", string(data), "unexpected content change")
|
||||
|
7
internal/restorer/fileswriter_windows_test.go
Normal file
7
internal/restorer/fileswriter_windows_test.go
Normal file
@@ -0,0 +1,7 @@
|
||||
package restorer
|
||||
|
||||
import "syscall"
|
||||
|
||||
func notEmptyDirError() error {
|
||||
return syscall.ERROR_DIR_NOT_EMPTY
|
||||
}
|
Reference in New Issue
Block a user