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

30 lines
540 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
dropdb --if-exists "$dbname"
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 () {
rm -rf "./test$1" "./config/local-test.json" "./config/local-test-$1.json"
}
dropRedis () {
redis-cli KEYS "bull-localhost:900$1*" | grep -v empty | xargs --no-run-if-empty redis-cli DEL
}
for i in $(seq 1 6); do
recreateDB "$i" &
dropRedis "$i" &
removeFiles "$i" &
done
2018-09-14 04:07:33 -04:00
wait