mirror of
https://github.com/moodle/moodle.git
synced 2025-01-18 22:08:20 +01:00
MDL-32323 add basic mod_forum data generator
This commit is contained in:
parent
de3d1590ee
commit
f8965a3d30
75
mod/forum/tests/generator/lib.php
Normal file
75
mod/forum/tests/generator/lib.php
Normal file
@ -0,0 +1,75 @@
|
||||
<?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/>.
|
||||
|
||||
/**
|
||||
* mod_forum data generator
|
||||
*
|
||||
* @package mod_forum
|
||||
* @category phpunit
|
||||
* @copyright 2012 Petr Skoda {@link http://skodak.org}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
defined('MOODLE_INTERNAL') || die();
|
||||
|
||||
|
||||
/**
|
||||
* Assignment module PHPUnit data generator class
|
||||
*
|
||||
* @package mod_forum
|
||||
* @category phpunit
|
||||
* @copyright 2012 Petr Skoda {@link http://skodak.org}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
class mod_forum_generator extends phpunit_module_generator {
|
||||
|
||||
/**
|
||||
* Create new forum module instance
|
||||
* @param array|stdClass $record
|
||||
* @param array $options
|
||||
* @return stdClass activity record with extra cmid field
|
||||
*/
|
||||
public function create_instance($record = null, array $options = null) {
|
||||
global $DB, $CFG;
|
||||
require_once("$CFG->dirroot/mod/forum/locallib.php");
|
||||
|
||||
$this->instancecount++;
|
||||
$i = $this->instancecount;
|
||||
|
||||
$record = (object)(array)$record;
|
||||
$options = (array)$options;
|
||||
|
||||
if (!isset($record->name)) {
|
||||
$record->name = get_string('pluginname', 'forum').' '.$i;
|
||||
}
|
||||
if (!isset($record->intro)) {
|
||||
$record->intro = 'Test forum '.$i;
|
||||
}
|
||||
if (!isset($record->introformat)) {
|
||||
$record->introformat = FORMAT_MOODLE;
|
||||
}
|
||||
$record->timemodified = time();
|
||||
|
||||
$id = $DB->insert_record('forum', $record);
|
||||
$instance = $DB->get_record('forum', array('id'=>$id), '*', MUST_EXIST);
|
||||
|
||||
$cm = $this->create_course_module($instance, $options);
|
||||
|
||||
$instance->cmid = $cm->id;
|
||||
|
||||
return $instance;
|
||||
}
|
||||
}
|
63
mod/forum/tests/test_generator.php
Normal file
63
mod/forum/tests/test_generator.php
Normal file
@ -0,0 +1,63 @@
|
||||
<?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/>.
|
||||
|
||||
/**
|
||||
* PHPUnit data generator tests
|
||||
*
|
||||
* @package mod_forum
|
||||
* @category phpunit
|
||||
* @copyright 2012 Petr Skoda {@link http://skodak.org}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
defined('MOODLE_INTERNAL') || die();
|
||||
|
||||
|
||||
/**
|
||||
* PHPUnit data generator testcase
|
||||
*
|
||||
* @package mod_forum
|
||||
* @category phpunit
|
||||
* @copyright 2012 Petr Skoda {@link http://skodak.org}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
class mod_forum_generator_testcase extends advanced_testcase {
|
||||
public function test_geenrator() {
|
||||
global $DB, $SITE;
|
||||
|
||||
$this->resetAfterTest(true);
|
||||
|
||||
$this->assertEquals(0, $DB->count_records('forum'));
|
||||
|
||||
/** @var mod_forum_generator $generator */
|
||||
$generator = $this->getDataGenerator()->get_plugin_generator('mod_forum');
|
||||
$this->assertInstanceOf('mod_forum_generator', $generator);
|
||||
$this->assertEquals('forum', $generator->get_modulename());
|
||||
|
||||
$generator->create_instance(array('course'=>$SITE->id));
|
||||
$generator->create_instance(array('course'=>$SITE->id));
|
||||
$forum = $generator->create_instance(array('course'=>$SITE->id));
|
||||
$this->assertEquals(3, $DB->count_records('forum'));
|
||||
|
||||
$cm = get_coursemodule_from_instance('forum', $forum->id);
|
||||
$this->assertEquals($forum->id, $cm->instance);
|
||||
$this->assertEquals('forum', $cm->modname);
|
||||
$this->assertEquals($SITE->id, $cm->course);
|
||||
|
||||
$context = context_module::instance($cm->id);
|
||||
$this->assertEquals($forum->cmid, $context->instanceid);
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user