[ Index ]

PHP Cross Reference of Unnamed Project

title

Body

[close]

/mod/resource/tests/ -> externallib_test.php (source)

   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   * External mod_resource functions unit tests
  19   *
  20   * @package    mod_resource
  21   * @category   external
  22   * @copyright  2015 Juan Leyva <juan@moodle.com>
  23   * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  24   * @since      Moodle 3.0
  25   */
  26  
  27  defined('MOODLE_INTERNAL') || die();
  28  
  29  global $CFG;
  30  
  31  require_once($CFG->dirroot . '/webservice/tests/helpers.php');
  32  
  33  /**
  34   * External mod_resource functions unit tests
  35   *
  36   * @package    mod_resource
  37   * @category   external
  38   * @copyright  2015 Juan Leyva <juan@moodle.com>
  39   * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  40   * @since      Moodle 3.0
  41   */
  42  class mod_resource_external_testcase extends externallib_advanced_testcase {
  43  
  44      /**
  45       * Test view_resource
  46       */
  47      public function test_view_resource() {
  48          global $DB;
  49  
  50          $this->resetAfterTest(true);
  51  
  52          $this->setAdminUser();
  53          // Setup test data.
  54          $course = $this->getDataGenerator()->create_course();
  55          $resource = $this->getDataGenerator()->create_module('resource', array('course' => $course->id));
  56          $context = context_module::instance($resource->cmid);
  57          $cm = get_coursemodule_from_instance('resource', $resource->id);
  58  
  59          // Test invalid instance id.
  60          try {
  61              mod_resource_external::view_resource(0);
  62              $this->fail('Exception expected due to invalid mod_resource instance id.');
  63          } catch (moodle_exception $e) {
  64              $this->assertEquals('invalidrecord', $e->errorcode);
  65          }
  66  
  67          // Test not-enrolled user.
  68          $user = self::getDataGenerator()->create_user();
  69          $this->setUser($user);
  70          try {
  71              mod_resource_external::view_resource($resource->id);
  72              $this->fail('Exception expected due to not enrolled user.');
  73          } catch (moodle_exception $e) {
  74              $this->assertEquals('requireloginerror', $e->errorcode);
  75          }
  76  
  77          // Test user with full capabilities.
  78          $studentrole = $DB->get_record('role', array('shortname' => 'student'));
  79          $this->getDataGenerator()->enrol_user($user->id, $course->id, $studentrole->id);
  80  
  81          // Trigger and capture the event.
  82          $sink = $this->redirectEvents();
  83  
  84          $result = mod_resource_external::view_resource($resource->id);
  85          $result = external_api::clean_returnvalue(mod_resource_external::view_resource_returns(), $result);
  86  
  87          $events = $sink->get_events();
  88          $this->assertCount(1, $events);
  89          $event = array_shift($events);
  90  
  91          // Checking that the event contains the expected values.
  92          $this->assertInstanceOf('\mod_resource\event\course_module_viewed', $event);
  93          $this->assertEquals($context, $event->get_context());
  94          $moodleurl = new \moodle_url('/mod/resource/view.php', array('id' => $cm->id));
  95          $this->assertEquals($moodleurl, $event->get_url());
  96          $this->assertEventContextNotUsed($event);
  97          $this->assertNotEmpty($event->get_name());
  98  
  99          // Test user with no capabilities.
 100          // We need a explicit prohibit since this capability is only defined in authenticated user and guest roles.
 101          assign_capability('mod/resource:view', CAP_PROHIBIT, $studentrole->id, $context->id);
 102          // Empty all the caches that may be affected by this change.
 103          accesslib_clear_all_caches_for_unit_testing();
 104          course_modinfo::clear_instance_cache();
 105  
 106          try {
 107              mod_resource_external::view_resource($resource->id);
 108              $this->fail('Exception expected due to missing capability.');
 109          } catch (moodle_exception $e) {
 110              $this->assertEquals('requireloginerror', $e->errorcode);
 111          }
 112  
 113      }
 114  }


Generated: Thu Aug 11 10:00:09 2016 Cross-referenced by PHPXref 0.7.1