weekly release 2.9dev
[moodle.git] / mod / lesson / tests / generator_test.php
1 <?php
2 // This file is part of Moodle - http://moodle.org/
3 //
4 // Moodle is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
8 //
9 // Moodle is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 // GNU General Public License for more details.
13 //
14 // You should have received a copy of the GNU General Public License
15 // along with Moodle.  If not, see <http://www.gnu.org/licenses/>.
17 /**
18  * mod_lesson generator tests
19  *
20  * @package    mod_lesson
21  * @category   test
22  * @copyright  2013 Marina Glancy
23  * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
24  */
26 /**
27  * Genarator tests class for mod_lesson.
28  *
29  * @package    mod_lesson
30  * @category   test
31  * @copyright  2013 Marina Glancy
32  * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
33  */
34 class mod_lesson_generator_testcase extends advanced_testcase {
36     public function test_create_instance() {
37         global $DB;
38         $this->resetAfterTest();
39         $this->setAdminUser();
41         $course = $this->getDataGenerator()->create_course();
43         $this->assertFalse($DB->record_exists('lesson', array('course' => $course->id)));
44         $lesson = $this->getDataGenerator()->create_module('lesson', array('course' => $course));
45         $records = $DB->get_records('lesson', array('course' => $course->id), 'id');
46         $this->assertEquals(1, count($records));
47         $this->assertTrue(array_key_exists($lesson->id, $records));
49         $params = array('course' => $course->id, 'name' => 'Another lesson');
50         $lesson = $this->getDataGenerator()->create_module('lesson', $params);
51         $records = $DB->get_records('lesson', array('course' => $course->id), 'id');
52         $this->assertEquals(2, count($records));
53         $this->assertEquals('Another lesson', $records[$lesson->id]->name);
54     }
56     public function test_create_content() {
57         global $DB;
58         $this->resetAfterTest();
59         $this->setAdminUser();
61         $course = $this->getDataGenerator()->create_course();
62         $lesson = $this->getDataGenerator()->create_module('lesson', array('course' => $course));
63         $lessongenerator = $this->getDataGenerator()->get_plugin_generator('mod_lesson');
65         $page1 = $lessongenerator->create_content($lesson);
66         $page2 = $lessongenerator->create_content($lesson, array('title' => 'Custom title'));
67         $records = $DB->get_records('lesson_pages', array('lessonid' => $lesson->id), 'id');
68         $this->assertEquals(2, count($records));
69         $this->assertEquals($page1->id, $records[$page1->id]->id);
70         $this->assertEquals($page2->id, $records[$page2->id]->id);
71         $this->assertEquals('Custom title', $records[$page2->id]->title);
72     }
73 }