123 lines
5.2 KiB
Bash
123 lines
5.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"
|
|
|
|
PLUGIN_DIR=$(config_get '.config_paths.plugin_dir')
|
|
# could have a trailing slash
|
|
PLUGIN_DIR=$(realpath "${PLUGIN_DIR}")
|
|
export PLUGIN_DIR
|
|
|
|
PROFILES_PATH=$(config_get '.api.server.profiles_path')
|
|
export PROFILES_PATH
|
|
}
|
|
|
|
teardown_file() {
|
|
load "../lib/teardown_file.sh"
|
|
}
|
|
|
|
setup() {
|
|
load "../lib/setup.sh"
|
|
./instance-data load
|
|
}
|
|
|
|
teardown() {
|
|
./instance-crowdsec stop
|
|
rm -f "${PLUGIN_DIR}"/badname
|
|
chmod go-w "${PLUGIN_DIR}"/notification-http
|
|
}
|
|
|
|
declare stderr
|
|
|
|
#----------
|
|
|
|
@test "misconfigured plugin, only user is empty" {
|
|
config_set '.plugin_config.user="" | .plugin_config.group="nogroup"'
|
|
config_set "${PROFILES_PATH}" '.notifications=["http_default"]'
|
|
run -1 --separate-stderr timeout 2s "${CROWDSEC}"
|
|
run -0 echo "${stderr}"
|
|
assert_output --partial "api server init: unable to run local API: while loading plugin: while getting process attributes: both plugin user and group must be set"
|
|
}
|
|
|
|
@test "misconfigured plugin, only group is empty" {
|
|
config_set '(.plugin_config.user="nobody") | (.plugin_config.group="")'
|
|
config_set "${PROFILES_PATH}" '.notifications=["http_default"]'
|
|
run -1 --separate-stderr timeout 2s "${CROWDSEC}"
|
|
run -0 echo "${stderr}"
|
|
assert_output --partial "api server init: unable to run local API: while loading plugin: while getting process attributes: both plugin user and group must be set"
|
|
}
|
|
|
|
@test "misconfigured plugin, user does not exist" {
|
|
config_set '(.plugin_config.user="userdoesnotexist") | (.plugin_config.group="groupdoesnotexist")'
|
|
config_set "${PROFILES_PATH}" '.notifications=["http_default"]'
|
|
run -1 --separate-stderr timeout 2s "${CROWDSEC}"
|
|
run -0 echo "${stderr}"
|
|
assert_output --partial "api server init: unable to run local API: while loading plugin: while getting process attributes: user: unknown user userdoesnotexist"
|
|
}
|
|
|
|
@test "misconfigured plugin, group does not exist" {
|
|
config_set '(.plugin_config.user=strenv(USER)) | (.plugin_config.group="groupdoesnotexist")'
|
|
config_set "${PROFILES_PATH}" '.notifications=["http_default"]'
|
|
run -1 --separate-stderr timeout 2s "${CROWDSEC}"
|
|
run -0 echo "${stderr}"
|
|
assert_output --partial "api server init: unable to run local API: while loading plugin: while getting process attributes: group: unknown group groupdoesnotexist"
|
|
}
|
|
|
|
@test "bad plugin name" {
|
|
config_set "${PROFILES_PATH}" '.notifications=["http_default"]'
|
|
cp "${PLUGIN_DIR}"/notification-http "${PLUGIN_DIR}"/badname
|
|
run -1 --separate-stderr timeout 2s "${CROWDSEC}"
|
|
run -0 echo "${stderr}"
|
|
assert_output --partial "api server init: unable to run local API: while loading plugin: plugin name ${PLUGIN_DIR}/badname is invalid. Name should be like {type-name}"
|
|
}
|
|
|
|
@test "bad plugin permission (group writable)" {
|
|
config_set "${PROFILES_PATH}" '.notifications=["http_default"]'
|
|
chmod g+w "${PLUGIN_DIR}"/notification-http
|
|
run -1 --separate-stderr timeout 2s "${CROWDSEC}"
|
|
run -0 echo "${stderr}"
|
|
assert_output --partial "api server init: unable to run local API: while loading plugin: plugin at ${PLUGIN_DIR}/notification-http is group writable, group writable plugins are invalid"
|
|
}
|
|
|
|
@test "bad plugin permission (world writable)" {
|
|
config_set "${PROFILES_PATH}" '.notifications=["http_default"]'
|
|
chmod o+w "${PLUGIN_DIR}"/notification-http
|
|
run -1 --separate-stderr timeout 2s "${CROWDSEC}"
|
|
run -0 echo "${stderr}"
|
|
assert_output --partial "api server init: unable to run local API: while loading plugin: plugin at ${PLUGIN_DIR}/notification-http is world writable, world writable plugins are invalid"
|
|
}
|
|
|
|
@test "config.yaml: missing .plugin_config section" {
|
|
config_set 'del(.plugin_config)'
|
|
config_set "${PROFILES_PATH}" '.notifications=["http_default"]'
|
|
run -1 --separate-stderr timeout 2s "${CROWDSEC}"
|
|
run -0 echo "${stderr}"
|
|
assert_output --partial "api server init: plugins are enabled, but the plugin_config section is missing in the configuration"
|
|
}
|
|
|
|
@test "config.yaml: missing config_paths.notification_dir" {
|
|
config_set 'del(.config_paths.notification_dir)'
|
|
config_set "${PROFILES_PATH}" '.notifications=["http_default"]'
|
|
run -1 --separate-stderr timeout 2s "${CROWDSEC}"
|
|
run -0 echo "${stderr}"
|
|
assert_output --partial "api server init: plugins are enabled, but config_paths.notification_dir is not defined"
|
|
}
|
|
|
|
@test "config.yaml: missing config_paths.plugin_dir" {
|
|
config_set 'del(.config_paths.plugin_dir)'
|
|
config_set "${PROFILES_PATH}" '.notifications=["http_default"]'
|
|
run -1 --separate-stderr timeout 2s "${CROWDSEC}"
|
|
run -0 echo "${stderr}"
|
|
assert_output --partial "api server init: plugins are enabled, but config_paths.plugin_dir is not defined"
|
|
}
|
|
|
|
@test "unable to run local API: while reading plugin config" {
|
|
config_set '.config_paths.notification_dir="/this/path/does/not/exist"'
|
|
config_set "${PROFILES_PATH}" '.notifications=["http_default"]'
|
|
run -1 --separate-stderr timeout 2s "${CROWDSEC}"
|
|
run -0 echo "${stderr}"
|
|
assert_output --partial "api server init: unable to run local API: while loading plugin config: open /this/path/does/not/exist: no such file or directory"
|
|
}
|