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.
<?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/>.

< /** < * Unit tests for the activity label's lib. < * < * @package mod_label < * @category test < * @copyright 2017 Mark Nelson <markn@moodle.com> < * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later < */ < < defined('MOODLE_INTERNAL') || die(); <
> namespace mod_label;
/** * Unit tests for the activity label's lib. * * @package mod_label * @category test * @copyright 2017 Mark Nelson <markn@moodle.com> * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */
< class mod_label_lib_testcase extends advanced_testcase {
> class lib_test extends \advanced_testcase {
/** * Set up. */ public function setUp(): void { $this->resetAfterTest(); $this->setAdminUser(); } public function test_label_core_calendar_provide_event_action() { // Create the activity. $course = $this->getDataGenerator()->create_course(); $label = $this->getDataGenerator()->create_module('label', array('course' => $course->id)); // Create a calendar event. $event = $this->create_action_event($course->id, $label->id, \core_completion\api::COMPLETION_EVENT_TYPE_DATE_COMPLETION_EXPECTED); // Create an action factory. $factory = new \core_calendar\action_factory(); // Decorate action event. $actionevent = mod_label_core_calendar_provide_event_action($event, $factory); // Confirm the event was decorated. $this->assertInstanceOf('\core_calendar\local\event\value_objects\action', $actionevent); $this->assertEquals(get_string('view'), $actionevent->get_name()); $this->assertInstanceOf('moodle_url', $actionevent->get_url()); $this->assertEquals(1, $actionevent->get_item_count()); $this->assertTrue($actionevent->is_actionable()); } public function test_label_core_calendar_provide_event_action_as_non_user() { global $CFG; // Create the activity. $course = $this->getDataGenerator()->create_course(); $label = $this->getDataGenerator()->create_module('label', array('course' => $course->id)); // Create a calendar event. $event = $this->create_action_event($course->id, $label->id, \core_completion\api::COMPLETION_EVENT_TYPE_DATE_COMPLETION_EXPECTED); // Now log out. $CFG->forcelogin = true; // We don't want to be logged in as guest, as guest users might still have some capabilities. $this->setUser(); // Create an action factory. $factory = new \core_calendar\action_factory(); // Decorate action event. $actionevent = mod_label_core_calendar_provide_event_action($event, $factory); // Confirm the event is not shown at all. $this->assertNull($actionevent); } public function test_label_core_calendar_provide_event_action_in_hidden_section() { // Create the activity. $course = $this->getDataGenerator()->create_course(); $label = $this->getDataGenerator()->create_module('label', array('course' => $course->id)); // Create a student. $student = $this->getDataGenerator()->create_and_enrol($course, 'student'); // Create a calendar event. $event = $this->create_action_event($course->id, $label->id, \core_completion\api::COMPLETION_EVENT_TYPE_DATE_COMPLETION_EXPECTED); // Set sections 0 as hidden. set_section_visible($course->id, 0, 0); // Create an action factory. $factory = new \core_calendar\action_factory(); // Decorate action event for the student. $actionevent = mod_label_core_calendar_provide_event_action($event, $factory, $student->id); // Confirm the event is not shown at all. $this->assertNull($actionevent); } public function test_label_core_calendar_provide_event_action_for_user() { global $CFG; // Create the activity. $course = $this->getDataGenerator()->create_course(); $label = $this->getDataGenerator()->create_module('label', array('course' => $course->id)); // Enrol a student in the course. $student = $this->getDataGenerator()->create_and_enrol($course, 'student'); // Create a calendar event. $event = $this->create_action_event($course->id, $label->id, \core_completion\api::COMPLETION_EVENT_TYPE_DATE_COMPLETION_EXPECTED); // Now, log out. $CFG->forcelogin = true; // We don't want to be logged in as guest, as guest users might still have some capabilities. $this->setUser(); // Create an action factory. $factory = new \core_calendar\action_factory(); // Decorate action event for the student. $actionevent = mod_label_core_calendar_provide_event_action($event, $factory, $student->id); // Confirm the event was decorated. $this->assertInstanceOf('\core_calendar\local\event\value_objects\action', $actionevent); $this->assertEquals(get_string('view'), $actionevent->get_name()); $this->assertInstanceOf('moodle_url', $actionevent->get_url()); $this->assertEquals(1, $actionevent->get_item_count()); $this->assertTrue($actionevent->is_actionable()); } public function test_label_core_calendar_provide_event_action_already_completed() { global $CFG; $CFG->enablecompletion = 1; // Create the activity. $course = $this->getDataGenerator()->create_course(array('enablecompletion' => 1)); $label = $this->getDataGenerator()->create_module('label', array('course' => $course->id), array('completion' => 2, 'completionview' => 1, 'completionexpected' => time() + DAYSECS)); // Get some additional data. $cm = get_coursemodule_from_instance('label', $label->id); // Create a calendar event. $event = $this->create_action_event($course->id, $label->id, \core_completion\api::COMPLETION_EVENT_TYPE_DATE_COMPLETION_EXPECTED); // Mark the activity as completed.
< $completion = new completion_info($course);
> $completion = new \completion_info($course);
$completion->set_module_viewed($cm); // Create an action factory. $factory = new \core_calendar\action_factory(); // Decorate action event. $actionevent = mod_label_core_calendar_provide_event_action($event, $factory); // Ensure result was null. $this->assertNull($actionevent); } public function test_label_core_calendar_provide_event_action_already_completed_for_user() { global $CFG; $CFG->enablecompletion = 1; // Create the activity. $course = $this->getDataGenerator()->create_course(array('enablecompletion' => 1)); $label = $this->getDataGenerator()->create_module('label', array('course' => $course->id), array('completion' => 2, 'completionview' => 1, 'completionexpected' => time() + DAYSECS)); // Enrol a student in the course. $student = $this->getDataGenerator()->create_and_enrol($course, 'student'); // Get some additional data. $cm = get_coursemodule_from_instance('label', $label->id); // Create a calendar event. $event = $this->create_action_event($course->id, $label->id, \core_completion\api::COMPLETION_EVENT_TYPE_DATE_COMPLETION_EXPECTED); // Mark the activity as completed for the student.
< $completion = new completion_info($course);
> $completion = new \completion_info($course);
$completion->set_module_viewed($cm, $student->id); // Create an action factory. $factory = new \core_calendar\action_factory(); // Decorate action event for the student. $actionevent = mod_label_core_calendar_provide_event_action($event, $factory, $student->id); // Ensure result was null. $this->assertNull($actionevent); } /**
> * Check label name with different content inserted in the label intro. * Creates an action event. > * * > * @param string $name * @param int $courseid The course id. > * @param string $content * @param int $instanceid The instance id. > * @param string $format * @param string $eventtype The event type. > * @param string $expectedname * @return bool|calendar_event > * @return void */ > * @covers \get_label_name private function create_action_event($courseid, $instanceid, $eventtype) { > * @dataProvider label_get_name_data_provider $event = new stdClass(); > */ $event->name = 'Calendar event'; > public function test_label_get_label_name(string $name, string $content, string $format, string $expectedname): void { $event->modulename = 'label'; > $course = $this->getDataGenerator()->create_course(); $event->courseid = $courseid; > // When creating the module, get_label_name is called and fills label->name. $event->instance = $instanceid; > $label = $this->getDataGenerator()->create_module('label', [ $event->type = CALENDAR_EVENT_TYPE_ACTION; > 'name' => $name, $event->eventtype = $eventtype; > 'course' => $course->id, $event->timestart = time(); > 'intro' => $content, > 'introformat' => $format return calendar_event::create($event); > ] } > ); } > > $this->assertEquals($expectedname, $label->name); > } > > /** > * Dataprovider for test_label_get_label_name > * > * @return array > */ > public function label_get_name_data_provider(): array { > return [ > 'withlabelname' => [ > 'name' => 'Test label 1', > 'content' => '<p>Simple textual content<p>', > 'format' => FORMAT_HTML, > 'expected' => 'Test label 1' > ], > 'simple' => [ > 'name' => '', > 'content' => '<p>Simple textual content<p>', > 'format' => FORMAT_HTML, > 'expected' => 'Simple textual content' > ], > 'empty' => [ > 'name' => '', > 'content' => '', > 'format' => FORMAT_HTML, > 'expected' => 'Test label 1' > ], > 'withaudiocontent' => [ > 'name' => '', > 'content' => '<p>Test with audio</p> > <p>&nbsp; &nbsp;<audio controls="controls"> > <source src="@@PLUGINFILE@@/moodle-hit-song.mp3"> > @@PLUGINFILE@@/moodle-hit-song.mp3 > </audio>&nbsp;</p>', > 'format' => FORMAT_HTML, > 'expected' => 'Test with audio' > ], > 'withvideo' => [ > 'name' => '', > 'content' => '<p>Test video</p> > <p>&nbsp;<video controls="controls"> > <source src="https://www.youtube.com/watch?v=xxxyy"> > https://www.youtube.com/watch?v=xxxyy > </video>&nbsp;</p>', > 'format' => FORMAT_HTML, > 'expected' => 'Test video https://www.youtube.com/watch?v=xxxyy' > ], > 'with video trimming' => [ > 'name' => '', > 'content' => '<p>Test with video to be trimmed</p> > <p>&nbsp;<video controls="controls"> > <source src="https://www.youtube.com/watch?v=xxxyy"> > https://www.youtube.com/watch?v=xxxyy > </video>&nbsp;</p>', > 'format' => FORMAT_HTML, > 'expected' => 'Test with video to be trimmed https://www.youtube....' > ], > 'with plain text' => [ > 'name' => '', > 'content' => 'Content with @@PLUGINFILE@@/moodle-hit-song.mp3 nothing', > 'format' => FORMAT_HTML, > 'expected' => 'Content with nothing' > ], > 'with several spaces' => [ > 'name' => '', > 'content' => "Content with @@PLUGINFILE@@/moodle-hit-song.mp3 \r &nbsp; several spaces", > 'format' => FORMAT_HTML, > 'expected' => 'Content with several spaces' > ], > 'empty spaces' => [ > 'name' => '', > 'content' => ' &nbsp; ', > 'format' => FORMAT_HTML, > 'expected' => 'Text and media area' > ], > 'only html' => [ > 'name' => '', > 'content' => '<audio controls="controls"><source src=""></audio>', > 'format' => FORMAT_HTML, > 'expected' => 'Text and media area' > ], > 'markdown' => [ > 'name' => '', > 'content' => "##Simple Title\n simple markdown format", > 'format' => FORMAT_MARKDOWN, > 'expected' => 'Simple Title simple markdown format' > ], > 'markdown with pluginfile' => [ > 'name' => '', > 'content' => "##Simple Title\n simple markdown format @@PLUGINFILE@@/moodle-hit-song.mp3", > 'format' => FORMAT_MARKDOWN, > 'expected' => 'Simple Title simple markdown format' > ], > 'plain text' => [ > 'name' => '', > 'content' => "Simple plain text @@PLUGINFILE@@/moodle-hit-song.mp3", > 'format' => FORMAT_PLAIN, > 'expected' => 'Simple plain text' > ], > 'moodle format text' => [ > 'name' => '', > 'content' => "Simple plain text @@PLUGINFILE@@/moodle-hit-song.mp3", > 'format' => FORMAT_MOODLE, > 'expected' => 'Simple plain text' > ], > 'html format text' => [ > 'name' => '', > 'content' => "<h1>Simple plain title</h1><p> with plain text</p> @@PLUGINFILE@@/moodle-hit-song.mp3", > 'format' => FORMAT_HTML, > 'expected' => 'Simple plain title with plain text' > ], > ]; > } > > /**
< $event = new stdClass();
> $event = new \stdClass();
< return calendar_event::create($event);
> return \calendar_event::create($event);