crowdsec/test/bats/70_plugin_http.bats
mmetc 3cb9dbdb21
notification-email: configurable timeouts (#2465)
* configurable timeouts
* parse email timeouts as duration string
* add helo_host to email.yaml
* move html and body tags outside of the loops
* added quotes to href=.., and formatting test
2023-09-29 16:59:06 +02:00

87 lines
2.2 KiB
Bash

#!/usr/bin/env bats
# vim: ft=bats:list:ts=8:sts=4:sw=4:et:ai:si:
set -u
setup_file() {
load "../lib/setup_file.sh"
# eval "$(debug)"
./instance-data load
MOCK_OUT="${LOG_DIR}/mock-http.out"
export MOCK_OUT
MOCK_PORT="9999"
MOCK_URL="http://localhost:${MOCK_PORT}"
export MOCK_URL
PLUGIN_DIR=$(config_get '.config_paths.plugin_dir')
# could have a trailing slash
PLUGIN_DIR=$(realpath "${PLUGIN_DIR}")
export PLUGIN_DIR
# https://mikefarah.gitbook.io/yq/operators/env-variable-operators
config_set "$(config_get '.config_paths.notification_dir')/http.yaml" '
.url=strenv(MOCK_URL) |
.group_wait="5s" |
.group_threshold=2
'
config_set "$(config_get '.api.server.profiles_path')" '
.notifications=["http_default"] |
.filters=["Alert.GetScope() == \"Ip\""]
'
config_set '
.plugin_config.user="" |
.plugin_config.group=""
'
rm -f -- "${MOCK_OUT}"
./instance-crowdsec start
./instance-mock-http start "${MOCK_PORT}"
}
teardown_file() {
load "../lib/teardown_file.sh"
./instance-crowdsec stop
./instance-mock-http stop
}
setup() {
load "../lib/setup.sh"
}
#----------
@test "add two bans" {
rune -0 cscli decisions add --ip 1.2.3.4 --duration 30s
assert_stderr --partial 'Decision successfully added'
rune -0 cscli decisions add --ip 1.2.3.5 --duration 30s
assert_stderr --partial 'Decision successfully added'
sleep 5
}
@test "expected 1 log line from http server" {
rune -0 wc -l <"${MOCK_OUT}"
# wc can pad with spaces on some platforms
rune -0 tr -d ' ' < <(output)
assert_output 1
}
@test "expected to receive 2 alerts in the request body from plugin" {
rune -0 jq -r '.request_body' <"${MOCK_OUT}"
rune -0 jq -r 'length' <(output)
assert_output 2
}
@test "expected to receive IP 1.2.3.4 as value of first decision" {
rune -0 jq -r '.request_body[0].decisions[0].value' <"${MOCK_OUT}"
assert_output 1.2.3.4
}
@test "expected to receive IP 1.2.3.5 as value of second decision" {
rune -0 jq -r '.request_body[1].decisions[0].value' <"${MOCK_OUT}"
assert_output 1.2.3.5
}