mirror of
https://bitbucket.org/jsuto/piler.git
synced 2024-11-07 21:51:59 +01:00
1377cbdae6
Signed-off-by: Janos SUTO <sj@acts.hu>
92 lines
3.6 KiB
PHP
92 lines
3.6 KiB
PHP
|
|
register_case "case1"
|
|
|
|
case1() {
|
|
log $FUNCNAME "sending emails"
|
|
|
|
setup
|
|
|
|
"$SMTP_SOURCE_PROG" -s $SMTP_HOST -r archive@cust1.acts.hu -p 25 -t 20 --dir "$EML_DIR/Inbox" --no-counter
|
|
"$SMTP_SOURCE_PROG" -s $SMTP_HOST -r archive@cust1.acts.hu -p 25 -t 20 --dir "$EML_DIR/Inbox2" --no-counter
|
|
"$SMTP_SOURCE_PROG" -s $SMTP_HOST -r archive@cust1.acts.hu -p 25 -t 20 --dir "$EML_DIR/Levelszemet" --no-counter
|
|
"$SMTP_SOURCE_PROG" -s $SMTP_HOST -r archive@cust1.acts.hu -p 25 -t 20 --dir "$EML_DIR/Levelszemet2" --no-counter
|
|
"$SMTP_SOURCE_PROG" -s $SMTP_HOST -r archive@cust1.acts.hu -p 25 -t 20 --dir "$EML_DIR/spam0" --no-counter
|
|
"$SMTP_SOURCE_PROG" -s $SMTP_HOST -r archive@cust1.acts.hu -p 25 -t 20 --dir "$EML_DIR/spam1" --no-counter
|
|
"$SMTP_SOURCE_PROG" -s $SMTP_HOST -r archive@cust1.acts.hu -p 25 -t 20 --dir "$EML_DIR/spam2" --no-counter
|
|
"$SMTP_SOURCE_PROG" -s $SMTP_HOST -r archive@cust1.acts.hu -p 25 -t 20 --dir "$EML_DIR/journal" --no-counter
|
|
"$SMTP_SOURCE_PROG" -s $SMTP_HOST -r archive@cust1.acts.hu -p 25 -t 20 --dir "$EML_DIR/deduptest" --no-counter
|
|
"$SMTP_SOURCE_PROG" -s $SMTP_HOST -r archive@cust1.acts.hu -p 25 -t 20 --dir "$EML_DIR/special" --no-counter
|
|
"$SMTP_SOURCE_PROG" -s $SMTP_HOST -r archive@cust1.acts.hu extra@addr.ess another@extra.addr -p 25 -t 20 --dir "$EML_DIR/virus" --no-counter
|
|
|
|
|
|
wait_until_emails_are_processed "piler1" 3020
|
|
[[ $RT -eq 1 ]] || docker exec "piler1" su piler -c /usr/libexec/piler/indexer.delta.sh 2>/dev/null
|
|
|
|
count_status_values 3020 2909 111 0
|
|
|
|
test_retrieved_messages_are_the_same "piler1" "piler"
|
|
|
|
run_05_sphinx_tests
|
|
|
|
docker exec "piler1" su piler -c 'php /usr/libexec/piler/generate_stats.php --webui /var/piler/www --start=2015/01/01 --stop=2021/12/31'
|
|
|
|
docker exec "piler1" su piler -c 'php /usr/libexec/piler/sign.php --webui /var/piler/www --mode time'
|
|
|
|
run_import_job "piler1"
|
|
}
|
|
|
|
|
|
count_status_values() {
|
|
local container="piler1"
|
|
|
|
log "$FUNCNAME"
|
|
|
|
received=$(print_file_in_container "$container" "$LOG_FILE" | grep -c 'received:') || true
|
|
stored=$(print_file_in_container "$container" "$LOG_FILE" | grep -c status=stored) || true
|
|
discarded=$(print_file_in_container "$container" "$LOG_FILE" | grep -c status=discarded) || true
|
|
duplicate=$(print_file_in_container "$container" "$LOG_FILE" | grep -c status=duplicate) || true
|
|
|
|
[[ $received -eq $1 ]] || set_verdict $RESULT_CRITICAL
|
|
[[ $stored -eq $2 ]] || set_verdict $RESULT_CRITICAL
|
|
[[ $discarded -eq $3 ]] || set_verdict $RESULT_CRITICAL
|
|
[[ $duplicate -eq $4 ]] || set_verdict $RESULT_CRITICAL
|
|
}
|
|
|
|
|
|
run_05_sphinx_tests() {
|
|
local container="piler1"
|
|
|
|
log "$FUNCNAME"
|
|
|
|
append_queries
|
|
|
|
for i in $(seq 0 $((${#SEARCH_QUERIES[@]}-1)) )
|
|
do
|
|
hits=$( run_sphinx_query "$container" "${SEARCH_QUERIES[$i]}" )
|
|
echo $hits ${SEARCH_HITS[$i]}
|
|
done
|
|
}
|
|
|
|
|
|
append_queries() {
|
|
local index="main1,dailydelta1,delta1"
|
|
|
|
if [[ $RT -eq 1 ]]; then index="piler1"; fi
|
|
|
|
append_query "select * from ${index} WHERE MATCH('@subject budaörsi dc felmérés')" 9
|
|
append_query "select * from ${index} WHERE MATCH('@sender gruppi.hu')" 4
|
|
append_query "select * from ${index} WHERE attachments > 0 AND MATCH('@subject spam ')" 85
|
|
append_query "select * from ${index} WHERE attachments > 0 AND MATCH('@subject spam @attachment_types image')" 15
|
|
append_query "select * from ${index} WHERE MATCH('@(subject,body) New Task TSK002*')" 29
|
|
append_query "select * from ${index} WHERE MATCH('@subject \"virtualfax daily summary\" | \"adsl hibajegy\"')" 11
|
|
}
|
|
|
|
|
|
run_import_job() {
|
|
local container="$1"
|
|
|
|
log "${FUNCNAME[0]}"
|
|
|
|
docker exec "$container" su piler -c /usr/libexec/piler/import.sh
|
|
}
|