2022-03-09 13:45:36 +00:00
|
|
|
#!/usr/bin/env bats
|
|
|
|
# vim: ft=bats:list:ts=8:sts=4:sw=4:et:ai:si:
|
|
|
|
|
|
|
|
set -u
|
|
|
|
|
|
|
|
setup_file() {
|
2022-03-18 09:13:12 +00:00
|
|
|
load "../lib/setup_file.sh"
|
2022-03-09 13:45:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
teardown_file() {
|
2022-03-18 09:13:12 +00:00
|
|
|
load "../lib/teardown_file.sh"
|
2022-03-09 13:45:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
setup() {
|
|
|
|
load "../lib/setup.sh"
|
|
|
|
# always reset config and data, but run the daemon only if one test requires it
|
|
|
|
./instance-data load
|
|
|
|
}
|
|
|
|
|
|
|
|
teardown() {
|
|
|
|
./instance-crowdsec stop
|
|
|
|
}
|
|
|
|
|
|
|
|
#----------
|
|
|
|
|
2022-06-17 14:12:49 +00:00
|
|
|
@test "test without -no-api flag" {
|
2023-11-24 14:57:32 +00:00
|
|
|
config_set '.common.log_media="stdout"'
|
|
|
|
rune -0 wait-for \
|
|
|
|
--err "CrowdSec Local API listening" \
|
|
|
|
"${CROWDSEC}"
|
2022-03-09 13:45:36 +00:00
|
|
|
}
|
|
|
|
|
2022-06-17 14:12:49 +00:00
|
|
|
@test "crowdsec should not run without LAPI (-no-api flag)" {
|
2023-11-24 14:57:32 +00:00
|
|
|
config_set '.common.log_media="stdout"'
|
|
|
|
rune -1 wait-for "${CROWDSEC}" -no-api
|
2022-03-09 13:45:36 +00:00
|
|
|
}
|
|
|
|
|
2022-06-17 14:12:49 +00:00
|
|
|
@test "crowdsec should not run without LAPI (no api.server in configuration file)" {
|
2022-07-04 09:26:39 +00:00
|
|
|
config_disable_lapi
|
2023-01-17 11:12:46 +00:00
|
|
|
config_log_stderr
|
2023-11-24 14:57:32 +00:00
|
|
|
rune -0 wait-for \
|
|
|
|
--err "crowdsec local API is disabled" \
|
|
|
|
"${CROWDSEC}"
|
2022-03-09 13:45:36 +00:00
|
|
|
}
|
|
|
|
|
2022-06-17 14:12:49 +00:00
|
|
|
@test "capi status shouldn't be ok without api.server" {
|
2022-07-04 09:26:39 +00:00
|
|
|
config_disable_lapi
|
2023-06-01 07:42:27 +00:00
|
|
|
rune -1 cscli capi status
|
2022-08-05 08:54:49 +00:00
|
|
|
assert_stderr --partial "crowdsec local API is disabled"
|
2023-07-27 15:02:20 +00:00
|
|
|
assert_stderr --partial "local API is disabled -- this command must be run on the local API machine"
|
2022-03-09 13:45:36 +00:00
|
|
|
}
|
|
|
|
|
2023-07-27 15:02:20 +00:00
|
|
|
@test "no lapi: cscli config show -o human" {
|
|
|
|
config_set '.api.server.enable=false'
|
|
|
|
rune -0 cscli config show -o human
|
|
|
|
assert_output --partial "Global:"
|
|
|
|
assert_output --partial "Crowdsec:"
|
|
|
|
assert_output --partial "cscli:"
|
|
|
|
assert_output --partial "Local API Server (disabled):"
|
|
|
|
|
|
|
|
config_set 'del(.api.server)'
|
2023-06-01 07:42:27 +00:00
|
|
|
rune -0 cscli config show -o human
|
2022-03-09 13:45:36 +00:00
|
|
|
assert_output --partial "Global:"
|
|
|
|
assert_output --partial "Crowdsec:"
|
|
|
|
assert_output --partial "cscli:"
|
2023-07-27 15:02:20 +00:00
|
|
|
refute_output --partial "Local API Server"
|
2022-03-09 13:45:36 +00:00
|
|
|
}
|
|
|
|
|
2022-06-17 14:12:49 +00:00
|
|
|
@test "cscli config backup" {
|
2022-07-04 09:26:39 +00:00
|
|
|
config_disable_lapi
|
2022-03-10 11:19:02 +00:00
|
|
|
backupdir=$(TMPDIR="${BATS_TEST_TMPDIR}" mktemp -u)
|
2023-06-01 07:42:27 +00:00
|
|
|
rune -0 cscli config backup "${backupdir}"
|
|
|
|
assert_stderr --partial "Starting configuration backup"
|
|
|
|
rune -1 cscli config backup "${backupdir}"
|
2022-03-10 11:19:02 +00:00
|
|
|
rm -rf -- "${backupdir:?}"
|
2022-03-09 13:45:36 +00:00
|
|
|
|
2022-12-22 11:22:55 +00:00
|
|
|
assert_stderr --partial "failed to backup config"
|
2022-08-05 08:54:49 +00:00
|
|
|
assert_stderr --partial "file exists"
|
2022-03-09 13:45:36 +00:00
|
|
|
}
|
|
|
|
|
2022-06-17 14:12:49 +00:00
|
|
|
@test "lapi status shouldn't be ok without api.server" {
|
2022-07-04 09:26:39 +00:00
|
|
|
config_disable_lapi
|
2023-06-01 07:42:27 +00:00
|
|
|
rune -1 cscli machines list
|
2023-07-27 15:02:20 +00:00
|
|
|
assert_stderr --partial "local API is disabled -- this command must be run on the local API machine"
|
2022-03-09 13:45:36 +00:00
|
|
|
}
|
|
|
|
|
2022-06-17 14:12:49 +00:00
|
|
|
@test "cscli metrics" {
|
2022-03-09 13:45:36 +00:00
|
|
|
skip 'need to trigger metrics with a live parse'
|
2022-07-04 09:26:39 +00:00
|
|
|
config_disable_lapi
|
2022-03-09 13:45:36 +00:00
|
|
|
./instance-crowdsec start
|
2023-06-01 07:42:27 +00:00
|
|
|
rune -0 cscli metrics
|
2022-03-09 13:45:36 +00:00
|
|
|
assert_output --partial "ROUTE"
|
|
|
|
assert_output --partial "/v1/watchers/login"
|
|
|
|
|
2022-08-05 08:54:49 +00:00
|
|
|
assert_stderr --partial "crowdsec local API is disabled"
|
2023-07-27 15:02:20 +00:00
|
|
|
assert_stderr --partial "local API is disabled -- this command must be run on the local API machine"
|
2022-03-09 13:45:36 +00:00
|
|
|
}
|