telegram-bot-bash/test/d-process_message-test.sh

41 lines
1.1 KiB
Bash
Raw Normal View History

#!/usr/bin/env bash
2019-05-10 19:44:13 +00:00
#### $$VERSION$$ v0.80-dev2-1-g0b36bc5
# include common functions and definitions
# shellcheck source=test/ALL-tests.inc.sh
source "./ALL-tests.inc.sh"
set -e
# source bashbot.sh functionw
cd "${TESTDIR}" || exit 1
# shellcheck source=./bashbot.sh
source "${TESTDIR}/bashbot.sh" source
2019-04-21 11:45:51 +00:00
# overwrite get_file for test
get_file() {
echo "$1"
}
2019-04-21 12:52:55 +00:00
# get telegram input from file
export UPDATE
UPDATE="$(cat "${INPUTFILE}")"
# run process_message with and without phyton
echo "Check process_message ..."
for i in 1 2
do
[ "${i}" = "1" ] && ! which python >/dev/null 2>&1 && continue
2019-04-23 16:11:24 +00:00
[ "${i}" = "1" ] && echo " ... with JsonDecode Phyton" && unset BASHBOT_DECODE
[ "${i}" = "2" ] && echo " ... with JsonDecode Bash" && export BASHBOT_DECODE="yes"
set -x
{ process_message "0"; set +x; } >>"${LOGFILE}" 2>&1;
# output processed input
2019-04-23 17:00:17 +00:00
print_array "USER" "CHAT" "REPLYTO" "FORWARD" "URLS" "CONTACT" "CAPTION" "LOCATION" "MESSAGE" "VENUE" >"${OUTPUTFILE}"
diff -c "${REFFILE}" "${OUTPUTFILE}" || exit 1
echo "${SUCCESS}"
done
2019-04-21 11:45:51 +00:00
cd "${DIRME}" || exit 1