mirror of
https://github.com/octoleo/telegram-bot-bash.git
synced 2024-11-06 01:47:49 +00:00
39 lines
988 B
Bash
Executable File
39 lines
988 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#### $$VERSION$$ v0.90-dev-0-g75691dc
|
|
|
|
# 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
|
|
# shellcheck source=./bashbot.sh
|
|
source "${TESTDIR}/commands.sh" source
|
|
|
|
# overwrite get_file for test
|
|
get_file() {
|
|
echo "$1"
|
|
}
|
|
|
|
# get telegram input from file
|
|
export UPDATE UPD
|
|
UPDATE="$(cat "${INPUTFILE}")"
|
|
declare -A UPD
|
|
source <( printf 'UPD=( %s )' "$(sed <<<"${UPDATE}" -E -e 's/\t/=/g' -e 's/=(true|false)/="\1"/')" )
|
|
|
|
# run process_message
|
|
echo "Check process_message ..."
|
|
set -x
|
|
{ process_message "0"; set +x; } >>"${LOGFILE}" 2>&1;
|
|
|
|
# output processed input
|
|
print_array "USER" "CHAT" "REPLYTO" "FORWARD" "URLS" "CONTACT" "CAPTION" "LOCATION" "MESSAGE" "VENUE" >"${OUTPUTFILE}"
|
|
diff -c "${REFFILE}" "${OUTPUTFILE}" || exit 1
|
|
echo "${SUCCESS}"
|
|
|
|
cd "${DIRME}" || exit 1
|