| Server IP : 104.21.80.248 / Your IP : 172.71.28.156 Web Server : Apache/2.4.25 (Win32) OpenSSL/1.0.2j PHP/5.6.30 System : Windows NT WIN-ECQAAA40806 6.2 build 9200 (Windows Server 2012 Standard Edition) i586 User : SYSTEM ( 0) PHP Version : 5.6.30 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /Inetpub/www/myschool/triamudom/tuprblearn/mod/forum/tests/ |
Upload File : |
<?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/>.
/**
* The author exporter tests.
*
* @package mod_forum
* @copyright 2019 Ryan Wyllie <[email protected]>
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
defined('MOODLE_INTERNAL') || die();
use mod_forum\local\entities\author as author_entity;
use mod_forum\local\exporters\author as author_exporter;
global $CFG;
/**
* The author exporter tests.
*
* @package mod_forum
* @copyright 2019 Ryan Wyllie <[email protected]>
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
class mod_forum_exporters_author_testcase extends advanced_testcase {
/**
* Test the export function returns expected values.
*/
public function test_export_author() {
global $PAGE;
$this->resetAfterTest();
$renderer = $PAGE->get_renderer('core');
$datagenerator = $this->getDataGenerator();
$course = $datagenerator->create_course();
$forum = $datagenerator->create_module('forum', ['course' => $course->id]);
$coursemodule = get_coursemodule_from_instance('forum', $forum->id);
$context = context_module::instance($coursemodule->id);
$entityfactory = \mod_forum\local\container::get_entity_factory();
$forum = $entityfactory->get_forum_from_stdclass($forum, $context, $coursemodule, $course);
$author = new author_entity(
1,
1,
'test',
'user',
'test user',
'[email protected]',
false
);
$exporter = new author_exporter($author, 1, [], true, [
'urlfactory' => \mod_forum\local\container::get_url_factory(),
'context' => $context,
'forum' => $forum,
]);
$exportedauthor = $exporter->export($renderer);
$this->assertEquals(1, $exportedauthor->id);
$this->assertEquals('test user', $exportedauthor->fullname);
$this->assertEquals([], $exportedauthor->groups);
$this->assertNotEquals(null, $exportedauthor->urls['profile']);
$this->assertNotEquals(null, $exportedauthor->urls['profileimage']);
}
/**
* Test the export function with groups.
*/
public function test_export_author_with_groups() {
global $PAGE;
$this->resetAfterTest();
$renderer = $PAGE->get_renderer('core');
$datagenerator = $this->getDataGenerator();
$course = $datagenerator->create_course();
$forum = $datagenerator->create_module('forum', ['course' => $course->id]);
$coursemodule = get_coursemodule_from_instance('forum', $forum->id);
$context = context_module::instance($coursemodule->id);
$entityfactory = \mod_forum\local\container::get_entity_factory();
$forum = $entityfactory->get_forum_from_stdclass($forum, $context, $coursemodule, $course);
$author = new author_entity(
1,
1,
'test',
'user',
'test user',
'[email protected]',
false
);
$group = $datagenerator->create_group(['courseid' => $course->id]);
$exporter = new author_exporter($author, 1, [$group], true, [
'urlfactory' => \mod_forum\local\container::get_url_factory(),
'context' => $context,
'forum' => $forum,
]);
$exportedauthor = $exporter->export($renderer);
$this->assertCount(1, $exportedauthor->groups);
$this->assertEquals($group->id, $exportedauthor->groups[0]['id']);
}
/**
* Test the export function with no view capability.
*/
public function test_export_author_no_view_capability() {
global $PAGE;
$this->resetAfterTest();
$renderer = $PAGE->get_renderer('core');
$datagenerator = $this->getDataGenerator();
$course = $datagenerator->create_course();
$forum = $datagenerator->create_module('forum', ['course' => $course->id]);
$coursemodule = get_coursemodule_from_instance('forum', $forum->id);
$context = context_module::instance($coursemodule->id);
$entityfactory = \mod_forum\local\container::get_entity_factory();
$forum = $entityfactory->get_forum_from_stdclass($forum, $context, $coursemodule, $course);
$author = new author_entity(
1,
1,
'test',
'user',
'test user',
'[email protected]',
false
);
$group = $datagenerator->create_group(['courseid' => $course->id]);
$exporter = new author_exporter($author, 1, [$group], false, [
'urlfactory' => \mod_forum\local\container::get_url_factory(),
'context' => $context,
'forum' => $forum,
]);
$exportedauthor = $exporter->export($renderer);
$this->assertEquals(null, $exportedauthor->id);
$this->assertNotEquals('test user', $exportedauthor->fullname);
$this->assertEquals([], $exportedauthor->groups);
$this->assertEquals(null, $exportedauthor->urls['profile']);
$this->assertEquals(null, $exportedauthor->urls['profileimage']);
}
}