2014-10-02 23:32:16 +00:00
|
|
|
# vim: set filetype=fish:
|
2013-06-17 06:26:43 +00:00
|
|
|
# ensure that builtins that produce no output can still truncate files
|
|
|
|
# (bug PCA almost reintroduced!)
|
|
|
|
echo "Testing that builtins can truncate files"
|
2016-02-07 02:08:22 +00:00
|
|
|
echo abc > ../test/temp/file_truncation_test.txt
|
|
|
|
cat ../test/temp/file_truncation_test.txt
|
|
|
|
echo -n > ../test/temp/file_truncation_test.txt
|
|
|
|
cat ../test/temp/file_truncation_test.txt
|
2013-06-17 06:26:43 +00:00
|
|
|
|
2012-12-19 14:56:19 +00:00
|
|
|
# Test events.
|
|
|
|
|
2013-06-17 06:26:43 +00:00
|
|
|
|
2012-12-19 14:56:19 +00:00
|
|
|
# This pattern caused a crash; github issue #449
|
|
|
|
|
|
|
|
set -g var before
|
|
|
|
|
|
|
|
function test1 --on-event test
|
|
|
|
set -g var $var:test1
|
|
|
|
functions -e test2
|
|
|
|
end
|
|
|
|
|
|
|
|
function test2 --on-event test
|
|
|
|
# this should not run, as test2 gets removed before it has a chance of running
|
|
|
|
set -g var $var:test2a
|
|
|
|
end
|
|
|
|
emit test
|
|
|
|
|
|
|
|
echo $var
|
|
|
|
|
|
|
|
|
|
|
|
function test3 --on-event test3
|
|
|
|
echo received event test3 with args: $argv
|
|
|
|
end
|
|
|
|
|
|
|
|
emit test3 foo bar
|
2012-12-22 17:38:28 +00:00
|
|
|
|
|
|
|
# test empty argument
|
2013-06-17 06:26:43 +00:00
|
|
|
emit
|
2013-12-29 06:52:06 +00:00
|
|
|
|
|
|
|
echo "Test break and continue"
|
|
|
|
# This should output Ping once
|
|
|
|
for i in a b c
|
|
|
|
if not contains $i c ; continue ; end
|
|
|
|
echo Ping
|
|
|
|
end
|
|
|
|
|
|
|
|
# This should output Pong not at all
|
|
|
|
for i in a b c
|
|
|
|
if not contains $i c ; break ; end
|
|
|
|
echo Pong
|
|
|
|
end
|
|
|
|
|
|
|
|
# This should output Foop three times, and Boop not at all
|
|
|
|
set i a a a
|
|
|
|
while contains $i a
|
|
|
|
set -e i[-1]
|
|
|
|
echo Foop
|
|
|
|
continue
|
|
|
|
echo Boop
|
|
|
|
end
|
|
|
|
|
|
|
|
# This should output Doop once
|
|
|
|
set i a a a
|
|
|
|
while contains $i a
|
|
|
|
set -e i[-1]
|
|
|
|
echo Doop
|
|
|
|
break
|
|
|
|
echo Darp
|
|
|
|
end
|
|
|
|
|
2013-12-30 00:23:26 +00:00
|
|
|
# Test implicit cd. This should do nothing.
|
|
|
|
./
|
2013-12-29 06:52:06 +00:00
|
|
|
|
2014-02-22 02:20:51 +00:00
|
|
|
# Test special for loop expansion
|
|
|
|
# Here we the name of the variable is derived from another variable
|
|
|
|
echo "Testing for loop"
|
|
|
|
set var1 var2
|
|
|
|
for $var1 in 1 2 3
|
|
|
|
echo -n $var2
|
|
|
|
end
|
|
|
|
echo
|
|
|
|
|
2014-03-02 00:04:13 +00:00
|
|
|
# Test status -n
|
|
|
|
eval 'status -n
|
|
|
|
status -n
|
|
|
|
status -n'
|
|
|
|
|
2014-04-02 07:32:08 +00:00
|
|
|
# Test psub
|
|
|
|
cat (echo foo | psub)
|
|
|
|
cat (echo bar | psub)
|
|
|
|
cat (echo baz | psub)
|
|
|
|
|
2014-10-02 23:32:16 +00:00
|
|
|
set -l filename (echo foo | psub)
|
|
|
|
if test -e $filename
|
|
|
|
echo 'psub file was not deleted'
|
|
|
|
else
|
|
|
|
echo 'psub file was deleted'
|
|
|
|
end
|
|
|
|
|
2015-02-16 12:28:11 +00:00
|
|
|
if count (echo foo | psub -s .cc | grep -o '\.cc$') >/dev/null
|
|
|
|
echo 'psub filename ends with .cc'
|
|
|
|
else
|
|
|
|
echo 'psub filename does not end with .cc'
|
|
|
|
end
|
|
|
|
|
|
|
|
if count (echo foo | psub -f -s .cc | grep -o '\.cc$') >/dev/null
|
|
|
|
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
|
|
|
|
|
|
|
|
diff -q (__fish_print_help psub | psub) (psub -hs banana | psub)
|
|
|
|
|
2014-10-14 07:37:01 +00:00
|
|
|
# Test support for unbalanced blocks
|
|
|
|
function try_unbalanced_block
|
2016-02-07 02:08:22 +00:00
|
|
|
../test/root/bin/fish -c "echo $argv | source " 2>&1 | grep "Missing end" 1>&2
|
2014-10-14 07:37:01 +00:00
|
|
|
end
|
|
|
|
try_unbalanced_block 'begin'
|
|
|
|
try_unbalanced_block 'while true'
|
|
|
|
try_unbalanced_block 'for x in 1 2 3'
|
|
|
|
try_unbalanced_block 'switch abc'
|
|
|
|
try_unbalanced_block 'function anything'
|
|
|
|
try_unbalanced_block 'if false'
|
|
|
|
|
2014-10-15 19:49:02 +00:00
|
|
|
# Ensure that quoted keywords work
|
|
|
|
'while' false; end
|
|
|
|
"while" false; end
|
|
|
|
"wh"'ile' false; "e"nd
|
|
|
|
|
2014-11-01 23:25:28 +00:00
|
|
|
# BOM checking (see #1518)
|
2014-11-02 07:14:16 +00:00
|
|
|
# But only in UTF8
|
2015-09-09 18:55:04 +00:00
|
|
|
if locale | __fish_sgrep -q -i utf-8
|
2014-11-02 07:14:16 +00:00
|
|
|
echo \uFEFF"echo bom_test" | source
|
|
|
|
else
|
|
|
|
echo "echo bom_test" | source
|
|
|
|
end
|
2014-11-01 23:25:28 +00:00
|
|
|
|
2014-11-02 04:06:16 +00:00
|
|
|
# Comments abutting text (#953)
|
|
|
|
echo not#a#comment
|
|
|
|
echo is # a # comment
|