X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=scripts%2Fclean%2Fserver%2Ftest.sh;h=dbd399aaa5172a89981ca606e885dade2a3133bc;hb=2284f202070aa2e49156cc52b3b1596a7d5aadec;hp=7d353e375488eb4e9b44da1eed2a7eb348bfb63e;hpb=0e4ffb4b678962d5ff7a4a7d8952033bc84725da;p=github%2FChocobozzz%2FPeerTube.git diff --git a/scripts/clean/server/test.sh b/scripts/clean/server/test.sh index 7d353e375..dbd399aaa 100755 --- a/scripts/clean/server/test.sh +++ b/scripts/clean/server/test.sh @@ -2,11 +2,44 @@ set -eu -for i in $(seq 1 6); do - dropdb "peertube_test$i" - rm -rf "./test$i" - rm -f "./config/local-test.json" - rm -f "./config/local-test-$i.json" - createdb "peertube_test$i" - redis-cli KEYS "q-localhost:900$i*" | grep -v empty | xargs --no-run-if-empty redis-cli DEL +recreateDB () { + dbname="peertube_test$1" + + dropdb --if-exists "$dbname" 2>&1 + + createdb -O peertube "$dbname" + 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" ~/.config/PeerTube/CLI-$1 +} + +dropRedis () { + port=$((9000+$1)) + host="localhost" + + if [ ! -z ${GITLAB_CI+x} ]; then + host="redis" + fi + + redis-cli -h "$host" KEYS "bull-localhost:$port*" | grep -v empty | xargs --no-run-if-empty redis-cli -h "$host" DEL + redis-cli -h "$host" KEYS "redis-localhost:$port*" | grep -v empty | xargs --no-run-if-empty redis-cli -h "$host" DEL + redis-cli -h "$host" KEYS "*redis-localhost:$port-" | grep -v empty | xargs --no-run-if-empty redis-cli -h "$host" DEL +} + +seq=$(seq 1 6) + +if [ ! -z ${1+x} ]; then + seq=$1 +fi + + +for i in $seq; do + recreateDB "$i" & + dropRedis "$i" & + removeFiles "$i" & done + +wait