Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 4.2.x will end 22 April 2024 (12 months).
  • Bug fixes for security issues in 4.2.x will end 7 October 2024 (18 months).
  • PHP version: minimum PHP 8.0.0 Note: minimum PHP version has increased since Moodle 4.1. PHP 8.1.x is supported too.

Differences Between: [Versions 400 and 402] [Versions 401 and 402] [Versions 402 and 403]

   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  use core_external\external_api;
  18  
  19  defined('MOODLE_INTERNAL') || die();
  20  
  21  global $CFG;
  22  
  23  require_once($CFG->dirroot . '/webservice/tests/helpers.php');
  24  
  25  /**
  26   * Abstract base testcase for mod_lti unit tests.
  27   *
  28   * @package    mod_lti
  29   * @author     Andrew Madden <andrewmadden@catalyst-au.net>
  30   * @copyright  2020 Catalyst IT
  31   * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  32   */
  33  abstract class mod_lti_testcase extends externallib_advanced_testcase  {
  34  
  35      /**
  36       * Generate a tool type.
  37       *
  38       * @param string $uniqueid Each tool type needs a different base url. Provide a unique string for every tool type created.
  39       * @param int|null $toolproxyid Optional proxy to associate with tool type.
  40       * @return stdClass A tool type.
  41       */
  42      protected function generate_tool_type(string $uniqueid, ?int $toolproxyid = null): stdClass {
  43          // Create a tool type.
  44          $type = new stdClass();
  45          $type->state = LTI_TOOL_STATE_CONFIGURED;
  46          $type->name = "Test tool $uniqueid";
  47          $type->description = "Example description $uniqueid";
  48          $type->toolproxyid = $toolproxyid;
  49          $type->baseurl = $this->getExternalTestFileUrl("/test$uniqueid.html");
  50          lti_add_type($type, new stdClass());
  51          return $type;
  52      }
  53  
  54      /**
  55       * Generate a tool proxy.
  56       *
  57       * @param string $uniqueid Each tool proxy needs a different reg url. Provide a unique string for every tool proxy created.
  58       * @return stdClass A tool proxy.
  59       */
  60      protected function generate_tool_proxy(string $uniqueid): stdClass {
  61          // Create a tool proxy.
  62          $proxy = mod_lti_external::create_tool_proxy("Test proxy $uniqueid",
  63              $this->getExternalTestFileUrl("/proxy$uniqueid.html"), [], []);
  64          return (object)external_api::clean_returnvalue(mod_lti_external::create_tool_proxy_returns(), $proxy);
  65      }
  66  }