]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/commitdiff
Speaup clean script
authorChocobozzz <me@florianbigard.com>
Fri, 14 Sep 2018 08:07:33 +0000 (10:07 +0200)
committerChocobozzz <me@florianbigard.com>
Fri, 14 Sep 2018 08:07:33 +0000 (10:07 +0200)
scripts/clean/server/test.sh

index 5f9a88a2ec3fe97df21b8aaab3da070f5cca2571..235ff52cc31f909694a2d7ee3fa7b983265b6d7c 100755 (executable)
@@ -2,14 +2,28 @@
 
 set -eu
 
-for i in $(seq 1 6); do
-  dbname="peertube_test$i"
+recreateDB () {
+  dbname="peertube_test$1"
 
   dropdb --if-exists "$dbname"
-  rm -rf "./test$i" "./config/local-test.json" "./config/local-test-$i.json"
 
   createdb -O peertube "$dbname"
-  psql -c "CREATE EXTENSION pg_trgm;" "$dbname"
-  psql -c "CREATE EXTENSION unaccent;" "$dbname"
-  redis-cli KEYS "bull-localhost:900$i*" | grep -v empty | xargs --no-run-if-empty redis-cli DEL
+  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
+
+wait