mirror of
https://github.com/octoleo/telegram-bot-bash.git
synced 2024-11-05 17:37:49 +00:00
39 lines
926 B
Bash
Executable File
39 lines
926 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#### $$VERSION$$ v0.70-pre1-0-g490c472
|
|
|
|
# include common functions and definitions
|
|
# shellcheck source=test/ALL-tests.inc.sh
|
|
source "./ALL-tests.inc.sh"
|
|
|
|
set -e
|
|
|
|
cd "${TESTDIR}" || exit 1
|
|
|
|
# source bashbot.sh function, uncomment if you want to test functions
|
|
# shellcheck source=./bashbot.sh
|
|
source "${TESTDIR}/bashbot.sh" source
|
|
source "${TESTDIR}/modules/background.sh"
|
|
|
|
# start writing your tests here ...
|
|
|
|
# over write sendJson to output parameter only
|
|
sendJson() {
|
|
printf 'chat:%s\tJSON:%s\nURL:%s\n\n' "${1}" "${2}" "${3}"
|
|
}
|
|
|
|
# send text input to send_message
|
|
|
|
#set -x
|
|
echo -n " Send line ..."
|
|
while IFS='' read -r line || [[ -n "$line" ]]; do
|
|
echo -n "."
|
|
send_message "123456" "$line" >>"${OUTPUTFILE}"
|
|
done < "${INPUTFILE}" 2>>"${LOGFILE}"
|
|
echo " done."
|
|
|
|
diff -c "${REFFILE}" "${OUTPUTFILE}" || exit 1
|
|
echo " ... all \"send_message\" functions seems to work as expected."
|
|
echo "${SUCCESS}"
|
|
|
|
|