Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge branch 'MDL-63140-35' of git://github.com/rezaies/moodle into M…
…OODLE_35_STABLE
  • Loading branch information
David Monllao committed Sep 19, 2018
2 parents de8c8a4 + eeef023 commit 8682e82
Show file tree
Hide file tree
Showing 2 changed files with 150 additions and 3 deletions.
19 changes: 16 additions & 3 deletions mod/glossary/lib.php
Expand Up @@ -4226,15 +4226,28 @@ function mod_glossary_get_fontawesome_icon_map() {
*
* @param calendar_event $event
* @param \core_calendar\action_factory $factory
* @param int $userid User id to use for all capability checks, etc. Set to 0 for current user (default).
* @return \core_calendar\local\event\entities\action_interface|null
*/
function mod_glossary_core_calendar_provide_event_action(calendar_event $event,
\core_calendar\action_factory $factory) {
$cm = get_fast_modinfo($event->courseid)->instances['glossary'][$event->instance];
\core_calendar\action_factory $factory,
int $userid = 0) {
global $USER;

if (!$userid) {
$userid = $USER->id;
}

$cm = get_fast_modinfo($event->courseid, $userid)->instances['glossary'][$event->instance];

if (!$cm->uservisible) {
// The module is not visible to the user for any reason.
return null;
}

$completion = new \completion_info($cm->get_course());

$completiondata = $completion->get_data($cm, false);
$completiondata = $completion->get_data($cm, false, $userid);

if ($completiondata->completionstate != COMPLETION_INCOMPLETE) {
return null;
Expand Down
134 changes: 134 additions & 0 deletions mod/glossary/tests/lib_test.php
Expand Up @@ -141,6 +141,101 @@ public function test_glossary_core_calendar_provide_event_action() {
$this->assertTrue($actionevent->is_actionable());
}

public function test_glossary_core_calendar_provide_event_action_as_non_user() {
global $CFG;

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

// Create the activity.
$course = $this->getDataGenerator()->create_course();
$glossary = $this->getDataGenerator()->create_module('glossary', array('course' => $course->id));

// Create a calendar event.
$event = $this->create_action_event($course->id, $glossary->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_glossary_core_calendar_provide_event_action($event, $factory);

// Confirm the event is not shown at all.
$this->assertNull($actionevent);
}

public function test_glossary_core_calendar_provide_event_action_for_user() {
global $CFG;

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

// Create a course.
$course = $this->getDataGenerator()->create_course();

// Create a student.
$student = $this->getDataGenerator()->create_and_enrol($course, 'student');

// Create the activity.
$glossary = $this->getDataGenerator()->create_module('glossary', array('course' => $course->id));

// Create a calendar event.
$event = $this->create_action_event($course->id, $glossary->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_glossary_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_glossary_core_calendar_provide_event_action_in_hidden_section() {
$this->resetAfterTest();
$this->setAdminUser();

// Create a course.
$course = $this->getDataGenerator()->create_course();

// Create a student.
$student = $this->getDataGenerator()->create_and_enrol($course, 'student');

// Create the activity.
$glossary = $this->getDataGenerator()->create_module('glossary', array('course' => $course->id));

// Create a calendar event.
$event = $this->create_action_event($course->id, $glossary->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_glossary_core_calendar_provide_event_action($event, $factory, $student->id);

// Confirm the event is not shown at all.
$this->assertNull($actionevent);
}

public function test_glossary_core_calendar_provide_event_action_already_completed() {
global $CFG;

Expand Down Expand Up @@ -175,6 +270,45 @@ public function test_glossary_core_calendar_provide_event_action_already_complet
$this->assertNull($actionevent);
}

public function test_glossary_core_calendar_provide_event_action_already_completed_for_user() {
global $CFG;

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

$CFG->enablecompletion = 1;

// Create a course.
$course = $this->getDataGenerator()->create_course(array('enablecompletion' => 1));

// Create a student.
$student = $this->getDataGenerator()->create_and_enrol($course, 'student');

// Create the activity.
$glossary = $this->getDataGenerator()->create_module('glossary', array('course' => $course->id),
array('completion' => 2, 'completionview' => 1, 'completionexpected' => time() + DAYSECS));

// Get some additional data.
$cm = get_coursemodule_from_instance('glossary', $glossary->id);

// Create a calendar event.
$event = $this->create_action_event($course->id, $glossary->id,
\core_completion\api::COMPLETION_EVENT_TYPE_DATE_COMPLETION_EXPECTED);

// Mark the activity as completed for the user.
$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.
$actionevent = mod_glossary_core_calendar_provide_event_action($event, $factory, $student->id);

// Ensure result was null.
$this->assertNull($actionevent);
}

/**
* Creates an action event.
*
Expand Down

0 comments on commit 8682e82

Please sign in to comment.