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"
|
2022-06-06 13:24:48 +00:00
|
|
|
load "../lib/bats-file/load.bash"
|
2022-03-09 13:45:36 +00:00
|
|
|
./instance-data load
|
|
|
|
./instance-crowdsec start
|
|
|
|
}
|
|
|
|
|
|
|
|
teardown() {
|
2023-02-20 14:05:42 +00:00
|
|
|
cd "$TEST_DIR" || exit 1
|
2022-03-09 13:45:36 +00:00
|
|
|
./instance-crowdsec stop
|
|
|
|
}
|
|
|
|
|
|
|
|
#----------
|
|
|
|
|
2022-06-17 14:12:49 +00:00
|
|
|
@test "cscli - usage" {
|
2023-03-01 09:56:25 +00:00
|
|
|
rune -0 cscli
|
2022-03-31 14:50:38 +00:00
|
|
|
assert_output --partial "Usage:"
|
|
|
|
assert_output --partial "cscli [command]"
|
|
|
|
assert_output --partial "Available Commands:"
|
2022-05-19 11:42:44 +00:00
|
|
|
|
|
|
|
# no "usage" output after every error
|
2023-03-01 09:56:25 +00:00
|
|
|
rune -1 cscli blahblah
|
2022-05-19 11:42:44 +00:00
|
|
|
# error is displayed as log entry, not with print
|
2022-08-05 08:54:49 +00:00
|
|
|
assert_stderr --partial 'level=fatal msg="unknown command \"blahblah\" for \"cscli\""'
|
|
|
|
refute_stderr --partial 'unknown command "blahblah" for "cscli"'
|
2022-03-31 14:50:38 +00:00
|
|
|
}
|
|
|
|
|
2022-06-17 14:12:49 +00:00
|
|
|
@test "cscli version" {
|
2023-03-01 09:56:25 +00:00
|
|
|
rune -0 cscli version
|
|
|
|
assert_stderr --partial "version:"
|
|
|
|
assert_stderr --partial "Codename:"
|
|
|
|
assert_stderr --partial "BuildDate:"
|
|
|
|
assert_stderr --partial "GoVersion:"
|
|
|
|
assert_stderr --partial "Platform:"
|
|
|
|
assert_stderr --partial "Constraint_parser:"
|
|
|
|
assert_stderr --partial "Constraint_scenario:"
|
|
|
|
assert_stderr --partial "Constraint_api:"
|
|
|
|
assert_stderr --partial "Constraint_acquis:"
|
2022-04-13 13:44:23 +00:00
|
|
|
|
|
|
|
# should work without configuration file
|
|
|
|
rm "${CONFIG_YAML}"
|
2023-03-01 09:56:25 +00:00
|
|
|
rune -0 cscli version
|
|
|
|
assert_stderr --partial "version:"
|
2022-04-13 13:44:23 +00:00
|
|
|
}
|
|
|
|
|
2022-06-17 14:12:49 +00:00
|
|
|
@test "cscli help" {
|
2023-03-01 09:56:25 +00:00
|
|
|
rune -0 cscli help
|
2022-04-13 13:44:23 +00:00
|
|
|
assert_line "Available Commands:"
|
|
|
|
assert_line --regexp ".* help .* Help about any command"
|
|
|
|
|
|
|
|
# should work without configuration file
|
|
|
|
rm "${CONFIG_YAML}"
|
2023-03-01 09:56:25 +00:00
|
|
|
rune -0 cscli help
|
2022-04-13 13:44:23 +00:00
|
|
|
assert_line "Available Commands:"
|
2022-03-09 13:45:36 +00:00
|
|
|
}
|
|
|
|
|
2023-03-01 09:56:25 +00:00
|
|
|
@test "cscli config show" {
|
|
|
|
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:"
|
|
|
|
assert_output --partial "Local API Server:"
|
|
|
|
|
2023-03-01 09:56:25 +00:00
|
|
|
rune -0 cscli config show -o json
|
2022-03-09 13:45:36 +00:00
|
|
|
assert_output --partial '"API":'
|
|
|
|
assert_output --partial '"Common":'
|
|
|
|
assert_output --partial '"ConfigPaths":'
|
|
|
|
assert_output --partial '"Crowdsec":'
|
|
|
|
assert_output --partial '"Cscli":'
|
|
|
|
assert_output --partial '"DbConfig":'
|
|
|
|
assert_output --partial '"Hub":'
|
|
|
|
assert_output --partial '"PluginConfig":'
|
|
|
|
assert_output --partial '"Prometheus":'
|
|
|
|
|
2023-03-01 09:56:25 +00:00
|
|
|
rune -0 cscli config show -o raw
|
2022-03-09 13:45:36 +00:00
|
|
|
assert_line "api:"
|
|
|
|
assert_line "common:"
|
|
|
|
assert_line "config_paths:"
|
|
|
|
assert_line "crowdsec_service:"
|
|
|
|
assert_line "cscli:"
|
|
|
|
assert_line "db_config:"
|
|
|
|
assert_line "plugin_config:"
|
|
|
|
assert_line "prometheus:"
|
|
|
|
|
2023-03-01 09:56:25 +00:00
|
|
|
rune -0 cscli config show --key Config.API.Server.ListenURI
|
2022-03-09 13:45:36 +00:00
|
|
|
assert_output "127.0.0.1:8080"
|
2023-03-08 21:47:25 +00:00
|
|
|
|
|
|
|
# check that LAPI configuration is loaded (human and json, not shows in raw)
|
|
|
|
|
|
|
|
rune -0 cscli config show -o human
|
|
|
|
assert_line --regexp ".*- URL\s+: http://127.0.0.1:8080/"
|
|
|
|
assert_line --regexp ".*- Login\s+: githubciXXXXXXXXXXXXXXXXXXXXXXXX"
|
|
|
|
assert_line --regexp ".*- Credentials File\s+: .*/local_api_credentials.yaml"
|
|
|
|
|
|
|
|
rune -0 cscli config show -o json
|
|
|
|
rune -0 jq -c '.API.Client.Credentials | [.url,.login]' <(output)
|
|
|
|
assert_output '["http://127.0.0.1:8080/","githubciXXXXXXXXXXXXXXXXXXXXXXXX"]'
|
2022-03-09 13:45:36 +00:00
|
|
|
}
|
|
|
|
|
2022-06-17 14:12:49 +00:00
|
|
|
@test "cscli config backup / restore" {
|
2022-06-06 13:24:48 +00:00
|
|
|
# test that we need a valid path
|
|
|
|
# disabled because in CI, the empty string is not passed as a parameter
|
2023-03-01 09:56:25 +00:00
|
|
|
#rune -1 cscli config backup ""
|
2022-12-22 11:22:55 +00:00
|
|
|
#assert_stderr --partial "failed to backup config: directory path can't be empty"
|
2022-06-06 13:24:48 +00:00
|
|
|
|
2023-03-01 09:56:25 +00:00
|
|
|
rune -1 cscli config backup "/dev/null/blah"
|
2022-12-22 11:22:55 +00:00
|
|
|
assert_stderr --partial "failed to backup config: while creating /dev/null/blah: mkdir /dev/null/blah: not a directory"
|
2022-06-06 13:24:48 +00:00
|
|
|
|
|
|
|
# pick a dirpath
|
2022-03-10 11:19:02 +00:00
|
|
|
backupdir=$(TMPDIR="${BATS_TEST_TMPDIR}" mktemp -u)
|
2022-06-06 13:24:48 +00:00
|
|
|
|
|
|
|
# succeed the first time
|
2023-03-01 09:56:25 +00:00
|
|
|
rune -0 cscli config backup "${backupdir}"
|
|
|
|
assert_stderr --partial "Starting configuration backup"
|
2022-03-09 13:45:36 +00:00
|
|
|
|
2022-06-06 13:24:48 +00:00
|
|
|
# don't overwrite an existing backup
|
2023-03-01 09:56:25 +00:00
|
|
|
rune -1 cscli config backup "${backupdir}"
|
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-06-06 13:24:48 +00:00
|
|
|
|
2022-07-01 20:45:55 +00:00
|
|
|
SIMULATION_YAML="$(config_get '.config_paths.simulation_path')"
|
2022-06-06 13:24:48 +00:00
|
|
|
|
|
|
|
# restore
|
|
|
|
rm "${SIMULATION_YAML}"
|
2023-03-01 09:56:25 +00:00
|
|
|
rune -0 cscli config restore "${backupdir}"
|
2022-06-06 13:24:48 +00:00
|
|
|
assert_file_exist "${SIMULATION_YAML}"
|
|
|
|
|
|
|
|
# cleanup
|
|
|
|
rm -rf -- "${backupdir:?}"
|
|
|
|
|
|
|
|
# backup: detect missing files
|
|
|
|
rm "${SIMULATION_YAML}"
|
2023-03-01 09:56:25 +00:00
|
|
|
rune -1 cscli config backup "${backupdir}"
|
2022-12-22 11:22:55 +00:00
|
|
|
assert_stderr --regexp "failed to backup config: failed copy .* to .*: stat .*: no such file or directory"
|
2022-03-10 11:19:02 +00:00
|
|
|
rm -rf -- "${backupdir:?}"
|
2022-03-09 13:45:36 +00:00
|
|
|
}
|
|
|
|
|
2022-06-17 14:12:49 +00:00
|
|
|
@test "cscli lapi status" {
|
2023-03-01 09:56:25 +00:00
|
|
|
rune -0 cscli lapi status
|
2022-03-09 13:45:36 +00:00
|
|
|
|
2023-03-01 09:56:25 +00:00
|
|
|
assert_stderr --partial "Loaded credentials from"
|
|
|
|
assert_stderr --partial "Trying to authenticate with username"
|
|
|
|
assert_stderr --partial " on http://127.0.0.1:8080/"
|
|
|
|
assert_stderr --partial "You can successfully interact with Local API (LAPI)"
|
2022-03-09 13:45:36 +00:00
|
|
|
}
|
|
|
|
|
2022-06-17 14:12:49 +00:00
|
|
|
@test "cscli - missing LAPI credentials file" {
|
2022-07-01 20:45:55 +00:00
|
|
|
LOCAL_API_CREDENTIALS=$(config_get '.api.client.credentials_path')
|
2022-05-19 08:48:08 +00:00
|
|
|
rm -f "${LOCAL_API_CREDENTIALS}"
|
2023-03-01 09:56:25 +00:00
|
|
|
rune -1 cscli lapi status
|
2022-08-05 08:54:49 +00:00
|
|
|
assert_stderr --partial "loading api client: while reading yaml file: open ${LOCAL_API_CREDENTIALS}: no such file or directory"
|
2022-05-19 08:48:08 +00:00
|
|
|
|
2023-03-01 09:56:25 +00:00
|
|
|
rune -1 cscli alerts list
|
2022-08-05 08:54:49 +00:00
|
|
|
assert_stderr --partial "loading api client: while reading yaml file: open ${LOCAL_API_CREDENTIALS}: no such file or directory"
|
2022-05-19 08:48:08 +00:00
|
|
|
|
2023-03-01 09:56:25 +00:00
|
|
|
rune -1 cscli decisions list
|
2022-08-05 08:54:49 +00:00
|
|
|
assert_stderr --partial "loading api client: while reading yaml file: open ${LOCAL_API_CREDENTIALS}: no such file or directory"
|
2022-05-19 08:48:08 +00:00
|
|
|
}
|
|
|
|
|
2022-06-17 14:12:49 +00:00
|
|
|
@test "cscli - empty LAPI credentials file" {
|
2022-07-01 20:45:55 +00:00
|
|
|
LOCAL_API_CREDENTIALS=$(config_get '.api.client.credentials_path')
|
2022-05-19 08:48:08 +00:00
|
|
|
truncate -s 0 "${LOCAL_API_CREDENTIALS}"
|
2023-03-01 09:56:25 +00:00
|
|
|
rune -1 cscli lapi status
|
2022-08-05 08:54:49 +00:00
|
|
|
assert_stderr --partial "no credentials or URL found in api client configuration '${LOCAL_API_CREDENTIALS}'"
|
2022-05-19 08:48:08 +00:00
|
|
|
|
2023-03-01 09:56:25 +00:00
|
|
|
rune -1 cscli alerts list
|
2022-08-05 08:54:49 +00:00
|
|
|
assert_stderr --partial "no credentials or URL found in api client configuration '${LOCAL_API_CREDENTIALS}'"
|
2022-05-19 08:48:08 +00:00
|
|
|
|
2023-03-01 09:56:25 +00:00
|
|
|
rune -1 cscli decisions list
|
2022-08-05 08:54:49 +00:00
|
|
|
assert_stderr --partial "no credentials or URL found in api client configuration '${LOCAL_API_CREDENTIALS}'"
|
2022-05-19 08:48:08 +00:00
|
|
|
}
|
|
|
|
|
2022-06-17 14:12:49 +00:00
|
|
|
@test "cscli - missing LAPI client settings" {
|
2022-07-01 20:45:55 +00:00
|
|
|
config_set 'del(.api.client)'
|
2023-03-01 09:56:25 +00:00
|
|
|
rune -1 cscli lapi status
|
2022-08-05 08:54:49 +00:00
|
|
|
assert_stderr --partial "loading api client: no API client section in configuration"
|
2022-05-19 08:48:08 +00:00
|
|
|
|
2023-03-01 09:56:25 +00:00
|
|
|
rune -1 cscli alerts list
|
2022-08-05 08:54:49 +00:00
|
|
|
assert_stderr --partial "loading api client: no API client section in configuration"
|
2022-05-19 08:48:08 +00:00
|
|
|
|
2023-03-01 09:56:25 +00:00
|
|
|
rune -1 cscli decisions list
|
2022-08-05 08:54:49 +00:00
|
|
|
assert_stderr --partial "loading api client: no API client section in configuration"
|
2022-05-19 08:48:08 +00:00
|
|
|
}
|
|
|
|
|
2022-06-17 14:12:49 +00:00
|
|
|
@test "cscli - malformed LAPI url" {
|
2022-07-01 20:45:55 +00:00
|
|
|
LOCAL_API_CREDENTIALS=$(config_get '.api.client.credentials_path')
|
|
|
|
config_set "${LOCAL_API_CREDENTIALS}" '.url="https://127.0.0.1:-80"'
|
2022-05-19 08:48:08 +00:00
|
|
|
|
2023-03-01 09:56:25 +00:00
|
|
|
rune -1 cscli lapi status
|
2022-08-05 08:54:49 +00:00
|
|
|
assert_stderr --partial 'parsing api url'
|
|
|
|
assert_stderr --partial 'invalid port \":-80\" after host'
|
2022-05-19 08:48:08 +00:00
|
|
|
|
2023-03-01 09:56:25 +00:00
|
|
|
rune -1 cscli alerts list
|
2022-08-05 08:54:49 +00:00
|
|
|
assert_stderr --partial 'parsing api url'
|
|
|
|
assert_stderr --partial 'invalid port \":-80\" after host'
|
2022-05-19 08:48:08 +00:00
|
|
|
|
2023-03-01 09:56:25 +00:00
|
|
|
rune -1 cscli decisions list
|
2022-08-05 08:54:49 +00:00
|
|
|
assert_stderr --partial 'parsing api url'
|
|
|
|
assert_stderr --partial 'invalid port \":-80\" after host'
|
2022-05-19 08:48:08 +00:00
|
|
|
}
|
|
|
|
|
2022-06-17 14:12:49 +00:00
|
|
|
@test "cscli metrics" {
|
2023-03-01 09:56:25 +00:00
|
|
|
rune -0 cscli lapi status
|
|
|
|
rune -0 cscli metrics
|
2022-10-07 09:05:35 +00:00
|
|
|
assert_output --partial "Route"
|
2022-03-09 13:45:36 +00:00
|
|
|
assert_output --partial '/v1/watchers/login'
|
2022-08-18 09:54:01 +00:00
|
|
|
assert_output --partial "Local Api Metrics:"
|
2022-03-09 13:45:36 +00:00
|
|
|
|
|
|
|
}
|
2022-03-10 13:57:14 +00:00
|
|
|
|
2022-06-17 14:12:49 +00:00
|
|
|
@test "'cscli completion' with or without configuration file" {
|
2023-03-01 09:56:25 +00:00
|
|
|
rune -0 cscli completion bash
|
2022-03-10 13:57:14 +00:00
|
|
|
assert_output --partial "# bash completion for cscli"
|
2023-03-01 09:56:25 +00:00
|
|
|
rune -0 cscli completion zsh
|
2022-03-10 13:57:14 +00:00
|
|
|
assert_output --partial "# zsh completion for cscli"
|
2023-03-01 09:56:25 +00:00
|
|
|
rune -0 cscli completion powershell
|
2022-06-06 13:24:48 +00:00
|
|
|
assert_output --partial "# powershell completion for cscli"
|
2023-03-01 09:56:25 +00:00
|
|
|
rune -0 cscli completion fish
|
2022-06-06 13:24:48 +00:00
|
|
|
assert_output --partial "# fish completion for cscli"
|
2022-03-18 09:13:12 +00:00
|
|
|
|
|
|
|
rm "${CONFIG_YAML}"
|
2023-03-01 09:56:25 +00:00
|
|
|
rune -0 cscli completion bash
|
2022-03-10 13:57:14 +00:00
|
|
|
assert_output --partial "# bash completion for cscli"
|
|
|
|
}
|
2022-04-13 13:44:23 +00:00
|
|
|
|
2022-06-17 14:12:49 +00:00
|
|
|
@test "cscli hub list" {
|
2022-04-19 12:22:59 +00:00
|
|
|
# we check for the presence of some objects. There may be others when we
|
|
|
|
# use $PACKAGE_TESTING, so the order is not important.
|
|
|
|
|
2023-03-01 09:56:25 +00:00
|
|
|
rune -0 cscli hub list -o human
|
2022-04-13 13:44:23 +00:00
|
|
|
assert_line --regexp '^ crowdsecurity/linux'
|
|
|
|
assert_line --regexp '^ crowdsecurity/sshd'
|
|
|
|
assert_line --regexp '^ crowdsecurity/dateparse-enrich'
|
|
|
|
assert_line --regexp '^ crowdsecurity/geoip-enrich'
|
|
|
|
assert_line --regexp '^ crowdsecurity/sshd-logs'
|
|
|
|
assert_line --regexp '^ crowdsecurity/syslog-logs'
|
|
|
|
assert_line --regexp '^ crowdsecurity/ssh-bf'
|
|
|
|
assert_line --regexp '^ crowdsecurity/ssh-slow-bf'
|
|
|
|
|
2023-03-01 09:56:25 +00:00
|
|
|
rune -0 cscli hub list -o raw
|
2022-04-13 13:44:23 +00:00
|
|
|
assert_line --regexp '^crowdsecurity/linux,enabled,[0-9]+\.[0-9]+,core linux support : syslog\+geoip\+ssh,collections$'
|
|
|
|
assert_line --regexp '^crowdsecurity/sshd,enabled,[0-9]+\.[0-9]+,sshd support : parser and brute-force detection,collections$'
|
|
|
|
assert_line --regexp '^crowdsecurity/dateparse-enrich,enabled,[0-9]+\.[0-9]+,,parsers$'
|
|
|
|
assert_line --regexp '^crowdsecurity/geoip-enrich,enabled,[0-9]+\.[0-9]+,"Populate event with geoloc info : as, country, coords, source range.",parsers$'
|
|
|
|
assert_line --regexp '^crowdsecurity/sshd-logs,enabled,[0-9]+\.[0-9]+,Parse openSSH logs,parsers$'
|
|
|
|
assert_line --regexp '^crowdsecurity/syslog-logs,enabled,[0-9]+\.[0-9]+,,parsers$'
|
|
|
|
assert_line --regexp '^crowdsecurity/ssh-bf,enabled,[0-9]+\.[0-9]+,Detect ssh bruteforce,scenarios$'
|
|
|
|
assert_line --regexp '^crowdsecurity/ssh-slow-bf,enabled,[0-9]+\.[0-9]+,Detect slow ssh bruteforce,scenarios$'
|
|
|
|
|
2023-03-01 09:56:25 +00:00
|
|
|
rune -0 cscli hub list -o json
|
|
|
|
rune -0 jq -r '.collections[].name, .parsers[].name, .scenarios[].name' <(output)
|
2022-04-19 12:22:59 +00:00
|
|
|
assert_line 'crowdsecurity/linux'
|
|
|
|
assert_line 'crowdsecurity/sshd'
|
|
|
|
assert_line 'crowdsecurity/dateparse-enrich'
|
|
|
|
assert_line 'crowdsecurity/geoip-enrich'
|
|
|
|
assert_line 'crowdsecurity/sshd-logs'
|
|
|
|
assert_line 'crowdsecurity/syslog-logs'
|
|
|
|
assert_line 'crowdsecurity/ssh-bf'
|
|
|
|
assert_line 'crowdsecurity/ssh-slow-bf'
|
2022-04-13 13:44:23 +00:00
|
|
|
}
|
2022-12-20 15:11:51 +00:00
|
|
|
|
|
|
|
@test "cscli support dump (smoke test)" {
|
2023-03-01 09:56:25 +00:00
|
|
|
rune -0 cscli support dump -f "$BATS_TEST_TMPDIR"/dump.zip
|
2022-12-20 15:11:51 +00:00
|
|
|
assert_file_exist "$BATS_TEST_TMPDIR"/dump.zip
|
|
|
|
}
|
2023-01-12 16:04:28 +00:00
|
|
|
|
|
|
|
@test "cscli explain" {
|
|
|
|
rune -0 cscli explain --log "Sep 19 18:33:22 scw-d95986 sshd[24347]: pam_unix(sshd:auth): authentication failure; logname= uid=0 euid=0 tty=ssh ruser= rhost=1.2.3.4" --type syslog --crowdsec "$CROWDSEC"
|
|
|
|
assert_output - <"$BATS_TEST_DIRNAME"/testdata/explain/explain-log.txt
|
|
|
|
}
|
2023-01-23 09:29:29 +00:00
|
|
|
|
2023-04-03 08:11:56 +00:00
|
|
|
@test 'Allow variable expansion and literal $ characters in passwords' {
|
2023-01-23 09:29:29 +00:00
|
|
|
export DB_PASSWORD='P@ssw0rd'
|
|
|
|
# shellcheck disable=SC2016
|
|
|
|
config_set '.db_config.password="$DB_PASSWORD"'
|
|
|
|
rune -0 cscli config show --key Config.DbConfig.Password
|
|
|
|
assert_output 'P@ssw0rd'
|
|
|
|
|
|
|
|
# shellcheck disable=SC2016
|
|
|
|
config_set '.db_config.password="$3cureP@ssw0rd"'
|
|
|
|
rune -0 cscli config show --key Config.DbConfig.Password
|
|
|
|
# shellcheck disable=SC2016
|
|
|
|
assert_output '$3cureP@ssw0rd'
|
|
|
|
|
|
|
|
config_set '.db_config.password="P@ssw0rd$"'
|
|
|
|
rune -0 cscli config show --key Config.DbConfig.Password
|
|
|
|
assert_output 'P@ssw0rd$'
|
|
|
|
}
|
2023-02-20 14:05:42 +00:00
|
|
|
|
|
|
|
@test "cscli doc" {
|
|
|
|
# generating documentation requires a directory named "doc"
|
|
|
|
|
|
|
|
cd "$BATS_TEST_TMPDIR"
|
|
|
|
rune -1 cscli doc
|
|
|
|
refute_output
|
|
|
|
assert_stderr --regexp 'Failed to generate cobra doc: open doc/.*: no such file or directory'
|
|
|
|
|
|
|
|
mkdir -p doc
|
|
|
|
rune -0 cscli doc
|
|
|
|
refute_output
|
|
|
|
refute_stderr
|
|
|
|
assert_file_exist "doc/cscli.md"
|
|
|
|
assert_file_not_exist "doc/cscli_setup.md"
|
|
|
|
|
|
|
|
# commands guarded by feature flags are not documented unless the feature flag is set
|
|
|
|
|
|
|
|
export CROWDSEC_FEATURE_CSCLI_SETUP="true"
|
|
|
|
rune -0 cscli doc
|
|
|
|
assert_file_exist "doc/cscli_setup.md"
|
|
|
|
}
|
2023-04-03 08:11:56 +00:00
|
|
|
|
|
|
|
@test "feature.yaml for subcommands" {
|
|
|
|
# it is possible to enable subcommands with feature flags defined in feature.yaml
|
|
|
|
|
|
|
|
rune -1 cscli setup
|
|
|
|
assert_stderr --partial 'unknown command \"setup\" for \"cscli\"'
|
|
|
|
CONFIG_DIR=$(dirname "$CONFIG_YAML")
|
|
|
|
echo ' - cscli_setup' >> "$CONFIG_DIR"/feature.yaml
|
|
|
|
rune -0 cscli setup
|
|
|
|
assert_output --partial 'cscli setup [command]'
|
|
|
|
}
|