2017-07-17 21:33:51 +00:00
|
|
|
# Test psub behavior
|
|
|
|
set -l filename (echo foo | psub --testing)
|
|
|
|
test -f $filename
|
|
|
|
or echo 'psub is not a regular file' >&2
|
|
|
|
rm $filename
|
|
|
|
|
|
|
|
set -l filename (echo foo | psub --testing --file)
|
|
|
|
test -f $filename
|
|
|
|
or echo 'psub is not a regular file' >&2
|
|
|
|
rm $filename
|
|
|
|
|
|
|
|
set -l filename (echo foo | psub --testing --fifo)
|
|
|
|
test -p $filename
|
|
|
|
or echo 'psub is not a fifo' >&2
|
2017-12-21 23:47:09 +00:00
|
|
|
# hack: the background write that psub peforms may block
|
|
|
|
# until someone opens the fifo for reading. So make sure we
|
|
|
|
# actually read it.
|
|
|
|
cat $filename > /dev/null
|
2017-07-17 21:33:51 +00:00
|
|
|
rm $filename
|
|
|
|
|
|
|
|
cat (echo foo | psub)
|
|
|
|
cat (echo bar | psub --fifo)
|
|
|
|
cat (echo baz | psub)
|
|
|
|
|
|
|
|
set -l filename (echo foo | psub)
|
|
|
|
if test -e $filename
|
|
|
|
echo 'psub file was not deleted'
|
|
|
|
else
|
|
|
|
echo 'psub file was deleted'
|
|
|
|
end
|
|
|
|
|
|
|
|
# The --file flag is the default behavior.
|
2019-01-02 19:54:14 +00:00
|
|
|
if count (echo foo | psub -s .cc | string match -r '\.cc$') >/dev/null
|
2017-07-17 21:33:51 +00:00
|
|
|
echo 'psub filename ends with .cc'
|
|
|
|
else
|
|
|
|
echo 'psub filename does not end with .cc'
|
|
|
|
end
|
|
|
|
|
|
|
|
# Make sure we get the same result if we explicitly ask for a temp file.
|
2019-01-02 19:54:14 +00:00
|
|
|
if count (echo foo | psub -f -s .cc | string match -r '\.cc$') >/dev/null
|
2017-07-17 21:33:51 +00:00
|
|
|
echo 'psub filename ends with .cc'
|
|
|
|
else
|
|
|
|
echo 'psub filename does not end with .cc'
|
|
|
|
end
|
|
|
|
|
|
|
|
set -l filename (echo foo | psub -s .fish)
|
|
|
|
if test -e (dirname $filename)
|
|
|
|
echo 'psub directory was not deleted'
|
|
|
|
else
|
|
|
|
echo 'psub directory was deleted'
|
|
|
|
end
|
|
|
|
|
2019-01-02 19:54:14 +00:00
|
|
|
set -l diffs (comm -3 (__fish_print_help psub | psub) (psub -hs banana | psub))
|
|
|
|
test -z "$diffs"
|