1
1
mirror of https://github.com/walles/moar.git synced 2024-09-11 12:15:43 +03:00
moar/scripts/test-path-help.sh
2022-04-18 19:12:25 +02:00

29 lines
702 B
Bash
Executable File

#!/bin/bash
# Verify the PAGER= suggestion is correct in "moar --help" output.
#
# Ref: https://github.com/walles/moar/issues/88
set -e -o pipefail
MOAR="$(realpath "$1")"
if ! [ -x "$MOAR" ]; then
echo ERROR: Not executable: "$MOAR"
exit 1
fi
echo Testing PAGER= suggestion in moar --help output...
WORKDIR="$(mktemp -d -t moar-path-help-test.XXXXXXXX)"
# Put a symlink to $MOAR first in the $PATH
ln -s "$MOAR" "$WORKDIR/moar"
echo "moar" >"$WORKDIR/expected"
# Extract suggested PAGER value from moar --help
PATH="$WORKDIR" PAGER="" moar --help | grep PAGER | sed -E 's/.*=//' >"$WORKDIR/actual"
# Ensure it matches the symlink we have in $PATH
cd "$WORKDIR"
diff -u actual expected