diff --git a/fuse/nodefs/files_test.go b/fuse/nodefs/files_test.go new file mode 100644 index 000000000..0ca8f79ab --- /dev/null +++ b/fuse/nodefs/files_test.go @@ -0,0 +1,32 @@ +// Copyright 2016 the Go-FUSE Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package nodefs + +import ( + "io/ioutil" + "os" + "testing" + "time" + + "github.com/hanwen/go-fuse/fuse" + "github.com/hanwen/go-fuse/internal/testutil" +) + +// Check that loopbackFile.Utimens() works as expected +func TestLoopbackFileUtimens(t *testing.T) { + f2, err := ioutil.TempFile("", "TestLoopbackFileUtimens") + if err != nil { + t.Fatal(err) + } + path := f2.Name() + defer os.Remove(path) + defer f2.Close() + f := NewLoopbackFile(f2) + + utimensFn := func(atime *time.Time, mtime *time.Time) fuse.Status { + return f.Utimens(atime, mtime) + } + testutil.TestLoopbackUtimens(t, path, utimensFn) +} diff --git a/fuse/pathfs/loopback_test.go b/fuse/pathfs/loopback_test.go new file mode 100644 index 000000000..169f79624 --- /dev/null +++ b/fuse/pathfs/loopback_test.go @@ -0,0 +1,35 @@ +// Copyright 2016 the Go-FUSE Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package pathfs + +import ( + "io/ioutil" + "os" + "path/filepath" + "syscall" + "testing" + "time" + + "github.com/hanwen/go-fuse/fuse" + "github.com/hanwen/go-fuse/internal/testutil" +) + +// Check that loopbackFileSystem.Utimens() works as expected +func TestLoopbackFileSystemUtimens(t *testing.T) { + fs := NewLoopbackFileSystem(os.TempDir()) + f, err := ioutil.TempFile("", "TestLoopbackFileSystemUtimens") + if err != nil { + t.Fatal(err) + } + path := f.Name() + name := filepath.Base(path) + f.Close() + defer syscall.Unlink(path) + + utimensFn := func(atime *time.Time, mtime *time.Time) fuse.Status { + return fs.Utimens(name, atime, mtime, nil) + } + testutil.TestLoopbackUtimens(t, path, utimensFn) +}