1
0
Fork 0
peertube/scripts/clean/server/test.sh

42 lines
878 B
Bash
Raw Normal View History

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