2017-12-06 21:07:24 +01:00
|
|
|
package syscallcompat
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"os"
|
2018-02-28 20:40:08 +01:00
|
|
|
"runtime"
|
2017-12-06 21:07:24 +01:00
|
|
|
"syscall"
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestReadlinkat(t *testing.T) {
|
|
|
|
for _, targetLen := range []int{100, 500, 4000} {
|
|
|
|
target := string(bytes.Repeat([]byte("x"), targetLen))
|
|
|
|
err := os.Symlink(target, tmpDir+"/readlinkat")
|
|
|
|
if err != nil {
|
2018-02-28 20:40:08 +01:00
|
|
|
if targetLen > 1000 && runtime.GOOS == "darwin" {
|
|
|
|
// Symlinks longer than 1024 (?) bytes are not supported on
|
|
|
|
// MacOS
|
|
|
|
continue
|
|
|
|
}
|
2017-12-06 21:07:24 +01:00
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
target2, err := Readlinkat(tmpDirFd, "readlinkat")
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if target != target2 {
|
|
|
|
t.Errorf("target=%q != target2=%q", target, target2)
|
|
|
|
}
|
|
|
|
err = syscall.Unlink(tmpDir + "/readlinkat")
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|