1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-06-01 12:56:04 +02:00
zsh/Test/C02cond.ztst

363 lines
8.3 KiB
Plaintext
Raw Normal View History

2001-04-02 14:32:27 +02:00
# Tests corresponding to the texinfo node `Conditional Expressions'
%prep
umask 077
mkdir cond.tmp
cd cond.tmp
touch unmodified
touch zerolength
chgrp $EGID zerolength
2001-08-22 17:59:27 +02:00
2001-04-02 14:32:27 +02:00
print 'Garbuglio' >nonzerolength
mkdir modish
2001-06-09 20:14:58 +02:00
chgrp $EGID modish
2001-08-22 17:59:27 +02:00
chmod 7710 modish # g+xs,u+s,+t
chmod g+s modish # two lines combined work around chmod bugs
2001-04-02 14:32:27 +02:00
touch unmodish
chmod 000 unmodish
print 'MZ' > cmd.exe
chmod +x cmd.exe
2001-04-02 14:32:27 +02:00
%test
[[ -a zerolength && ! -a nonexistent ]]
0:-a cond
# Find a block special file system. This is a little tricky.
2001-05-28 18:33:54 +02:00
block=$(find /dev(|ices)/ -type b -print)
if [[ -n $block ]]; then
[[ -b $block[(f)1] && ! -b zerolength ]]
else
2007-07-31 16:24:26 +02:00
print -u$ZTST_fd 'Warning: Not testing [[ -b blockdevice ]] (no devices found)'
[[ ! -b zerolength ]]
fi
0D:-b cond
2001-04-02 14:32:27 +02:00
2001-05-28 18:33:54 +02:00
# Use hardcoded /dev/tty because globbing inside /dev fails on Cygwin
char=/dev/tty
[[ -c $char && ! -c $zerolength ]]
2001-04-02 14:32:27 +02:00
0:-c cond
[[ -d . && ! -d zerolength ]]
0:-d cond
[[ -e zerolength && ! -e nonexistent ]]
0:-e cond
if [[ -n $block ]]; then
[[ -f zerolength && ! -f cond && ! -f $char && ! -f $block[(f)1] && ! -f . ]]
else
2007-07-31 16:24:26 +02:00
print -u$ZTST_fd 'Warning: Not testing [[ -f blockdevice ]] (no devices found)'
[[ -f zerolength && ! -f cond && ! -f $char && ! -f . ]]
fi
2001-04-02 14:32:27 +02:00
0:-f cond
[[ -g modish && ! -g zerolength ]]
0:-g cond
ln -s zerolength link
[[ -h link && ! -h zerolength ]]
0:-h cond
[[ -k modish && ! -k zerolength ]]
0:-k cond
foo=foo
bar=
[[ -n $foo && ! -n $bar && ! -n '' ]]
0:-n cond
[[ -o rcs && ! -o norcs && -o noerrexit && ! -o errexit ]]
0:-o cond
2001-05-28 18:33:54 +02:00
if ! grep '#define HAVE_FIFOS' $ZTST_testdir/../config.h; then
2007-07-31 16:24:26 +02:00
print -u$ZTST_fd 'Warning: Not testing [[ -p pipe ]] (FIFOs not supported)'
2001-05-28 18:33:54 +02:00
[[ ! -p zerolength ]]
2001-04-02 14:32:27 +02:00
else
2001-05-28 18:33:54 +02:00
if whence mkfifo && mkfifo pipe || mknod pipe p; then
[[ -p pipe && ! -p zerolength ]]
else
2007-07-31 16:24:26 +02:00
print -u$ZTST_fd 'Warning: Not testing [[ -p pipe ]] (cannot create FIFO)'
2001-05-28 18:33:54 +02:00
[[ ! -p zerolength ]]
fi
2001-04-02 14:32:27 +02:00
fi
2001-05-28 18:33:54 +02:00
0dD:-p cond
2001-04-02 14:32:27 +02:00
2001-08-22 17:59:27 +02:00
if (( EUID == 0 )); then
2007-07-31 16:24:26 +02:00
print -u$ZTST_fd 'Warning: Not testing [[ ! -r file ]] (root reads anything)'
2001-08-22 17:59:27 +02:00
[[ -r zerolength && -r unmodish ]]
elif [[ $OSTYPE = cygwin ]]; then
print -u$ZTST_fd 'Warning: Not testing [[ ! -r file ]]
(all files created by user may be readable)'
[[ -r zerolength ]]
2001-08-22 17:59:27 +02:00
else
[[ -r zerolength && ! -r unmodish ]]
fi
2001-04-02 14:32:27 +02:00
0:-r cond
[[ -s nonzerolength && ! -s zerolength ]]
0:-s cond
# no simple way of guaranteeing test for -t
[[ -u modish && ! -u zerolength ]]
0:-u cond
[[ -x cmd.exe && ! -x zerolength ]]
2001-04-02 14:32:27 +02:00
0:-x cond
[[ -z $bar && -z '' && ! -z $foo ]]
0:-z cond
[[ -L link && ! -L zerolength ]]
0:-L cond
# hard to guarantee a file not owned by current uid
[[ -O zerolength ]]
0:-O cond
[[ -G zerolength ]]
0:-G cond
# can't be bothered with -S
print -u $ZTST_fd 'This test takes two seconds...'
sleep 2
cat unmodified
touch newnewnew
if [[ $OSTYPE == "cygwin" ]]; then
2007-07-31 16:24:26 +02:00
print -u$ZTST_fd "Warning: not testing [[ -N file ]] (not supported on Cygwin)"
true
elif [[ "$(find . -prune -fstype nfs 2>/dev/null)" == "." ]]; then
2007-07-31 16:24:26 +02:00
print -u$ZTST_fd "Warning: not testing [[ -N file ]] (not supported with NFS)"
true
elif test -f /etc/mtab && { grep $(df . 2>/dev/null| tail -n1 | awk '{print $1}') /etc/mtab | grep -q noatime; }; then
print -u$ZTST_fd "Warning: not testing [[ -N file ]] (not supported with noatime file system)"
true
else
[[ -N newnewnew && ! -N unmodified ]]
fi
2001-04-02 14:32:27 +02:00
0:-N cond
F:This test can fail on NFS-mounted filesystems as the access and
F:modification times are not updated separately. The test will fail
F:on HFS+ (Apple Mac OS X default) filesystems because access times
F:are not recorded. Also, Linux ext3 filesystems may be mounted
F:with the noatime option which does not update access times.
F:Failures in these cases do not indicate a problem in the shell.
2001-04-02 14:32:27 +02:00
[[ newnewnew -nt zerolength && ! (unmodified -nt zerolength) ]]
0:-nt cond
[[ zerolength -ot newnewnew && ! (zerolength -ot unmodified) ]]
0:-ot cond
[[ link -ef zerolength && ! (link -ef nonzerolength) ]]
0:-ef cond
[[ foo = foo && foo != bar && foo == foo && foo != '' ]]
0:=, == and != conds
[[ bar < foo && foo > bar ]]
0:< and > conds
[[ $(( 3 + 4 )) -eq 0x07 && $(( 5 * 2 )) -ne 0x10 ]]
0:-eq and -ne conds
[[ 3 -lt 04 && 05 -gt 2 ]]
0:-lt and -gt conds
[[ 3 -le 3 && ! (4 -le 3) ]]
0:-le cond
[[ 3 -ge 3 && ! (3 -ge 4) ]]
0:-ge cond
[[ 1 -lt 2 || 2 -lt 2 && 3 -gt 4 ]]
0:|| and && in conds
if ! grep '#define PATH_DEV_FD' $ZTST_testdir/../config.h; then
2007-07-31 16:24:26 +02:00
print -u$ZTST_fd "Warning: not testing [[ -e /dev/fd/0 ]] (/dev/fd not supported)"
true
else
[[ -e /dev/fd/0 ]]
fi
0dD:/dev/fd support in conds handled by access
2001-04-02 14:32:27 +02:00
if ! grep '#define PATH_DEV_FD' $ZTST_testdir/../config.h; then
2007-07-31 16:24:26 +02:00
print -u$ZTST_fd "Warning: not testing [[ -O /dev/fd/0 ]] (/dev/fd not supported)"
true
else
[[ -O /dev/fd/0 ]]
fi
0dD:/dev/fd support in conds handled by stat
2001-04-02 14:32:27 +02:00
[[ ( -z foo && -z foo ) || -z foo ]]
1:complex conds with skipping
[ '' != bar -a '' = '' ]
0:strings with `[' builtin
[ `echo 0` -lt `echo 1` ]
0:substitution in `[' builtin
[ -n foo scrimble ]
1:argument checking for [ builtin
?(eval):[:1: too many arguments
test -n foo scramble
1:argument checking for test builtin
?(eval):test:1: too many arguments
[ -n foo scrimble scromble ]
1:argument checking for [ builtin
?(eval):[:1: too many arguments
test -n foo scramble scrumble
1:argument checking for test builtin
?(eval):test:1: too many arguments
[ -n foo -a -n bar scrimble ]
1:argument checking for [ builtin
?(eval):[:1: too many arguments
test -n foo -a -z "" scramble
1:argument checking for test builtin
?(eval):test:1: too many arguments
2005-02-02 18:03:50 +01:00
fn() {
# careful: first file must exist to trigger bug
[[ -e unmodified ]] || print Where\'s my file\?
[[ unmodified -nt NonExistentFile ]]
print status = $?
}
fn
0:-nt shouldn't abort on non-existent files
>status = 1
# core dumps on failure
if zmodload -i zsh/regex 2>/dev/null; then
echo >regex_test.sh 'if [[ $# = 1 ]]; then
if [[ $1 =~ /?[^/]+:[0-9]+:$ ]]; then
:
fi
fi
exit 0'
$ZTST_testdir/../Src/zsh -f ./regex_test.sh
fi
0:regex tests shouldn't crash
(if zmodload -i zsh/regex 2>/dev/null; then
string="this has stuff in it"
bad_regex=0
if [[ $string =~ "h([a-z]*) s([a-z]*) " ]]; then
if [[ "$MATCH $MBEGIN $MEND" != "has stuff 6 15" ]]; then
print -r "regex variables MATCH MBEGIN MEND:
'$MATCH $MBEGIN $MEND'
should be:
'has stuff 6 15'"
bad_regex=1
else
results=("as 7 8" "tuff 11 14")
for i in 1 2; do
if [[ "$match[$i] $mbegin[$i] $mend[$i]" != $results[i] ]]; then
print -r "regex variables match[$i] mbegin[$i] mend[$i]:
'$match[$i] $mbegin[$i] $mend[$i]'
should be
'$results[$i]'"
bad_regex=1
break
fi
done
fi
(( bad_regex )) || print OK
else
print -r "regex failed to match '$string'"
fi
else
# if it didn't load, tough, but not a test error
print OK
fi)
0:MATCH, MBEGIN, MEND, match, mbegin, mend
>OK
(if zmodload -i zsh/regex 2>/dev/null; then
if [[ a =~ a && b == b ]]; then
print OK
else
print "regex =~ inverted following test"
fi
else
# not a test error
print OK
fi)
0:regex infix operator should not invert following conditions
>OK
[[ -fail badly ]]
2:Error message for unknown prefix condition
?(eval):1: unknown condition: -fail
[[ really -fail badly ]]
2:Error message for unknown infix condition
?(eval):1: unknown condition: -fail
crashme() {
if [[ $1 =~ ^http:* ]]
then
url=${1#*=}
fi
}
which crashme
0:Regression test for examining code with regular expression match
>crashme () {
> if [[ $1 =~ ^http:* ]]
> then
> url=${1#*=}
> fi
>}
weirdies=(
'! -a !'
'! -o !'
'! -a'
'! -o'
'! -a ! -a !'
'! = !'
'! !'
'= -a o'
'! = -a o')
for w in $weirdies; do
eval test $w
print $?
done
0:test compatability weirdness: treat ! as a string sometimes
>0
>0
>1
>0
>0
>0
>1
>0
>1
foo=''
[[ $foo ]] || print foo is empty
foo=full
[[ $foo ]] && print foo is full
0:bash compatibility with single [[ ... ]] argument
>foo is empty
>foo is full
%clean
# This works around a bug in rm -f in some versions of Cygwin
chmod 644 unmodish