function CourseObjectAccessConditionalTestCase::testTimeAfterStart in Course 7.2
Same name and namespace in other branches
- 6 tests/CourseObjectAccessConditionalTestCase.test \CourseObjectAccessConditionalTestCase::testTimeAfterStart()
- 7 tests/CourseObjectAccessConditionalTestCase.test \CourseObjectAccessConditionalTestCase::testTimeAfterStart()
Test the time based trigger for object access.
File
- tests/
CourseObjectAccessConditionalTestCase.test, line 20
Class
- CourseObjectAccessConditionalTestCase
- Tests for conditional event-based access to course objects.
Code
function testTimeAfterStart() {
global $user;
$courseNode = $this
->createCourseNode();
$this
->createCourseObject($courseNode);
$this
->createCourseObject($courseNode);
$course = course_get_course($courseNode);
// Set up a course object that should appear 5 minutes after the first
// object is started.
$co = array_values($course
->getObjects());
$co1 = $co[0];
$co2 = $co[1];
$set = array();
$set['plugins']['access']['conditional'] = array(
'conditional_type' => 'started',
'conditional_time' => 300,
'conditional_object' => $co1
->getId(),
'conditional_hidden' => 0,
);
$hidden['plugins']['access']['conditional']['conditional_hidden'] = 1;
$co2
->addOptions($set)
->save();
course_enroll($courseNode, $user);
$this
->assertTrue($co1
->access('take', $user), 'Check that user can access first (depended on) object.');
// Mark first object as complete.
$co1
->getFulfillment($user)
->setComplete(1)
->save();
$this
->assertFalse($co2
->access('take', $user), 'Check that user still cannot access second (dependent) object, even though first is complete.');
// Check visibility.
$this
->assertTrue($co2
->access('see', $user), 'Check that user can still see pending course object.');
$co2
->addOptions($hidden)
->save();
$this
->assertFalse($co2
->access('see', $user), 'Check that user cannot still see pending course object when hidden is checked.');
// Set the completion of this object to more than 5 minutes ago.
$co1
->getFulfillment($user)
->setOption('date_started', REQUEST_TIME - 301)
->save();
$this
->assertTrue($co2
->access('take', $user), 'Check that user can access second course object after time has elapsed.');
}