小草林(田梓萱)
90db12dfc0
Some checks failed
Lock closed issues/PRs / lock (push) Has been cancelled
Test / Sentry self-hosted end-to-end tests (push) Has been cancelled
Test / unit tests (push) Has been cancelled
Test / Sentry upgrade test (push) Has been cancelled
Test / integration test v2.19.0 - customizations disabled (push) Has been cancelled
Test / integration test v2.19.0 - customizations enabled (push) Has been cancelled
Test / integration test v2.26.0 - customizations disabled (push) Has been cancelled
Test / integration test v2.26.0 - customizations enabled (push) Has been cancelled
Signed-off-by: 小草林(田梓萱) <xcl@xuegao-tzx.top>
29 lines
591 B
Bash
Executable File
29 lines
591 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
source _unit-test/_test_setup.sh
|
|
|
|
get_volumes() {
|
|
# If grep returns no strings, we still want to return without error
|
|
docker volume ls --quiet | { grep '^sentry-.*' || true; } | sort
|
|
}
|
|
|
|
# Maybe they exist prior, maybe they don't. Script is idempotent.
|
|
|
|
expected_volumes="sentry-clickhouse
|
|
sentry-data
|
|
sentry-kafka
|
|
sentry-postgres
|
|
sentry-redis
|
|
sentry-symbolicator"
|
|
|
|
before=$(get_volumes)
|
|
|
|
test "$before" == "" || test "$before" == "$expected_volumes"
|
|
|
|
source install/create-docker-volumes.sh
|
|
|
|
after=$(get_volumes)
|
|
test "$after" == "$expected_volumes"
|
|
|
|
report_success
|