2019-04-19 15:31:01 +00:00
|
|
|
#!/usr/bin/env bash
|
2019-05-13 09:24:42 +00:00
|
|
|
#### $$VERSION$$ v0.80-dev2-7-g92f022d
|
2019-04-19 15:31:01 +00:00
|
|
|
|
2019-04-21 09:34:17 +00:00
|
|
|
# include common functions and definitions
|
|
|
|
# shellcheck source=test/ALL-tests.inc.sh
|
|
|
|
source "./ALL-tests.inc.sh"
|
2019-04-20 19:09:36 +00:00
|
|
|
|
|
|
|
TESTTOKEN="bashbottestscript"
|
2019-04-21 09:34:17 +00:00
|
|
|
TESTFILES="${TOKENFILE} ${ACLFILE} ${COUNTFILE} ${ADMINFILE}"
|
2019-04-19 17:24:30 +00:00
|
|
|
|
2019-04-19 15:31:01 +00:00
|
|
|
set -e
|
|
|
|
|
|
|
|
# run bashbot first time with init
|
2019-04-20 19:09:36 +00:00
|
|
|
"${TESTDIR}/bashbot.sh" init >"${LOGFILE}" <<EOF
|
2019-04-19 17:24:30 +00:00
|
|
|
$TESTTOKEN
|
2019-04-19 15:31:01 +00:00
|
|
|
nobody
|
|
|
|
botadmin
|
|
|
|
EOF
|
2019-04-21 09:34:17 +00:00
|
|
|
echo "${SUCCESS}"
|
2019-04-19 17:24:30 +00:00
|
|
|
|
2019-04-20 19:09:36 +00:00
|
|
|
# compare files with refrence files
|
2019-04-20 19:31:05 +00:00
|
|
|
echo "Check new files after init ..."
|
|
|
|
export FAIL="0"
|
2019-04-20 19:09:36 +00:00
|
|
|
for file in ${TESTFILES}
|
2019-04-19 17:24:30 +00:00
|
|
|
do
|
2019-04-20 19:09:36 +00:00
|
|
|
ls -d "${TESTDIR}/${file}" >>"${LOGFILE}"
|
2019-04-21 09:34:17 +00:00
|
|
|
if ! diff -q "${TESTDIR}/${file}" "${REFDIR}/${file}" >>"${LOGFILE}"; then echo "${NOSUCCESS} Fail diff ${file}!"; FAIL="1"; fi
|
2019-04-20 19:09:36 +00:00
|
|
|
|
2019-04-19 17:24:30 +00:00
|
|
|
done
|
2019-04-20 19:31:05 +00:00
|
|
|
[ "${FAIL}" != "0" ] && exit "${FAIL}"
|
2019-04-21 09:34:17 +00:00
|
|
|
echo "${SUCCESS}"
|
2019-04-19 17:24:30 +00:00
|
|
|
|
2019-04-20 14:26:16 +00:00
|
|
|
echo "Test Sourcing of bashbot.sh ..."
|
|
|
|
trap exit 1 EXIT
|
2019-04-20 19:09:36 +00:00
|
|
|
cd "${TESTDIR}" || exit
|
2019-04-20 14:26:16 +00:00
|
|
|
|
|
|
|
# shellcheck source=./bashbot.sh
|
2019-04-20 19:09:36 +00:00
|
|
|
source "${TESTDIR}/bashbot.sh" source
|
2019-05-13 09:24:42 +00:00
|
|
|
source "${TESTDIR}/commands.sh" source
|
|
|
|
|
2019-04-20 14:26:16 +00:00
|
|
|
trap '' EXIT
|
2019-04-20 19:09:36 +00:00
|
|
|
cd "${DIRME}" || exit 1
|
2019-04-21 09:34:17 +00:00
|
|
|
echo "${SUCCESS}"
|
2019-04-20 19:09:36 +00:00
|
|
|
|
|
|
|
echo "Test bashbot.sh count"
|
|
|
|
cp "${REFDIR}/count.test" "${TESTDIR}/count"
|
|
|
|
"${TESTDIR}/bashbot.sh" count
|
2019-04-20 19:31:05 +00:00
|
|
|
|