1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320
|
#!/bin/bash
##
# Test that the invocation of the fish executable works as we hope.
#
# We try to run the 'fish' binary with different command line switches.
# Each time we check against an output that we expect.
#
# We are testing fish's invocation itself, so this is not written in
# fish itself - if the invocation wasn't working, we'd never even
# be able to use this test to check that the invocation wasn't working.
#
# What we test...
#
# * The environment is cleaned so that (hopefully) differences in
# the host terminal, language or user settings do not affect the
# tests.
#
# * The files 'tests/invocation/*.invoke' contain the arguments that
# will be passed to the 'fish' command under test. The arguments
# may be split over multiple lines for clarity.
#
# * Before execution, if the file 'tests/invocation/<name>.config'
# exists, it will be copied as the 'config.fish' file in the
# configuration directory.
#
# * The stdout and stderr are captured into files and will be
# processed before comparison with the
# 'tests/invocation/<name>.(out|err)' files. A missing file is
# considered to be no output.
# Either file may be given a further suffix of '.<system name>'
# which will be used in preference to the default. This allows
# the expected output to change depending on the system being
# used - to allow for differences in behaviour.
# The '<system name>' can be found with 'uname -s'.
# This facility should be used sparingly as system differences
# will confuse users.
#
# * The file 'tests/invocation/<name>.grep' is used to select the
# sections of the file we are interested in within the stdout.
# Only the parts that match will be compared to the '*.out' file.
# This can be used to filter out changeable parts of the output
# leaving just the parts we are interested in.
#
# * The stderr output will have the 'RC: <return code>' appended
# if the command returned a non-zero value.
# The stderr output will have the 'XDG_CONFIG_HOME' location
# substituted, to allow error reports to be compared consistently.
#
# * If the processed output differs from the supplied output,
# the test will fail, and the differences will be shown on the
# console.
#
# * If anything fails, the return code for this script will be
# non-zero.
#
# Errors will be fatal
set -e
# If any command in the pipeline fails report the rc of the first fail.
set -o pipefail
# If nothing matches a glob expansion, return nothing (not the glob
# itself)
shopt -s nullglob
# The directory this script is in (as everything is relative to here)
here="$(cd "$(dirname "$0")" && pwd -P)"
cd "$here"
# The temporary directory to use
temp_dir="$here/../test"
# The files we're going to execute are in the 'invocation' directory.
files_to_test=($(echo invocation/*.invoke))
# The fish binary we are testing - for manual testing, may be overridden
fish_exe="${fish_exe:-../test/root/bin/fish}"
fish_dir="$(dirname "${fish_exe}")"
fish_leaf="$(basename "${fish_exe}")"
# Terminal colouring
term_red="$(tput setaf 1)"
term_green="$(tput setaf 2)"
term_yellow="$(tput setaf 3)"
term_blue="$(tput setaf 4)"
term_magenta="$(tput setaf 5)"
term_cyan="$(tput setaf 6)"
term_white="$(tput setaf 7)"
term_reset="$(tput sgr0)"
# Which system are we on.
# fish has slightly different behaviour depending on the system it is
# running on (and the libraries that it is linked with), so for special
# cases, we'll use a suffixed file.
system_name="$(uname -s)"
# Check whether we have the 'colordiff' tool - if not, we'll revert to
# boring regular 'diff'.
if [ "$(type -t colordiff)" != '' ] ; then
difftool='colordiff'
else
difftool='diff'
fi
##
# Set variables to known values so that they will not affect the
# execution of the test.
function clean_environment() {
# Reset the terminal variables to a known type.
export TERM=xterm
unset ITERM_PROFILE
# And the language as well, so that we do not see differences in
# output dur to the user's locale
export LANGUAGE=en_US:en
# Ensure that the fish environment we use is in a clean state
rm -rf "${temp_dir}/data" "${temp_dir}/home"
mkdir -p "${temp_dir}/data" "${temp_dir}/home" "${temp_dir}/home/fish"
export XDG_DATA_HOME="${temp_dir}/data"
export XDG_CONFIG_HOME="${temp_dir}/home"
}
##
# Fail completely :-(
function fail() {
say red "FAIL: $*" >&2
exit 1
}
##
# Coloured output
function say() {
local color_name="$1"
local msg="$2"
local color_var="term_${color_name}"
local color="${!color_var}"
echo "$color$msg$term_reset"
}
##
# Actual testing of a .invoke file.
function test_file() {
local file="$1"
local dir="$(dirname "$file")"
local base="$(basename "$file" .invoke)"
local test_config="${dir}/${base}.config"
local test_stdout="${dir}/${base}.tmp.out"
local test_stderr="${dir}/${base}.tmp.err"
local want_stdout="${dir}/${base}.out"
local grep_stdout="${dir}/${base}.grep"
local want_stderr="${dir}/${base}.err"
local empty="${dir}/${base}.empty"
local -a filter
local rc=0
local test_args_literal
local test_args
local out_status=0
local err_status=0
# Literal arguments, for printing
test_args_literal="$(cat "$file")"
# Read the test arguments, escaping things that might be processed by us
test_args="$(sed 's/\$/\$/' "$file" | tr '\n' ' ')"
# Select system-specific files if they are present.
system_specific=
if [ -f "${test_config}.${system_name}" ] ; then
test_config="${test_config}.${system_name}"
system_specific=true
fi
if [ -f "${want_stdout}.${system_name}" ] ; then
want_stdout="${want_stdout}.${system_name}"
system_specific=true
fi
if [ -f "${want_stderr}.${system_name}" ] ; then
want_stderr="${want_stderr}.${system_name}"
system_specific=true
fi
if [ -f "${grep_stdout}.${system_name}" ] ; then
grep_stdout="${grep_stdout}.${system_name}"
system_specific=true
fi
# Create an empty file so that we can compare against it if needed
echo -n > "${empty}"
# If they supplied a configuration file, we create it here
if [ -f "$test_config" ] ; then
cat "$test_config" > "${temp_dir}/home/fish/config.fish"
else
rm -f "${temp_dir}/home/fish/config.fish"
fi
# In some cases we want to check only a part of the output.
# For those we filter the output through grep'd matches.
if [ -f "$grep_stdout" ] ; then
# grep '-o', '-E' and '-f' are supported by the tools in modern GNU
# environments, and on OS X.
filter=('grep' '-o' '-E' '-f' "$grep_stdout")
else
filter=('cat')
fi
echo -n "Testing file $file ${system_specific:+($system_name specific) }... "
# The hoops we are jumping through here, with changing directory are
# so that we always execute fish as './fish', which means that any
# error messages will appear the same, even if the tested binary
# is not one that we built here.
# We disable the exit-on-error here, so that we can catch the return
# code.
set +e
eval "cd \"$fish_dir\" && \"./$fish_leaf\" $test_args" \
2> "$test_stderr" \
< /dev/null \
| ${filter[*]} \
> "$test_stdout"
rc="$?"
set -e
if [ "$rc" != '0' ] ; then
# Write the return code on to the end of the stderr, so that it can be
# checked like anything else.
echo "RC: $rc" >> "${test_stderr}"
fi
# If the wanted output files are not present, they are assumed empty.
if [ ! -f "$want_stdout" ] ; then
want_stdout="$empty"
fi
if [ ! -f "$want_stderr" ] ; then
want_stderr="$empty"
fi
# The standard error that we get will report errors using non-relative
# filenames, so we try to replace these with the variable names.
#
# However, fish will also have helpfully translated the home directory
# into '~/' in the error report. Consequently, we need to perform a
# small fix-up so that we can replace the string sanely.
xdg_config_in_home="$XDG_CONFIG_HOME"
if [ "${xdg_config_in_home:0:${#HOME}}" = "${HOME}" ] ; then
xdg_config_in_home="~/${xdg_config_in_home:${#HOME}+1}"
fi
# 'sed -i' (inplace) has different syntax on BSD and GNU versions of
# the tool, so cannot be used here, hence we write to a separate file,
# and then move back.
sed "s,$xdg_config_in_home,\$XDG_CONFIG_HOME,g" "${test_stderr}" > "${test_stderr}.new"
mv -f "${test_stderr}.new" "${test_stderr}"
# Check the results
if ! diff "${test_stdout}" "${want_stdout}" >/dev/null 2>/dev/null ; then
out_status=1
fi
if ! diff "${test_stderr}" "${want_stderr}" >/dev/null 2>/dev/null ; then
err_status=1
fi
if [ "$out_status" = '0' ] && \
[ "$err_status" = '0' ] ; then
say green "ok"
# clean up tmp files
rm -f "${test_stdout}" "${test_stderr}" "${empty}"
rc=0
else
say red "fail"
say blue "$test_args_literal" | sed 's/^/ /'
if [ "$out_status" != '0' ] ; then
say yellow "Output differs for file $file. Diff follows:"
"$difftool" -u "${test_stdout}" "${want_stdout}"
fi
if [ "$err_status" != '0' ] ; then
say yellow "Error output differs for file $file. Diff follows:"
"$difftool" -u "${test_stderr}" "${want_stderr}"
fi
rc=1
fi
return $rc
}
########################################################################
# Main harness
if [ ! -x "${fish_exe}" ] ; then
fail "Fish executable not found at '${fish_exe}'"
fi
clean_environment
say cyan "Testing shell invocation functionality"
passed=0
failed=0
for file in ${files_to_test[*]} ; do
if ! test_file "$file" ; then
failed=$(( failed + 1 ))
else
passed=$(( passed + 1 ))
fi
done
echo "Encountered $failed errors in the invocation tests (out of $(( failed + passed )))."
if [ "$failed" != 0 ] ; then
exit 1
fi
exit 0
|