2014-09-08 02:11:34 +00:00
|
|
|
# Interactive tests using `expect`
|
2016-02-07 02:08:22 +00:00
|
|
|
#
|
|
|
|
# There is no shebang line because you shouldn't be running this by hand. You
|
|
|
|
# should be running it via `make test` to ensure the environment is properly
|
|
|
|
# setup.
|
2014-09-08 02:11:34 +00:00
|
|
|
|
2018-02-06 17:36:47 +00:00
|
|
|
if test "$TRAVIS_OS_NAME" = osx
|
|
|
|
echo "Skipping interactive tests on macOS on Travis"
|
|
|
|
exit 0
|
|
|
|
end
|
|
|
|
|
2017-01-29 04:37:32 +00:00
|
|
|
# Set this var to modify behavior of the code being tests. Such as avoiding running
|
|
|
|
# `fish_update_completions` when running tests.
|
2018-12-16 16:46:21 +00:00
|
|
|
set -gx FISH_UNIT_TESTS_RUNNING 1
|
2017-01-29 04:37:32 +00:00
|
|
|
|
2015-12-23 23:24:45 +00:00
|
|
|
# Change to directory containing this script
|
2020-06-14 17:11:57 +00:00
|
|
|
cd (status dirname)
|
2015-12-23 23:24:45 +00:00
|
|
|
|
2016-09-20 05:08:33 +00:00
|
|
|
# These env vars should not be inherited from the user environment because they can affect the
|
|
|
|
# behavior of the tests. So either remove them or set them to a known value.
|
|
|
|
# See also tests/test.fish.
|
2018-12-16 16:46:21 +00:00
|
|
|
set -gx TERM xterm
|
2016-09-20 05:08:33 +00:00
|
|
|
set -e ITERM_PROFILE
|
|
|
|
|
2020-06-13 17:28:42 +00:00
|
|
|
# Test files specified on commandline, or all pexpect files.
|
2015-12-23 23:24:45 +00:00
|
|
|
if set -q argv[1]
|
2020-03-02 23:20:29 +00:00
|
|
|
set pexpect_files_to_test pexpects/$argv.py
|
2015-12-23 23:24:45 +00:00
|
|
|
else
|
2020-03-02 23:20:29 +00:00
|
|
|
set pexpect_files_to_test pexpects/*.py
|
2015-12-23 23:24:45 +00:00
|
|
|
end
|
|
|
|
|
2018-04-01 20:43:05 +00:00
|
|
|
source test_util.fish (status -f) $argv
|
|
|
|
or exit
|
|
|
|
cat interactive.config >>$XDG_CONFIG_HOME/fish/config.fish
|
2014-09-23 23:29:36 +00:00
|
|
|
|
|
|
|
say -o cyan "Testing interactive functionality"
|
2020-03-02 23:20:29 +00:00
|
|
|
function test_pexpect_file
|
|
|
|
set -l file $argv[1]
|
|
|
|
echo -n "Testing file $file ... "
|
|
|
|
|
|
|
|
begin
|
|
|
|
set starttime (timestamp)
|
|
|
|
set -lx TERM dumb
|
|
|
|
|
|
|
|
# Help the script find the pexpect_helper module in our parent directory.
|
|
|
|
set -lx --prepend PYTHONPATH (realpath $PWD/..)
|
|
|
|
set -lx fish ../test/root/bin/fish
|
|
|
|
set -lx fish_key_reader ../test/root/bin/fish_key_reader
|
|
|
|
set -lx fish_test_helper ../test/root/bin/fish_test_helper
|
|
|
|
|
|
|
|
# Note we require Python3.
|
|
|
|
python3 $file
|
|
|
|
end
|
|
|
|
|
|
|
|
set -l exit_status $status
|
|
|
|
if test "$exit_status" -eq 0
|
|
|
|
set test_duration (delta $starttime)
|
|
|
|
say green "ok ($test_duration $unit)"
|
|
|
|
end
|
|
|
|
return $exit_status
|
|
|
|
end
|
|
|
|
|
2016-04-11 23:47:46 +00:00
|
|
|
set failed
|
2020-03-02 23:20:29 +00:00
|
|
|
|
|
|
|
if not python3 -c 'import pexpect'
|
|
|
|
say red "pexpect tests disabled: `python3 -c 'import pexpect'` failed"
|
|
|
|
set pexpect_files_to_test
|
|
|
|
end
|
|
|
|
for i in $pexpect_files_to_test
|
|
|
|
if not test_pexpect_file $i
|
|
|
|
set failed $failed $i
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-10-02 19:31:46 +00:00
|
|
|
set failed (count $failed)
|
2014-09-23 23:29:36 +00:00
|
|
|
if test $failed -eq 0
|
2020-03-28 17:41:44 +00:00
|
|
|
say green "All interactive tests completed successfully"
|
2014-09-23 23:29:36 +00:00
|
|
|
exit 0
|
|
|
|
else
|
2014-09-24 05:50:28 +00:00
|
|
|
set plural (test $failed -eq 1; or echo s)
|
|
|
|
say red "$failed test$plural failed"
|
2014-09-23 23:29:36 +00:00
|
|
|
exit 1
|
|
|
|
end
|