PeerTube/scripts/clean/server/test.sh

42 lines
878 B
Bash
Raw Normal View History

2018-03-27 10:35:12 +02:00
#!/bin/sh
set -eu
2018-09-14 10:07:33 +02:00
recreateDB () {
dbname="peertube_test$1"
2018-07-19 16:17:54 +02:00
2019-07-29 11:59:29 +02:00
dropdb --if-exists "$dbname" 2>&1
2018-09-14 09:57:21 +02:00
2018-07-19 16:17:54 +02:00
createdb -O peertube "$dbname"
2018-09-14 10:07:33 +02:00
psql -c "CREATE EXTENSION pg_trgm;" "$dbname" &
psql -c "CREATE EXTENSION unaccent;" "$dbname" &
}
removeFiles () {
2019-06-13 11:09:38 +02:00
rm -rf "./test$1" "./config/local-test.json" "./config/local-test-$1.json" ~/.config/PeerTube/CLI-$1
2018-09-14 10:07:33 +02:00
}
dropRedis () {
2019-05-31 14:02:26 +02:00
port=$((9000+$1))
2022-12-09 11:14:47 +01:00
host="127.0.0.1"
2019-05-31 14:02:26 +02:00
2022-12-09 11:14:47 +01:00
redis-cli -h "$host" KEYS "bull-127.0.0.1:$port*" | grep -v empty | xargs -r redis-cli -h "$host" DEL
redis-cli -h "$host" KEYS "redis-127.0.0.1:$port*" | grep -v empty | xargs -r redis-cli -h "$host" DEL
redis-cli -h "$host" KEYS "*redis-127.0.0.1:$port-" | grep -v empty | xargs -r redis-cli -h "$host" DEL
2018-09-14 10:07:33 +02:00
}
2019-04-24 10:53:40 +02:00
seq=$(seq 1 6)
if [ ! -z ${1+x} ]; then
seq=$1
fi
for i in $seq; do
2018-09-14 10:07:33 +02:00
recreateDB "$i" &
dropRedis "$i" &
removeFiles "$i" &
done
2018-09-14 10:07:33 +02:00
wait