From 7db5395c5346a1b32656b27e504417779435edc8 Mon Sep 17 00:00:00 2001 From: Jakob Unterwurzacher Date: Mon, 5 Mar 2018 21:20:07 +0100 Subject: macos: fix second TestEmulateSymlinkat test failure --- internal/syscallcompat/emulate_test.go | 32 ++++++++++++++++++-------------- 1 file changed, 18 insertions(+), 14 deletions(-) (limited to 'internal/syscallcompat') diff --git a/internal/syscallcompat/emulate_test.go b/internal/syscallcompat/emulate_test.go index 77fec5f..ddb012e 100644 --- a/internal/syscallcompat/emulate_test.go +++ b/internal/syscallcompat/emulate_test.go @@ -205,6 +205,22 @@ func TestEmulateFchownat(t *testing.T) { t.Skipf("TODO") } +// symlinkCheckMode looks if the mode bits in "st" say that this is a symlink. +// Calls t.Fatal() if not. +func symlinkCheckMode(t *testing.T, st syscall.Stat_t) { + if runtime.GOOS == "darwin" { + // On MacOS, symlinks don't carry their own permissions, so + // only check the file type. + if st.Mode&syscall.S_IFMT != syscall.S_IFLNK { + t.Fatalf("This is not a symlink: mode = 0%o", st.Mode) + } + return + } + if st.Mode != 0120777 { + t.Fatalf("Wrong mode, have 0%o, want 0120777", st.Mode) + } +} + func TestEmulateSymlinkat(t *testing.T) { err := emulateSymlinkat("/foo/bar/baz", tmpDirFd, "symlink1") if err != nil { @@ -215,17 +231,7 @@ func TestEmulateSymlinkat(t *testing.T) { if err != nil { t.Fatal(err) } - if runtime.GOOS == "darwin" { - // On MacOS, symlinks don't carry their own permissions, so - // only check the file type. - if st.Mode&syscall.S_IFMT != syscall.S_IFLNK { - t.Fatalf("This is not a symlink: mode = 0%o", st.Mode) - } - } else { - if st.Mode != 0120777 { - t.Fatalf("Wrong mode, have 0%o, want 0120777", st.Mode) - } - } + symlinkCheckMode(t, st) // Test with absolute path err = emulateSymlinkat("/foo/bar/baz", -1, tmpDir+"/symlink2") if err != nil { @@ -235,9 +241,7 @@ func TestEmulateSymlinkat(t *testing.T) { if err != nil { t.Fatal(err) } - if st.Mode != 0120777 { - t.Fatalf("Wrong mode, have %o, want 0120777", st.Mode) - } + symlinkCheckMode(t, st) } func TestEmulateMkdirat(t *testing.T) { -- cgit v1.2.3