aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts/clean/server/test.sh
blob: 5694ac9225780bd8506ab1936873865b63847607 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#!/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
  redis-cli KEYS "redis-localhost:900$1*" | grep -v empty | xargs --no-run-if-empty redis-cli 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