View source
<?php
class CourseObjectBookTestCase extends CourseTestCase {
public static function getInfo() {
return array(
'name' => 'Course object book',
'description' => 'Ensure that book Course object support functions properly.',
'group' => 'Course',
);
}
function getModules() {
$modules = parent::getModules();
$modules[] = 'book';
$modules[] = 'course_book';
return $modules;
}
function testBookCourseObject() {
$courseNode = $this
->createCourseNode();
$co1 = course_get_course_object('course_book', 'book');
$co1
->setOption('book_tracking', 'all');
$co1
->setCourse($courseNode->nid);
$co1
->save();
$this
->assertTrue($co1
->getInstanceId() > 0, 'book node created on course object save.');
$bp1 = $this
->drupalCreateNode(array(
'type' => 'book',
'book' => array(
'bid' => $co1
->getInstanceId(),
),
));
$bp2 = $this
->drupalCreateNode(array(
'type' => 'book',
'book' => array(
'bid' => $co1
->getInstanceId(),
),
));
course_enroll($courseNode, $this->student_user);
$this
->assertFalse($co1
->getFulfillment($this->student_user)
->isComplete(), 'Check that book object is not complete.');
$this
->drupalLogin($this->student_user);
$this
->drupalGet("node/" . $co1
->getInstanceId());
$this
->drupalGet("node/{$bp1->nid}");
entity_get_controller('course_object_fulfillment')
->resetCache();
$this
->assertFalse($co1
->getFulfillment($this->student_user)
->isComplete(), 'Check that book object is not complete after visiting 2/3 pages.');
$this
->drupalGet("node/{$bp2->nid}");
entity_get_controller('course_object_fulfillment')
->resetCache();
$this
->assertTrue($co1
->getFulfillment($this->student_user)
->isComplete(), 'Check that book object is now complete after visiting 3/3 pages.');
}
function testBookCourseObjectContentAccess() {
$this
->pass('Please fix me.');
return;
$this
->drupalLogin($this->admin_user);
node_access_rebuild();
$courseNode = $this
->createCourseNode();
$co1 = course_get_course_object('course_book', 'book');
$co1
->setCourse($courseNode->nid);
$co1
->setOption('private', 1);
$co1
->save();
$bp1 = $this
->drupalCreateNode(array(
'type' => 'book',
'book' => array(
'bid' => $co1
->getInstanceId(),
),
));
$bp2 = $this
->drupalCreateNode(array(
'type' => 'book',
'book' => array(
'bid' => $co1
->getInstanceId(),
),
));
$co1
->save();
db_query("delete from {node_access} where realm = 'all'");
$this
->drupalLogin($this->student_user);
$this
->drupalGet("node/" . $co1
->getInstanceId());
$this
->assertResponse(403);
$this
->drupalGet("node/{$bp1->nid}");
$this
->assertResponse(403);
$this
->drupalGet("node/{$bp2->nid}");
$this
->assertResponse(403);
$this
->drupalLogin($this->admin_user);
$bp3 = $this
->drupalCreateNode(array(
'type' => 'book',
'book' => array(
'bid' => $co1
->getInstanceId(),
),
));
$co1
->save();
db_query("delete from {node_access} where realm = 'all'");
$this
->drupalLogin($this->student_user);
$this
->drupalGet("node/{$bp3->nid}");
$this
->assertResponse(403);
course_enroll($courseNode, $this->student_user);
$this
->drupalGet("node/{$courseNode->nid}/course-object/" . $co1
->getId());
$this
->drupalGet("node/{$bp1->nid}");
$this
->assertResponse(200);
$this
->drupalGet("node/{$bp2->nid}");
$this
->assertResponse(200);
$this
->drupalGet("node/{$bp3->nid}");
$this
->assertResponse(200);
}
}