예제 #1
0
    /**
     * Test view_book
     */
    public function test_view_book() {
        global $DB;

        $this->resetAfterTest(true);

        $this->setAdminUser();
        // Setup test data.
        $course = $this->getDataGenerator()->create_course();
        $book = $this->getDataGenerator()->create_module('book', array('course' => $course->id));
        $bookgenerator = $this->getDataGenerator()->get_plugin_generator('mod_book');
        $chapter = $bookgenerator->create_chapter(array('bookid' => $book->id));
        $chapterhidden = $bookgenerator->create_chapter(array('bookid' => $book->id, 'hidden' => 1));

        $context = context_module::instance($book->cmid);
        $cm = get_coursemodule_from_instance('book', $book->id);

        // Test invalid instance id.
        try {
            mod_book_external::view_book(0);
            $this->fail('Exception expected due to invalid mod_book instance id.');
        } catch (moodle_exception $e) {
            $this->assertEquals('invalidrecord', $e->errorcode);
        }

        // Test not-enrolled user.
        $user = self::getDataGenerator()->create_user();
        $this->setUser($user);
        try {
            mod_book_external::view_book($book->id, 0);
            $this->fail('Exception expected due to not enrolled user.');
        } catch (moodle_exception $e) {
            $this->assertEquals('requireloginerror', $e->errorcode);
        }

        // Test user with full capabilities.
        $studentrole = $DB->get_record('role', array('shortname' => 'student'));
        $this->getDataGenerator()->enrol_user($user->id, $course->id, $studentrole->id);

        // Trigger and capture the event.
        $sink = $this->redirectEvents();

        $result = mod_book_external::view_book($book->id, 0);
        $result = external_api::clean_returnvalue(mod_book_external::view_book_returns(), $result);

        $events = $sink->get_events();
        $this->assertCount(2, $events);
        $event = array_shift($events);

        // Checking that the event contains the expected values.
        $this->assertInstanceOf('\mod_book\event\course_module_viewed', $event);
        $this->assertEquals($context, $event->get_context());
        $moodleurl = new \moodle_url('/mod/book/view.php', array('id' => $cm->id));
        $this->assertEquals($moodleurl, $event->get_url());
        $this->assertEventContextNotUsed($event);
        $this->assertNotEmpty($event->get_name());

        $event = array_shift($events);
        $this->assertInstanceOf('\mod_book\event\chapter_viewed', $event);
        $this->assertEquals($chapter->id, $event->objectid);

        $result = mod_book_external::view_book($book->id, $chapter->id);
        $result = external_api::clean_returnvalue(mod_book_external::view_book_returns(), $result);

        $events = $sink->get_events();
        // We expect a total of 3 events.
        $this->assertCount(3, $events);

        // Try to view a hidden chapter.
        try {
            mod_book_external::view_book($book->id, $chapterhidden->id);
            $this->fail('Exception expected due to missing capability.');
        } catch (moodle_exception $e) {
            $this->assertEquals('errorchapter', $e->errorcode);
        }

        // Test user with no capabilities.
        // We need a explicit prohibit since this capability is only defined in authenticated user and guest roles.
        assign_capability('mod/book:read', CAP_PROHIBIT, $studentrole->id, $context->id);
        accesslib_clear_all_caches_for_unit_testing();

        try {
            mod_book_external::view_book($book->id, 0);
            $this->fail('Exception expected due to missing capability.');
        } catch (moodle_exception $e) {
            $this->assertEquals('nopermissions', $e->errorcode);
        }

    }
예제 #2
0
 /**
  * Test get_books_by_courses
  */
 public function test_get_books_by_courses()
 {
     global $DB, $USER;
     $this->resetAfterTest(true);
     $this->setAdminUser();
     $course1 = self::getDataGenerator()->create_course();
     $bookoptions1 = array('course' => $course1->id, 'name' => 'First Book');
     $book1 = self::getDataGenerator()->create_module('book', $bookoptions1);
     $course2 = self::getDataGenerator()->create_course();
     $bookoptions2 = array('course' => $course2->id, 'name' => 'Second Book');
     $book2 = self::getDataGenerator()->create_module('book', $bookoptions2);
     $student1 = $this->getDataGenerator()->create_user();
     $studentrole = $DB->get_record('role', array('shortname' => 'student'));
     // Enroll Student1 in Course1.
     self::getDataGenerator()->enrol_user($student1->id, $course1->id, $studentrole->id);
     $this->setUser($student1);
     $books = mod_book_external::get_books_by_courses();
     // We need to execute the return values cleaning process to simulate the web service server.
     $books = external_api::clean_returnvalue(mod_book_external::get_books_by_courses_returns(), $books);
     $this->assertCount(1, $books['books']);
     $this->assertEquals('First Book', $books['books'][0]['name']);
     // We see 9 fields.
     $this->assertCount(9, $books['books'][0]);
     // As Student you cannot see some book properties like 'section'.
     $this->assertFalse(isset($books['books'][0]['section']));
     // Student1 is not enrolled in course2. The webservice will return a warning!
     $books = mod_book_external::get_books_by_courses(array($course2->id));
     // We need to execute the return values cleaning process to simulate the web service server.
     $books = external_api::clean_returnvalue(mod_book_external::get_books_by_courses_returns(), $books);
     $this->assertCount(0, $books['books']);
     $this->assertEquals(1, $books['warnings'][0]['warningcode']);
     // Now as admin.
     $this->setAdminUser();
     // As Admin we can see this book.
     $books = mod_book_external::get_books_by_courses(array($course2->id));
     // We need to execute the return values cleaning process to simulate the web service server.
     $books = external_api::clean_returnvalue(mod_book_external::get_books_by_courses_returns(), $books);
     $this->assertCount(1, $books['books']);
     $this->assertEquals('Second Book', $books['books'][0]['name']);
     // We see 16 fields.
     $this->assertCount(16, $books['books'][0]);
     // As an Admin you can see some book properties like 'section'.
     $this->assertEquals(0, $books['books'][0]['section']);
     // Enrol student in the second course.
     self::getDataGenerator()->enrol_user($student1->id, $course2->id, $studentrole->id);
     $this->setUser($student1);
     $books = mod_book_external::get_books_by_courses();
     $books = external_api::clean_returnvalue(mod_book_external::get_books_by_courses_returns(), $books);
     $this->assertCount(2, $books['books']);
 }