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

42 lines
878 B
Bash
Raw Normal View History

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