tests: add "mv broken symlink" test

This currently fails because we do not use llistxattr
yet.
This commit is contained in:
Jakob Unterwurzacher 2018-05-17 23:14:33 +02:00
parent e25d551e18
commit 44caf21deb
1 changed files with 25 additions and 0 deletions

View File

@ -8,6 +8,7 @@ import (
"os"
"os/exec"
"runtime"
"strings"
"sync"
"testing"
@ -215,6 +216,30 @@ func TestMvWarnings(t *testing.T) {
}
}
// Check for this bug in symlink handling:
// $ ln -s /asd/asdasd/asdasd b/foo
// $ mv b/foo .
// mv: listing attributes of 'b/foo': No such file or directory
// strace shows:
// llistxattr("b/foo", NULL, 0) = -1 ENOENT (No such file or directory)
func TestMvWarningSymlink(t *testing.T) {
fn := test_helpers.DefaultPlainDir + "/TestMvWarningSymlink"
err := os.Symlink("/foo/bar/baz", fn)
if err != nil {
t.Fatal(err)
}
cmd := exec.Command("mv", fn, test_helpers.TmpDir)
out, err := cmd.CombinedOutput()
if err != nil {
t.Log(string(out))
t.Fatal(err)
}
if len(out) != 0 {
t.Log(strings.TrimSpace(string(out)))
t.Fatal("Got warnings")
}
}
// See TestCpWarnings.
func TestCpWarnings(t *testing.T) {
fn := test_helpers.TmpDir + "/TestCpWarnings"