b5c6ce0d7f
Before this patch the exported users (to csv file that jmeter consumes) were all the enrolled users in the test course. And that's ok when the number of users enrolled match the number of concurrent threads planned for a jmeter plan (each thread is a user). But when both numbers don't match, that can lead to the jmeter plan not behaving as expected, because it iterates over the excessive users in the file, leading to some users having run 5 loops, others 4... The only way to make results more consistent is to, always, ensure that the number of users exported for the plan match the plan size and not the site size. And that's what this issue exactly does, restrict the export to the number of threads that the plan will have. So every user always runs the very same number of loops.
123 lines
4.3 KiB
PHP
123 lines
4.3 KiB
PHP
<?php
|
|
// This file is part of Moodle - http://moodle.org/
|
|
//
|
|
// Moodle is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// Moodle is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
/**
|
|
* CLI interface for creating a test plan
|
|
*
|
|
* @package tool_generator
|
|
* @copyright 2013 David Monllaó
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
|
|
define('CLI_SCRIPT', true);
|
|
define('NO_OUTPUT_BUFFERING', true);
|
|
|
|
require(__DIR__ . '/../../../../config.php');
|
|
require_once($CFG->libdir. '/clilib.php');
|
|
|
|
// CLI options.
|
|
list($options, $unrecognized) = cli_get_params(
|
|
array(
|
|
'help' => false,
|
|
'shortname' => false,
|
|
'size' => false,
|
|
'bypasscheck' => false,
|
|
'updateuserspassword' => false
|
|
),
|
|
array(
|
|
'h' => 'help'
|
|
)
|
|
);
|
|
|
|
$testplansizes = '* ' . implode(PHP_EOL . '* ', tool_generator_testplan_backend::get_size_choices());
|
|
|
|
// Display help.
|
|
if (!empty($options['help']) || empty($options['shortname']) || empty($options['size'])) {
|
|
|
|
echo get_string('testplanexplanation', 'tool_generator', tool_generator_testplan_backend::get_repourl()) .
|
|
"Options:
|
|
-h, --help Print out this help
|
|
--shortname Shortname of the test plan's target course (required)
|
|
--size Size of the test plan to create XS, S, M, L, XL, or XXL (required)
|
|
--bypasscheck Bypasses the developer-mode check (be careful!)
|
|
--updateuserspassword Updates the target course users password according to \$CFG->tool_generator_users_password
|
|
|
|
$testplansizes
|
|
|
|
Consider that, the server resources you will need to run the test plan will be higher as the test plan size is higher.
|
|
|
|
Example from Moodle root directory:
|
|
\$ sudo -u www-data /usr/bin/php admin/tool/generator/cli/maketestplan.php --shortname=\"testcourse_12\" --size=S
|
|
";
|
|
// Exit with error unless we're showing this because they asked for it.
|
|
exit(empty($options['help']) ? 1 : 0);
|
|
}
|
|
|
|
// Check debugging is set to developer level.
|
|
if (empty($options['bypasscheck']) && !$CFG->debugdeveloper) {
|
|
cli_error(get_string('error_notdebugging', 'tool_generator'));
|
|
}
|
|
|
|
// Get options.
|
|
$shortname = $options['shortname'];
|
|
$sizename = $options['size'];
|
|
|
|
// Check size.
|
|
try {
|
|
$size = tool_generator_testplan_backend::size_for_name($sizename);
|
|
} catch (coding_exception $e) {
|
|
cli_error("Error: Invalid size ($sizename). Use --help for help.");
|
|
}
|
|
|
|
// Check selected course.
|
|
if ($errors = tool_generator_testplan_backend::has_selected_course_any_problem($shortname, $size)) {
|
|
// Showing the first reported problem.
|
|
cli_error("Error: " . reset($errors));
|
|
}
|
|
|
|
// Checking if test users password is set.
|
|
if (empty($CFG->tool_generator_users_password) || is_bool($CFG->tool_generator_users_password)) {
|
|
cli_error("Error: " . get_string('error_nouserspassword', 'tool_generator'));
|
|
}
|
|
|
|
// Switch to admin user account.
|
|
\core\session\manager::set_user(get_admin());
|
|
|
|
// Create files.
|
|
$courseid = $DB->get_field('course', 'id', array('shortname' => $shortname));
|
|
$usersfile = tool_generator_testplan_backend::create_users_file($courseid, !empty($options['updateuserspassword']), $size);
|
|
$testplanfile = tool_generator_testplan_backend::create_testplan_file($courseid, $size);
|
|
|
|
// One file path per line so other CLI scripts can easily parse the output.
|
|
echo moodle_url::make_pluginfile_url(
|
|
$testplanfile->get_contextid(),
|
|
$testplanfile->get_component(),
|
|
$testplanfile->get_filearea(),
|
|
$testplanfile->get_itemid(),
|
|
$testplanfile->get_filepath(),
|
|
$testplanfile->get_filename()
|
|
) .
|
|
PHP_EOL .
|
|
moodle_url::make_pluginfile_url(
|
|
$usersfile->get_contextid(),
|
|
$usersfile->get_component(),
|
|
$usersfile->get_filearea(),
|
|
$usersfile->get_itemid(),
|
|
$usersfile->get_filepath(),
|
|
$usersfile->get_filename()
|
|
) .
|
|
PHP_EOL;
|