2016-10-21 09:19:33 +02:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
|
2020-10-15 04:55:57 +02:00
|
|
|
color_message() {
|
2018-01-09 19:15:08 +01:00
|
|
|
local color_code="$1" message="$2"
|
2018-08-03 02:14:50 +02:00
|
|
|
printf '\e[%sm%s\e[0m\n' "$color_code" "$message" >&2
|
2018-01-09 19:15:08 +01:00
|
|
|
}
|
2016-10-21 09:19:33 +02:00
|
|
|
|
2018-08-03 02:14:50 +02:00
|
|
|
loglevel=()
|
|
|
|
|
2020-10-15 04:55:57 +02:00
|
|
|
usage() {
|
2019-05-30 08:54:16 +02:00
|
|
|
cat <<EOF
|
|
|
|
usage:
|
|
|
|
--help, -h show this help message and exit
|
|
|
|
--loglevel=LEVEL, -L LEVEL log level (default: ERROR)
|
|
|
|
--skip-check-links skip checking of links
|
|
|
|
--skip-external-links skip checking of external links
|
|
|
|
EOF
|
|
|
|
}
|
|
|
|
|
2020-10-15 04:55:57 +02:00
|
|
|
args="$(getopt -o hL: --long help,loglevel:,skip-check-links,skip-external-links -- "$@")" \
|
|
|
|
|| {
|
|
|
|
usage >&2
|
|
|
|
exit 1
|
|
|
|
}
|
2019-05-30 08:54:16 +02:00
|
|
|
eval "set -- $args"
|
|
|
|
while true; do
|
|
|
|
case "$1" in
|
2020-10-15 04:55:57 +02:00
|
|
|
-h | --help)
|
|
|
|
usage
|
|
|
|
exit 0
|
|
|
|
;;
|
|
|
|
-L | --loglevel)
|
|
|
|
loglevel=("$1" "$2")
|
|
|
|
shift 2
|
|
|
|
;;
|
|
|
|
--skip-check-links)
|
|
|
|
skip_check_links=1
|
|
|
|
shift
|
|
|
|
;;
|
|
|
|
--skip-external-links)
|
|
|
|
skip_external_links=1
|
|
|
|
shift
|
|
|
|
;;
|
|
|
|
--)
|
|
|
|
shift
|
|
|
|
break
|
|
|
|
;;
|
|
|
|
*) exit 1 ;;
|
2019-05-30 08:54:16 +02:00
|
|
|
esac
|
|
|
|
done
|
2016-10-21 09:19:33 +02:00
|
|
|
|
2017-11-08 17:55:36 +01:00
|
|
|
cd "$(dirname "$0")"/../docs
|
2018-01-09 19:07:42 +01:00
|
|
|
|
2017-11-08 17:55:36 +01:00
|
|
|
# collapse_navigation is set to False in conf.py to improve sidebar navigation for users.
|
|
|
|
# However, we must change its value to True before we begin testing links.
|
|
|
|
# Otherwise, sphinx would generate a large number of links we don't need to test.
|
|
|
|
# The crawler would take a very long time to finish and TravisCI would fail as a result.
|
2019-12-03 02:45:19 +01:00
|
|
|
make clean html O='-D html_theme_options.collapse_navigation=True'
|
2016-10-21 09:19:33 +02:00
|
|
|
|
2019-04-23 00:46:04 +02:00
|
|
|
err=0
|
|
|
|
|
|
|
|
check() {
|
|
|
|
if "$@"; then
|
|
|
|
color_message 92 "Passed!"
|
|
|
|
else
|
|
|
|
color_message 91 "Failed!"
|
|
|
|
err=1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
color_message 94 "Validating HTML..."
|
|
|
|
check java -jar ../node_modules/vnu-jar/build/dist/vnu.jar \
|
|
|
|
--filterfile ../tools/documentation.vnufilter \
|
|
|
|
--skip-non-html \
|
|
|
|
_build/html
|
|
|
|
|
2018-01-09 19:44:21 +01:00
|
|
|
if [ -n "$skip_check_links" ]; then
|
|
|
|
color_message 94 "Skipped testing links in documentation."
|
2018-12-29 15:38:20 +01:00
|
|
|
else
|
2019-04-23 00:46:04 +02:00
|
|
|
cd ../tools/documentation_crawler
|
|
|
|
if [ -n "$skip_external_links" ]; then
|
|
|
|
color_message 94 "Testing only internal links in documentation..."
|
|
|
|
check scrapy crawl_with_status documentation_crawler -a skip_external=set "${loglevel[@]}"
|
|
|
|
# calling crawl directly as parameter needs to be passed
|
|
|
|
else
|
|
|
|
color_message 94 "Testing links in documentation..."
|
|
|
|
check scrapy crawl_with_status documentation_crawler "${loglevel[@]}"
|
|
|
|
fi
|
2018-12-05 05:42:46 +01:00
|
|
|
fi
|
|
|
|
|
2019-04-23 00:46:04 +02:00
|
|
|
exit "$err"
|