mirror of
https://github.com/crowdsecurity/crowdsec.git
synced 2025-05-15 05:43:56 +02:00
* target: tests/.environment.sh * don't pass BIN_DIR around * manage db backup/restore separately * don't export CONFIG_DIR, DATA_DIR (derive path locations from CONFIG_YAML); redirect stdout, stderr to &3 by default in setup_file, teardown_file
58 lines
1.4 KiB
Bash
58 lines
1.4 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"
|
|
./instance-data load
|
|
./instance-crowdsec start
|
|
}
|
|
|
|
teardown() {
|
|
./instance-crowdsec stop
|
|
}
|
|
|
|
#----------
|
|
|
|
@test "$FILE there are 0 bouncers" {
|
|
run -0 cscli bouncers list -o json
|
|
assert_output "[]"
|
|
}
|
|
|
|
@test "$FILE we can add one bouncer, and delete it" {
|
|
run -0 cscli bouncers add ciTestBouncer
|
|
assert_output --partial "Api key for 'ciTestBouncer':"
|
|
run -0 cscli bouncers delete ciTestBouncer
|
|
run -0 cscli bouncers list -o json
|
|
assert_output '[]'
|
|
}
|
|
|
|
@test "$FILE we can't add the same bouncer twice" {
|
|
run -0 cscli bouncers add ciTestBouncer
|
|
run -1 --separate-stderr cscli bouncers add ciTestBouncer -o json
|
|
|
|
run -0 jq -r '.level' <(stderr)
|
|
assert_output 'fatal'
|
|
run -0 jq -r '.msg' <(stderr)
|
|
assert_output "unable to create bouncer: bouncer ciTestBouncer already exists"
|
|
|
|
run -0 cscli bouncers list -o json
|
|
run -0 jq '. | length' <(output)
|
|
assert_output 1
|
|
}
|
|
|
|
@test "$FILE delete the bouncer multiple times, even if it does not exist" {
|
|
run -0 cscli bouncers add ciTestBouncer
|
|
run -0 cscli bouncers delete ciTestBouncer
|
|
run -0 cscli bouncers delete ciTestBouncer
|
|
run -0 cscli bouncers delete foobarbaz
|
|
}
|