Load tests in moodle 41 (update 2025)

Versión 1 (Emilio Penna, Lunes, 10 de Marzo de 2025 13:07:26 -0300)

1 1
h1. Load tests in moodle 41 (update 2025)
2 1
3 1
4 1
5 1
h2. Files for load tests
6 1
7 1
Attached there are the following files:
8 1
9 1
10 1
* Moodle quiz backup
11 1
* Test users file, for enrollment in the test course
12 1
* Jmeter script for load test (jmx)
13 1
14 1
15 1
h2. Setting up the test data 
16 1
17 1
18 1
1. Create a course for the quiz
19 1
Create a new course, or use a existing one or a generated one (for example TestCourse S)
20 1
21 1
2. Restore the quiz mbz 
22 1
23 1
3. Upload test users (with enrolment to the new course)
24 1
25 1
The file usuarios_curso.csv contains 5k users. The csv file has a column that indicates the shortname of the course to enrol the users, edit the file and adjust the name of the course. Then  upload the users via site administration, users, accounts, upload users. In the form set "force password change": none. Take appropiate care as the file also contains the password of the users.
26 1
27 1
28 1
29 1
30 1
h2. Configuration of the jmeter script
31 1
32 1
33 1
(The script was tested with jmeter 5.4.1 and moodle 3.8)
34 1
35 1
The script uses plugins, so the plugins-manager.jar is required. It can be downloaded from https://jmeter-plugins.org/install/Install/ and put in the lib/ext directory of jmeter (jmeter restart required).
36 1
37 1
The parameters for the test are:
38 1
39 1
1. In "Configuracion del CSV dataset" you have to set the path and name of the users file (usuarios5000.csv)
40 1
2. In "plan de pruebas", you have to configure the course id, quiz id and server url.
41 1
3. In "valores por defecto para peticion HTTP" set the server url
42 1
 servidor
43 1
44 1
In  "grupo de hilos original" the threads number and ramp up time can be specified. Start with only 1 thread until the test run with no errors, then try more threads, in an incremental way. In our tests, we used, up  3000 threads with a 180 seconds ramp up.
45 1
46 1
TO DO: The script has "Assertions" for controlling that the server response is what we expect in a successful execution, it works inspecting the html in the response with a pre-defined text. We used, for example "Pagina 1 de 8", a text that appears in the bottom of the quiz pages. This text is in spanish, so it works if the language for the users is spanish. You can change that assertion text, or set lang=es in the mdl_user table, with an
47 1
<pre>
48 1
update mdl_user set lang='es' where username like 'prueba%'; 
49 1
</pre> 
50 1
51 1
52 1
h2. Tips for running the tests:
53 1
54 1
* We ran the script with a maximum of 1500 threads per client (generator). If more is used, is probable that errors appear but they are because the client cant support that load, in that case, you can run more than one client at the same time, or use the jmeter capabilities to do a distributed load test.
55 1
56 1
57 1
Running from command line:
58 1
59 1
<pre>
60 1
$ ./jmeter -n -t /home/epenna/moodle-quiz3-v1.jmx -l /home/epenna/jmeterout.jtl
61 1
</pre>