2006-05-06 02:37:41 +05:30
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# Readlink tests.
|
|
|
|
# Copyright 2006 by Natanael Copa <n@tanael.org>
|
|
|
|
# Licensed under GPL v2, see file LICENSE for details.
|
|
|
|
|
|
|
|
. testing.sh
|
|
|
|
|
|
|
|
TESTDIR=readlink_testdir
|
|
|
|
TESTFILE="$TESTDIR/testfile"
|
|
|
|
TESTLINK="testlink"
|
|
|
|
FAILLINK="$TESTDIR/$TESTDIR/testlink"
|
|
|
|
|
|
|
|
# create the dir and test files
|
|
|
|
mkdir -p "./$TESTDIR"
|
|
|
|
touch "./$TESTFILE"
|
|
|
|
ln -s "./$TESTFILE" "./$TESTLINK"
|
|
|
|
|
|
|
|
testing "readlink on a file" "readlink ./$TESTFILE" "" "" ""
|
|
|
|
testing "readlink on a link" "readlink ./$TESTLINK" "./$TESTFILE\n" "" ""
|
2006-05-06 03:52:30 +05:30
|
|
|
|
|
|
|
optional FEATURE_READLINK_FOLLOW
|
|
|
|
|
2006-05-06 02:37:41 +05:30
|
|
|
testing "readlink -f on a file" "readlink -f ./$TESTFILE" "$PWD/$TESTFILE\n" "" ""
|
|
|
|
testing "readlink -f on a link" "readlink -f ./$TESTLINK" "$PWD/$TESTFILE\n" "" ""
|
|
|
|
testing "readlink -f on an invalid link" "readlink -f ./$FAILLINK" "" "" ""
|
|
|
|
testing "readlink -f on a wierd dir" "readlink -f $TESTDIR/../$TESTFILE" "$PWD/$TESTFILE\n" "" ""
|
|
|
|
|
|
|
|
|
|
|
|
# clean up
|
|
|
|
rm -r "$TESTLINK" "$TESTDIR"
|
|
|
|
|