| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154 |
- <?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/>.
- /**
- * Unit tests for lib/outputfactories.php.
- *
- * @package core
- * @category phpunit
- * @copyright 2014 Damyon Wiese
- * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
- */
- defined('MOODLE_INTERNAL') || die();
- global $CFG;
- require_once($CFG->libdir . '/outputfactories.php');
- require_once($CFG->libdir . '/tests/fixtures/test_renderer_factory.php');
- /**
- * Unit tests for the user_picture class.
- */
- class core_outputfactories_testcase extends advanced_testcase {
- public function test_nonautoloaded_classnames() {
- global $PAGE;
- $renderer = $PAGE->get_renderer('mod_assign');
- }
- public function test_autoloaded_classnames() {
- $testfactory = new test_output_factory();
- $component = 'mod_assign';
- $subtype = 'custom';
- $target = RENDERER_TARGET_AJAX;
- $paths = $testfactory->get_standard_renderer_factory_search_paths('');
- $this->assertSame($paths, array (
- '\\core\\output\\renderer_cli',
- 'core_renderer_cli',
- '\\core\\output\\renderer',
- 'core_renderer',
- ));
- $paths = $testfactory->get_standard_renderer_factory_search_paths($component);
- $this->assertSame($paths, array (
- '\\mod_assign\\output\\renderer_cli',
- 'mod_assign_renderer_cli',
- '\\mod_assign\\output\\renderer',
- 'mod_assign_renderer',
- ));
- $paths = $testfactory->get_standard_renderer_factory_search_paths($component, $subtype);
- $this->assertSame($paths, array (
- '\\mod_assign\\output\\custom_renderer_cli',
- '\\mod_assign\\output\\custom\\renderer_cli',
- 'mod_assign_custom_renderer_cli',
- '\\mod_assign\\output\\custom_renderer',
- '\\mod_assign\\output\\custom\\renderer',
- 'mod_assign_custom_renderer',
- ));
- $paths = $testfactory->get_standard_renderer_factory_search_paths($component, $subtype, $target);
- $this->assertSame($paths, array (
- '\\mod_assign\\output\\custom_renderer_ajax',
- '\\mod_assign\\output\\custom\\renderer_ajax',
- 'mod_assign_custom_renderer_ajax',
- '\\mod_assign\\output\\custom_renderer',
- '\\mod_assign\\output\\custom\\renderer',
- 'mod_assign_custom_renderer',
- ));
- $paths = $testfactory->get_theme_overridden_renderer_factory_search_paths('');
- $this->assertSame($paths, array (
- 'theme_child\\output\\core_renderer_cli',
- 'theme_child_core_renderer_cli',
- 'theme_parent\\output\\core_renderer_cli',
- 'theme_parent_core_renderer_cli',
- '\\core\\output\\renderer_cli',
- 'core_renderer_cli',
- 'theme_child\\output\\core_renderer',
- 'theme_child_core_renderer',
- 'theme_parent\\output\\core_renderer',
- 'theme_parent_core_renderer',
- '\\core\\output\\renderer',
- 'core_renderer',
- ));
- $paths = $testfactory->get_theme_overridden_renderer_factory_search_paths($component);
- $this->assertSame($paths, array (
- 'theme_child\\output\\mod_assign_renderer_cli',
- 'theme_child_mod_assign_renderer_cli',
- 'theme_parent\\output\\mod_assign_renderer_cli',
- 'theme_parent_mod_assign_renderer_cli',
- '\\mod_assign\\output\\renderer_cli',
- 'mod_assign_renderer_cli',
- 'theme_child\\output\\mod_assign_renderer',
- 'theme_child_mod_assign_renderer',
- 'theme_parent\\output\\mod_assign_renderer',
- 'theme_parent_mod_assign_renderer',
- '\\mod_assign\\output\\renderer',
- 'mod_assign_renderer',
- ));
- $paths = $testfactory->get_theme_overridden_renderer_factory_search_paths($component, $subtype);
- $this->assertSame($paths, array (
- 'theme_child\\output\\mod_assign\\custom_renderer_cli',
- 'theme_child\\output\\mod_assign\\custom\\renderer_cli',
- 'theme_child_mod_assign_custom_renderer_cli',
- 'theme_parent\\output\\mod_assign\\custom_renderer_cli',
- 'theme_parent\\output\\mod_assign\\custom\\renderer_cli',
- 'theme_parent_mod_assign_custom_renderer_cli',
- '\\mod_assign\\output\\custom_renderer_cli',
- '\\mod_assign\\output\\custom\\renderer_cli',
- 'mod_assign_custom_renderer_cli',
- 'theme_child\\output\\mod_assign\\custom_renderer',
- 'theme_child\\output\\mod_assign\\custom\\renderer',
- 'theme_child_mod_assign_custom_renderer',
- 'theme_parent\\output\\mod_assign\\custom_renderer',
- 'theme_parent\\output\\mod_assign\\custom\\renderer',
- 'theme_parent_mod_assign_custom_renderer',
- '\\mod_assign\\output\\custom_renderer',
- '\\mod_assign\\output\\custom\\renderer',
- 'mod_assign_custom_renderer',
- ));
- $paths = $testfactory->get_theme_overridden_renderer_factory_search_paths($component, $subtype, $target);
- $this->assertSame($paths, array (
- 'theme_child\\output\\mod_assign\\custom_renderer_ajax',
- 'theme_child\\output\\mod_assign\\custom\\renderer_ajax',
- 'theme_child_mod_assign_custom_renderer_ajax',
- 'theme_parent\\output\\mod_assign\\custom_renderer_ajax',
- 'theme_parent\\output\\mod_assign\\custom\\renderer_ajax',
- 'theme_parent_mod_assign_custom_renderer_ajax',
- '\\mod_assign\\output\\custom_renderer_ajax',
- '\\mod_assign\\output\\custom\\renderer_ajax',
- 'mod_assign_custom_renderer_ajax',
- 'theme_child\\output\\mod_assign\\custom_renderer',
- 'theme_child\\output\\mod_assign\\custom\\renderer',
- 'theme_child_mod_assign_custom_renderer',
- 'theme_parent\\output\\mod_assign\\custom_renderer',
- 'theme_parent\\output\\mod_assign\\custom\\renderer',
- 'theme_parent_mod_assign_custom_renderer',
- '\\mod_assign\\output\\custom_renderer',
- '\\mod_assign\\output\\custom\\renderer',
- 'mod_assign_custom_renderer',
- ));
- }
- }
|