summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xtests/run-tests.py13
1 files changed, 10 insertions, 3 deletions
diff --git a/tests/run-tests.py b/tests/run-tests.py
index 17f6c64..840bf5e 100755
--- a/tests/run-tests.py
+++ b/tests/run-tests.py
@@ -1,6 +1,6 @@
#!/usr/bin/env python3
-import subprocess, glob, os
+import subprocess, glob, time, os
sql_data = "INSERT INTO aulas (nombreaula, idcentro, urlfoto, grupoid, ubicacion, puestos, modomul, ipmul, pormul, velmul, router, netmask, ntp, dns, proxy, modp2p, timep2p) VALUES ('Aula virtual', 1, 'aula.jpg', 0, 'Despliegue virtual con Vagrant.', 5, 2, '239.194.2.11', 9000, 70, '192.168.56.1', '255.255.255.0', '', '', '', 'peer', 30); INSERT INTO ordenadores (nombreordenador, ip, mac, idaula, idrepositorio, idperfilhard, idmenu, idproautoexec, grupoid, router, mascara, arranque, netiface, netdriver, fotoord) VALUES ('pc2', '192.168.2.1', '0800270E6501', 1, 1, 0, 0, 0, 0, '192.168.56.1', '255.255.255.0', '00unknown', 'eth0', 'generic', 'fotoordenador.gif'), ('pc2', '192.168.2.2', '0800270E6502', 1, 1, 0, 0, 0, 0, '192.168.56.1', '255.255.255.0', '00unknown', 'eth0', 'generic', 'fotoordenador.gif');"
@@ -30,12 +30,19 @@ if os.path.isfile('../ogserver') is not True:
print('You need to build the ogserver binary to run these tests :-)')
exit()
+if os.path.isfile('/usr/bin/valgrind') is not True:
+ print('You need valgrind to run these tests :-)')
+ exit()
+
start_mysql();
-subprocess.Popen(['../ogserver -f config/ogserver.json'], shell=True)
+subprocess.Popen(['valgrind --leak-check=full --show-leak-kinds=all --track-origins=yes --verbose --log-file=./valgrind-out.log ../ogserver -f config/ogserver.json'], shell=True)
+
+print("Waiting 5 seconds for daemon to be read...")
+time.sleep(5)
subprocess.run('python3 -m unittest discover -s units -v', shell=True)
stop_mysql();
-subprocess.run(['pkill', 'ogserver'])
+subprocess.run(['pkill', '-f', 'valgrind'])