90 lines
2.6 KiB
Bash
90 lines
2.6 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"
|
|
}
|
|
|
|
teardown_file() {
|
|
load "../lib/teardown_file.sh"
|
|
}
|
|
|
|
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
|
|
}
|
|
|
|
#----------
|
|
|
|
@test "test without -no-api flag" {
|
|
run -124 --separate-stderr timeout 2s "${CROWDSEC}"
|
|
# from `man timeout`: If the command times out, and --preserve-status is not set, then exit with status 124.
|
|
}
|
|
|
|
@test "crowdsec should not run without LAPI (-no-api flag)" {
|
|
# really needs 4 secs on slow boxes
|
|
run -1 --separate-stderr timeout 4s "${CROWDSEC}" -no-api
|
|
}
|
|
|
|
@test "crowdsec should not run without LAPI (no api.server in configuration file)" {
|
|
config_disable_lapi
|
|
# really needs 4 secs on slow boxes
|
|
run -1 --separate-stderr timeout 4s "${CROWDSEC}"
|
|
|
|
assert_stderr --partial "crowdsec local API is disabled"
|
|
}
|
|
|
|
@test "capi status shouldn't be ok without api.server" {
|
|
config_disable_lapi
|
|
run -1 --separate-stderr cscli capi status
|
|
|
|
assert_stderr --partial "crowdsec local API is disabled"
|
|
assert_stderr --partial "There is no configuration on 'api.server:'"
|
|
}
|
|
|
|
@test "cscli config show -o human" {
|
|
config_disable_lapi
|
|
run -0 cscli config show -o human
|
|
assert_output --partial "Global:"
|
|
assert_output --partial "Crowdsec:"
|
|
assert_output --partial "cscli:"
|
|
refute_output --partial "Local API Server:"
|
|
}
|
|
|
|
@test "cscli config backup" {
|
|
config_disable_lapi
|
|
backupdir=$(TMPDIR="${BATS_TEST_TMPDIR}" mktemp -u)
|
|
run -0 cscli config backup "${backupdir}"
|
|
assert_output --partial "Starting configuration backup"
|
|
run -1 --separate-stderr cscli config backup "${backupdir}"
|
|
rm -rf -- "${backupdir:?}"
|
|
|
|
assert_stderr --partial "Failed to backup configurations"
|
|
assert_stderr --partial "file exists"
|
|
}
|
|
|
|
@test "lapi status shouldn't be ok without api.server" {
|
|
config_disable_lapi
|
|
./instance-crowdsec start || true
|
|
run -1 --separate-stderr cscli machines list
|
|
assert_stderr --partial "Local API is disabled, please run this command on the local API machine"
|
|
}
|
|
|
|
@test "cscli metrics" {
|
|
skip 'need to trigger metrics with a live parse'
|
|
config_disable_lapi
|
|
./instance-crowdsec start
|
|
run -0 --separate-stderr cscli metrics
|
|
assert_output --partial "ROUTE"
|
|
assert_output --partial "/v1/watchers/login"
|
|
|
|
assert_stderr --partial "crowdsec local API is disabled"
|
|
assert_stderr --partial "Local API is disabled, please run this command on the local API machine"
|
|
}
|