mirror of
https://github.com/octoleo/restic.git
synced 2024-11-04 20:37:49 +00:00
30 lines
546 B
Go
30 lines
546 B
Go
package fs
|
|
|
|
import (
|
|
"os"
|
|
"path/filepath"
|
|
"testing"
|
|
|
|
restictest "github.com/restic/restic/internal/test"
|
|
)
|
|
|
|
func TestExtendedStat(t *testing.T) {
|
|
tempdir := restictest.TempDir(t)
|
|
filename := filepath.Join(tempdir, "file")
|
|
err := os.WriteFile(filename, []byte("foobar"), 0640)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
fi, err := Lstat(filename)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
extFI := ExtendedStat(fi)
|
|
|
|
if !extFI.ModTime.Equal(fi.ModTime()) {
|
|
t.Errorf("extFI.ModTime does not match, want %v, got %v", fi.ModTime(), extFI.ModTime)
|
|
}
|
|
}
|