From c2c6ce93b1feecbcc79b4d52cf68823f14e88410 Mon Sep 17 00:00:00 2001 From: Javier Sánchez Parra Date: Fri, 16 Apr 2021 13:39:03 +0200 Subject: #915 Add large HTTP response test This commit adds a test for HTTP responses that are too large to fit in ogServer response buffer. It also moves the basic sql data used for the other tests to its own file, easing its reuse in several files. --- tests/config/basic_data.sql | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 tests/config/basic_data.sql (limited to 'tests/config/basic_data.sql') diff --git a/tests/config/basic_data.sql b/tests/config/basic_data.sql new file mode 100644 index 0000000..aca246d --- /dev/null +++ b/tests/config/basic_data.sql @@ -0,0 +1,41 @@ + +DELETE FROM centros; +INSERT INTO centros ( + idcentro, nombrecentro, identidad, comentarios, directorio) +VALUES +(1, 'Center', 1, '', ''); + +DELETE FROM aulas; +INSERT INTO aulas ( + nombreaula, idcentro, urlfoto, grupoid, + ubicacion, puestos, modomul, ipmul, + pormul, velmul, router, netmask, ntp, + dns, proxy, modp2p, timep2p +) +VALUES + ( + 'Room', 1, 'aula.jpg', 0, 'Test room.', + 5, 2, '239.194.2.11', 9000, 70, '192.168.56.1', + '255.255.255.0', '', '', '', 'peer', + 30 + ); + +DELETE FROM ordenadores; +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' + ); + -- cgit v1.2.3-18-g5258