mirror of
https://github.com/octoleo/telegram-bot-bash.git
synced 2024-11-11 03:50:54 +00:00
62 lines
1.6 KiB
Bash
Executable File
62 lines
1.6 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
#===============================================================================
|
|
#
|
|
# FILE: d-process_message-test.sh
|
|
#
|
|
# USAGE: must run only from dev/all-tests.sh
|
|
#
|
|
# DESCRIPTION: test receiving messages
|
|
#
|
|
# LICENSE: WTFPLv2 http://www.wtfpl.net/txt/copying/
|
|
# AUTHOR: KayM (gnadelwartz), kay@rrr.de
|
|
#
|
|
#### $$VERSION$$ v1.45-dev-22-g6b07242
|
|
#===============================================================================
|
|
|
|
# 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() {
|
|
printf "%s\n" "$1"
|
|
}
|
|
|
|
# get telegram input from file
|
|
export UPDATE
|
|
declare -Ax UPD
|
|
|
|
# run process_message --------------
|
|
ARRAYS="USER CHAT REPLYTO FORWARD URLS CONTACT CAPTION LOCATION MESSAGE VENUE SERVICE NEWMEMBER LEFTMEMBER PINNED"
|
|
|
|
printf "Check process_message ...\n"
|
|
|
|
for testfile in ${INPUTFILELIST}
|
|
do
|
|
printf " ... %s\n" "${testfile##*/}"
|
|
testref="${testfile%.input}.result"
|
|
UPDATE="$(< "${testfile}")"
|
|
Json2Array 'UPD' <"${testfile}"
|
|
set -x
|
|
{ pre_process_message "0"; process_message "0"; set +x; } >>"${LOGFILE}" 2>&1;
|
|
USER[ID]="123456789"; CHAT[ID]="123456789"
|
|
|
|
# output processed input
|
|
# shellcheck disable=SC2086
|
|
print_array ${ARRAYS} >"${OUTPUTFILE}"
|
|
compare_sorted "${testref}" "${OUTPUTFILE}" || exit 1
|
|
printf "%s\n" "${SUCCESS}"
|
|
|
|
done
|
|
|
|
cd "${DIRME}" || exit 1
|