web/tools/test.sh

68 lines
1.1 KiB
Bash
Raw Normal View History

2021-01-25 01:20:51 +03:00
#!/usr/bin/env bash
2020-01-20 19:32:20 +03:00
#
# Using HTML-proofer to test site.
#
# Requirement: https://github.com/gjtorikian/html-proofer
#
# Usage: bash /path/to/test.sh [indicated path]
2020-01-20 19:32:20 +03:00
DEST=_site
URL_IGNORE=cdn.jsdelivr.net
2020-11-19 15:39:02 +03:00
_build=false
help() {
echo "Usage:"
echo
echo " bash ./tools/test.sh [options]"
echo
echo "Options:"
2020-11-20 10:59:35 +03:00
echo " --build Run Jekyll build before test."
echo " -d, --dir <path> Specify the test path."
echo " -h, --help Print this information."
2020-11-19 15:39:02 +03:00
}
if [[ -n $1 && -d $1 ]]; then
DEST=$1
fi
2020-11-19 15:39:02 +03:00
while (($#)); do
opt="$1"
case $opt in
--build)
_build=true
shift
;;
2020-11-20 10:59:35 +03:00
-d | --dir)
if [[ ! -d $2 ]]; then
echo -e "Error: path '$2' doesn't exist\n"
help
exit 1
fi
DEST=$2
shift
shift
;;
2020-11-19 15:39:02 +03:00
-h | --help)
help
exit 0
;;
*)
# unknown option
help
exit 1
;;
esac
done
if $_build; then
JEKYLL_ENV=production bundle exec jekyll b
fi
2020-12-18 15:54:18 +03:00
bundle exec htmlproofer "$DEST" \
2020-01-20 19:32:20 +03:00
--disable-external \
--check-html \
--empty_alt_ignore \
--allow_hash_href \
--url_ignore $URL_IGNORE