generated from Arquisoft/wiq_0
-
Notifications
You must be signed in to change notification settings - Fork 1
/
e2eTest.sh
42 lines (33 loc) · 1.02 KB
/
e2eTest.sh
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
38
39
40
41
42
#!/bin/bash
# Detener todos los contenedores Docker
docker stop $(docker ps -aq)
# Navegar a la carpeta e2e en tu directorio home
cd ~/e2e
# Vaciar la carpeta e2e
rm -rf *
# Clonar el repositorio
git clone https://github.com/Arquisoft/wiq_es05c.git
cd wiq_es05c
# Configurar Node.js
nvm install 21
nvm use 21
# Instalar dependencias y construir la aplicación web
npm --prefix users/authservice install
npm --prefix users/userservice install
npm --prefix gatewayservice install
npm --prefix historyservice install
npm --prefix questionservice install
npm --prefix roomservice install
npm --prefix webapp install
npm --prefix webapp run build
# Ejecutar pruebas e2e
xvfb-run --auto-servernum npm --prefix webapp run test:e2e
# Capturar el estado de salida de las pruebas
TEST_STATUS=$?
# Si las pruebas fallaron, reiniciar todos los contenedores Docker y imprimir un mensaje
if [ $TEST_STATUS -ne 0 ]; then
echo "Fallaron los tests"
docker start $(docker ps -aq)
fi
# Salir con el estado de salida de las pruebas
exit $TEST_STATUS