diff options
author | Jakob Unterwurzacher | 2017-12-03 17:53:14 +0100 |
---|---|---|
committer | Jakob Unterwurzacher | 2017-12-03 19:32:59 +0100 |
commit | e33593d30d9dee6fd6b0e7c0d01832e478815d88 (patch) | |
tree | 5070656829a7215bd4fe01404f208798cd073a2b /internal/syscallcompat/emulate_test.go | |
parent | 441e796e7034977c15dc9402a880ef4061b471a7 (diff) |
syscallcompat: add Fstatat + emulation + test
Fstatat has recently been added to x/sys/unix. Make
it available for use in gocryptfs.
Diffstat (limited to 'internal/syscallcompat/emulate_test.go')
-rw-r--r-- | internal/syscallcompat/emulate_test.go | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/internal/syscallcompat/emulate_test.go b/internal/syscallcompat/emulate_test.go index 9b45672..c259778 100644 --- a/internal/syscallcompat/emulate_test.go +++ b/internal/syscallcompat/emulate_test.go @@ -256,3 +256,38 @@ func TestEmulateMkdirat(t *testing.T) { t.Fatalf("mkdirat did not create a directory") } } + +func TestEmulateFstatat(t *testing.T) { + var st unix.Stat_t + // stat a normal file (size 3) + f, err := os.Create(tmpDir + "/fstatat") + if err != nil { + t.Fatal(err) + } + _, err = f.Write([]byte("foo")) + if err != nil { + t.Fatal(err) + } + f.Close() + err = emulateFstatat(tmpDirFd, "fstatat", &st, unix.AT_SYMLINK_NOFOLLOW) + if err != nil { + t.Fatal(err) + } + if st.Size != 3 { + t.Errorf("wrong file size: %d", st.Size) + } + // stat a symlink and check that the size matches the length of the + // symlink target. This proves that we have stat'ed the symlink itself. + err = os.Symlink(tmpDir+"/fstatat", tmpDir+"/fstatatSymlink") + if err != nil { + t.Fatal(err) + } + err = emulateFstatat(tmpDirFd, "fstatatSymlink", &st, unix.AT_SYMLINK_NOFOLLOW) + if err != nil { + t.Fatal(err) + } + expectedSize := int64(len(tmpDir + "/fstatat")) + if st.Size != expectedSize { + t.Errorf("symlink size: expected=%d, got=%d", expectedSize, st.Size) + } +} |