52f3e060e4
1. getMock() 2. setExpectedException() 3. checkForUnintentionallyCoveredCode renamed to beStrictAboutCoversAnnotation 4. beStrictAboutTestSize renamed to enforceTimeLimit 5. UnitTestCase class is now fully removed.
195 lines
7.3 KiB
PHP
195 lines
7.3 KiB
PHP
<?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/>.
|
|
|
|
/**
|
|
* SCORM module library functions tests
|
|
*
|
|
* @package mod_scorm
|
|
* @category test
|
|
* @copyright 2015 Juan Leyva <juan@moodle.com>
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
* @since Moodle 3.0
|
|
*/
|
|
|
|
defined('MOODLE_INTERNAL') || die();
|
|
|
|
global $CFG;
|
|
|
|
require_once($CFG->dirroot . '/webservice/tests/helpers.php');
|
|
require_once($CFG->dirroot . '/mod/scorm/lib.php');
|
|
|
|
/**
|
|
* SCORM module library functions tests
|
|
*
|
|
* @package mod_scorm
|
|
* @category test
|
|
* @copyright 2015 Juan Leyva <juan@moodle.com>
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
* @since Moodle 3.0
|
|
*/
|
|
class mod_scorm_lib_testcase extends externallib_advanced_testcase {
|
|
|
|
/**
|
|
* Set up for every test
|
|
*/
|
|
public function setUp() {
|
|
global $DB;
|
|
$this->resetAfterTest();
|
|
$this->setAdminUser();
|
|
|
|
// Setup test data.
|
|
$this->course = $this->getDataGenerator()->create_course();
|
|
$this->scorm = $this->getDataGenerator()->create_module('scorm', array('course' => $this->course->id));
|
|
$this->context = context_module::instance($this->scorm->cmid);
|
|
$this->cm = get_coursemodule_from_instance('scorm', $this->scorm->id);
|
|
|
|
// Create users.
|
|
$this->student = self::getDataGenerator()->create_user();
|
|
$this->teacher = self::getDataGenerator()->create_user();
|
|
|
|
// Users enrolments.
|
|
$this->studentrole = $DB->get_record('role', array('shortname' => 'student'));
|
|
$this->teacherrole = $DB->get_record('role', array('shortname' => 'editingteacher'));
|
|
$this->getDataGenerator()->enrol_user($this->student->id, $this->course->id, $this->studentrole->id, 'manual');
|
|
$this->getDataGenerator()->enrol_user($this->teacher->id, $this->course->id, $this->teacherrole->id, 'manual');
|
|
}
|
|
|
|
/**
|
|
* Test scorm_view
|
|
* @return void
|
|
*/
|
|
public function test_scorm_view() {
|
|
global $CFG;
|
|
|
|
// Trigger and capture the event.
|
|
$sink = $this->redirectEvents();
|
|
|
|
scorm_view($this->scorm, $this->course, $this->cm, $this->context);
|
|
|
|
$events = $sink->get_events();
|
|
$this->assertCount(1, $events);
|
|
$event = array_shift($events);
|
|
|
|
// Checking that the event contains the expected values.
|
|
$this->assertInstanceOf('\mod_scorm\event\course_module_viewed', $event);
|
|
$this->assertEquals($this->context, $event->get_context());
|
|
$url = new \moodle_url('/mod/scorm/view.php', array('id' => $this->cm->id));
|
|
$this->assertEquals($url, $event->get_url());
|
|
$this->assertEventContextNotUsed($event);
|
|
$this->assertNotEmpty($event->get_name());
|
|
}
|
|
|
|
/**
|
|
* Test scorm_get_availability_status and scorm_require_available
|
|
* @return void
|
|
*/
|
|
public function test_scorm_check_and_require_available() {
|
|
global $DB;
|
|
|
|
// Set to the student user.
|
|
self::setUser($this->student);
|
|
|
|
// Usual case.
|
|
list($status, $warnings) = scorm_get_availability_status($this->scorm, false);
|
|
$this->assertEquals(true, $status);
|
|
$this->assertCount(0, $warnings);
|
|
|
|
// SCORM not open.
|
|
$this->scorm->timeopen = time() + DAYSECS;
|
|
list($status, $warnings) = scorm_get_availability_status($this->scorm, false);
|
|
$this->assertEquals(false, $status);
|
|
$this->assertCount(1, $warnings);
|
|
|
|
// SCORM closed.
|
|
$this->scorm->timeopen = 0;
|
|
$this->scorm->timeclose = time() - DAYSECS;
|
|
list($status, $warnings) = scorm_get_availability_status($this->scorm, false);
|
|
$this->assertEquals(false, $status);
|
|
$this->assertCount(1, $warnings);
|
|
|
|
// SCORM not open and closed.
|
|
$this->scorm->timeopen = time() + DAYSECS;
|
|
list($status, $warnings) = scorm_get_availability_status($this->scorm, false);
|
|
$this->assertEquals(false, $status);
|
|
$this->assertCount(2, $warnings);
|
|
|
|
// Now additional checkings with different parameters values.
|
|
list($status, $warnings) = scorm_get_availability_status($this->scorm, true, $this->context);
|
|
$this->assertEquals(false, $status);
|
|
$this->assertCount(2, $warnings);
|
|
|
|
// SCORM not open.
|
|
$this->scorm->timeopen = time() + DAYSECS;
|
|
$this->scorm->timeclose = 0;
|
|
list($status, $warnings) = scorm_get_availability_status($this->scorm, true, $this->context);
|
|
$this->assertEquals(false, $status);
|
|
$this->assertCount(1, $warnings);
|
|
|
|
// SCORM closed.
|
|
$this->scorm->timeopen = 0;
|
|
$this->scorm->timeclose = time() - DAYSECS;
|
|
list($status, $warnings) = scorm_get_availability_status($this->scorm, true, $this->context);
|
|
$this->assertEquals(false, $status);
|
|
$this->assertCount(1, $warnings);
|
|
|
|
// SCORM not open and closed.
|
|
$this->scorm->timeopen = time() + DAYSECS;
|
|
list($status, $warnings) = scorm_get_availability_status($this->scorm, true, $this->context);
|
|
$this->assertEquals(false, $status);
|
|
$this->assertCount(2, $warnings);
|
|
|
|
// As teacher now.
|
|
self::setUser($this->teacher);
|
|
|
|
// SCORM not open and closed.
|
|
$this->scorm->timeopen = time() + DAYSECS;
|
|
list($status, $warnings) = scorm_get_availability_status($this->scorm, false);
|
|
$this->assertEquals(false, $status);
|
|
$this->assertCount(2, $warnings);
|
|
|
|
// Now, we use the special capability.
|
|
// SCORM not open and closed.
|
|
$this->scorm->timeopen = time() + DAYSECS;
|
|
list($status, $warnings) = scorm_get_availability_status($this->scorm, true, $this->context);
|
|
$this->assertEquals(true, $status);
|
|
$this->assertCount(0, $warnings);
|
|
|
|
// Check exceptions does not broke anything.
|
|
scorm_require_available($this->scorm, true, $this->context);
|
|
// Now, expect exceptions.
|
|
$this->expectException('moodle_exception');
|
|
$this->expectExceptionMessage(get_string("notopenyet", "scorm", userdate($this->scorm->timeopen)));
|
|
|
|
// Now as student other condition.
|
|
self::setUser($this->student);
|
|
$this->scorm->timeopen = 0;
|
|
$this->scorm->timeclose = time() - DAYSECS;
|
|
|
|
$this->expectException('moodle_exception');
|
|
$this->expectExceptionMessage(get_string("expired", "scorm", userdate($this->scorm->timeclose)));
|
|
scorm_require_available($this->scorm, false);
|
|
}
|
|
|
|
/**
|
|
* Test scorm_get_last_completed_attempt
|
|
*
|
|
* @return void
|
|
*/
|
|
public function test_scorm_get_last_completed_attempt() {
|
|
$this->assertEquals(1, scorm_get_last_completed_attempt($this->scorm->id, $this->student->id));
|
|
}
|
|
}
|