]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - scripts/clean/server/test.sh
Add comments in nginx regarding blocks that can be safely removed
[github/Chocobozzz/PeerTube.git] / scripts / clean / server / test.sh
index 2ceb7124450bdb29a49efd5eb0b86b4eb501a350..235ff52cc31f909694a2d7ee3fa7b983265b6d7c 100755 (executable)
@@ -1,9 +1,29 @@
-#!/usr/bin/env sh
+#!/bin/sh
+
+set -eu
+
+recreateDB () {
+  dbname="peertube_test$1"
+
+  dropdb --if-exists "$dbname"
+
+  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"
+}
+
+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
-  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"
+  recreateDB "$i" &
+  dropRedis "$i" &
+  removeFiles "$i" &
 done
+
+wait