Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 3.11.x will end 14 Nov 2022 (12 months plus 6 months extension).
  • Bug fixes for security issues in 3.11.x will end 13 Nov 2023 (18 months plus 12 months extension).
  • PHP version: minimum PHP 7.3.0 Note: minimum PHP version has increased since Moodle 3.10. PHP 7.4.x is supported too.
<?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/>.

namespace gradereport_singleview;

use gradereport_singleview_screen_testable;

defined('MOODLE_INTERNAL') || die();

global $CFG;
require_once(__DIR__ . '/fixtures/screen.php');
require_once($CFG->libdir . '/gradelib.php');

/**
 * Tests for screen class.
 *
 * @package    gradereport_singleview
 * @category   test
 * @copyright  2014 onwards Simey Lameze <simey@moodle.com>
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
 */
class screen_test extends \advanced_testcase {

    /**
     * Test load_users method.
     */
    public function test_load_users() {
        global $DB;

        $this->setAdminUser();
        $this->resetAfterTest(true);

< $roleteacher = $DB->get_record('role', array('shortname' => 'teacher'), '*', MUST_EXIST);
> $roleteacher = $DB->get_record('role', ['shortname' => 'teacher'], '*', MUST_EXIST);
// Create a course, users and groups. $course = $this->getDataGenerator()->create_course(); $coursecontext = \context_course::instance($course->id);
< $group = $this->getDataGenerator()->create_group(array('courseid' => $course->id));
> $group = $this->getDataGenerator()->create_group(['courseid' => $course->id]);
$teacher = $this->getDataGenerator()->create_user(); $user1 = $this->getDataGenerator()->create_user(); $user2 = $this->getDataGenerator()->create_user(); $this->getDataGenerator()->enrol_user($teacher->id, $course->id, $roleteacher->id); $this->getDataGenerator()->enrol_user($user1->id, $course->id); $this->getDataGenerator()->enrol_user($user2->id, $course->id);
< $this->getDataGenerator()->create_group_member(array('groupid' => $group->id, 'userid' => $teacher->id)); < $this->getDataGenerator()->create_group_member(array('groupid' => $group->id, 'userid' => $user1->id)); < $this->getDataGenerator()->create_group_member(array('groupid' => $group->id, 'userid' => $user2->id));
> $this->getDataGenerator()->create_group_member(['groupid' => $group->id, 'userid' => $teacher->id]); > $this->getDataGenerator()->create_group_member(['groupid' => $group->id, 'userid' => $user1->id]); > $this->getDataGenerator()->create_group_member(['groupid' => $group->id, 'userid' => $user2->id]);
// Perform a regrade before creating the report. grade_regrade_final_grades($course->id); $screentest = new gradereport_singleview_screen_testable($course->id, 0, $group->id); $groupusers = $screentest->test_load_users();
> $this->assertDebuggingCalled('The function load_users() is deprecated. ' . $this->assertCount(2, $groupusers); > 'Please use grade_report::get_gradable_users() instead.');
// Now, let's suspend the enrolment of a user. Should return only one user. $this->getDataGenerator()->enrol_user($user2->id, $course->id, $roleteacher->id, 'manual', 0, 0, ENROL_USER_SUSPENDED); $users = $screentest->test_load_users();
> $this->assertDebuggingCalled('The function load_users() is deprecated. ' . $this->assertCount(1, $users); > 'Please use grade_report::get_gradable_users() instead.');
// Change the viewsuspendedusers capabilities and set the user preference to display suspended users. assign_capability('moodle/course:viewsuspendedusers', CAP_ALLOW, $roleteacher->id, $coursecontext, true); set_user_preference('grade_report_showonlyactiveenrol', false, $teacher); accesslib_clear_all_caches_for_unit_testing(); $this->setUser($teacher); $screentest = new gradereport_singleview_screen_testable($course->id, 0, $group->id); $users = $screentest->test_load_users();
> $this->assertDebuggingCalled('The function load_users() is deprecated. ' . $this->assertCount(2, $users); > 'Please use grade_report::get_gradable_users() instead.');
// Change the capability again, now the user can't see the suspended enrolments. assign_capability('moodle/course:viewsuspendedusers', CAP_PROHIBIT, $roleteacher->id, $coursecontext, true); set_user_preference('grade_report_showonlyactiveenrol', false, $teacher); accesslib_clear_all_caches_for_unit_testing(); $users = $screentest->test_load_users();
> $this->assertDebuggingCalled('The function load_users() is deprecated. ' . $this->assertCount(1, $users); > 'Please use grade_report::get_gradable_users() instead.');
// Now, activate the user enrolment again. We shall get 2 users now. $this->getDataGenerator()->enrol_user($user2->id, $course->id, $roleteacher->id, 'manual', 0, 0, ENROL_USER_ACTIVE); $users = $screentest->test_load_users();
> $this->assertDebuggingCalled('The function load_users() is deprecated. ' . $this->assertCount(2, $users); > 'Please use grade_report::get_gradable_users() instead.');
} }