Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 3.10.x will end 8 November 2021 (12 months).
  • Bug fixes for security issues in 3.10.x will end 9 May 2022 (18 months).
  • PHP version: minimum PHP 7.2.0 Note: minimum PHP version has increased since Moodle 3.8. PHP 7.3.x and 7.4.x are supported too.

Differences Between: [Versions 310 and 311] [Versions 310 and 400] [Versions 310 and 401] [Versions 310 and 402] [Versions 310 and 403] [Versions 39 and 310]

   1  <?php
   2  // This file is part of Moodle - http://moodle.org/
   3  //
   4  // Moodle is free software: you can redistribute it and/or modify
   5  // it under the terms of the GNU General Public License as published by
   6  // the Free Software Foundation, either version 3 of the License, or
   7  // (at your option) any later version.
   8  //
   9  // Moodle is distributed in the hope that it will be useful,
  10  // but WITHOUT ANY WARRANTY; without even the implied warranty of
  11  // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12  // GNU General Public License for more details.
  13  //
  14  // You should have received a copy of the GNU General Public License
  15  // along with Moodle.  If not, see <http://www.gnu.org/licenses/>.
  16  
  17  /**
  18   * Unit tests for user/lib.php.
  19   *
  20   * @package    core_user
  21   * @copyright  2017 Damyon Wiese
  22   * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  23   */
  24  
  25  defined('MOODLE_INTERNAL') || die();
  26  
  27  /**
  28   * Unit tests for user roles editable class.
  29   *
  30   * @package    core_user
  31   * @copyright  2017 Damyon Wiese
  32   * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  33   */
  34  class userroleseditable_testcase extends advanced_testcase {
  35      /**
  36       * Test user roles editable.
  37       */
  38      public function test_update() {
  39          global $DB;
  40  
  41          $this->resetAfterTest();
  42  
  43          // Create user and modify user profile.
  44          $user1 = $this->getDataGenerator()->create_user();
  45          $user2 = $this->getDataGenerator()->create_user();
  46  
  47          $course1 = $this->getDataGenerator()->create_course();
  48          $coursecontext = context_course::instance($course1->id);
  49          $teacherrole = $DB->get_record('role', array('shortname' => 'teacher'));
  50          $studentrole = $DB->get_record('role', array('shortname' => 'student'));
  51          $this->getDataGenerator()->enrol_user($user1->id, $course1->id);
  52          $this->getDataGenerator()->enrol_user($user2->id, $course1->id);
  53          role_assign($teacherrole->id, $user1->id, $coursecontext->id);
  54          role_assign($teacherrole->id, $user2->id, $coursecontext->id);
  55  
  56          $this->setAdminUser();
  57          accesslib_clear_all_caches_for_unit_testing();
  58  
  59          // Use the userroleseditable api to remove all roles from user1 and give user2 student and teacher.
  60          $itemid = $course1->id . ':' . $user1->id;
  61          $newvalue = json_encode([]);
  62  
  63          $result = \core_user\output\user_roles_editable::update($itemid, $newvalue);
  64          $this->assertTrue($result instanceof \core_user\output\user_roles_editable);
  65  
  66          $currentroles = get_user_roles_in_course($user1->id, $course1->id);
  67  
  68          $this->assertEmpty($currentroles);
  69  
  70          $this->setAdminUser();
  71          accesslib_clear_all_caches_for_unit_testing();
  72  
  73          $itemid = $course1->id . ':' . $user2->id;
  74          $newvalue = json_encode([$teacherrole->id, $studentrole->id]);
  75  
  76          $result = \core_user\output\user_roles_editable::update($itemid, $newvalue);
  77          $this->assertTrue($result instanceof \core_user\output\user_roles_editable);
  78          $currentroles = get_user_roles_in_course($user2->id, $course1->id);
  79  
  80          $this->assertStringContainsString('Non-editing teacher', $currentroles);
  81          $this->assertStringContainsString('Student', $currentroles);
  82  
  83      }
  84  
  85  }