Sindbad~EG File Manager
<?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/>.
/**
* Define unit tests for the toolbox class.
*
* @package theme_adaptable
* @copyright © 2018 G J Barnard.
* @author G J Barnard - {@link http://moodle.org/user/profile.php?id=442195}
* @license https://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later.
*/
namespace theme_adaptable;
/**
* Toolbox unit tests for the Adaptable theme.
* @group theme_adaptable
* @copyright Copyright (c) 2017 Manoj Solanki (Coventry University)
* @license https://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later.
*/
final class toolbox_test extends \advanced_testcase {
/**
* Set up.
*/
protected function setUp(): void {
parent::setUp();
$this->resetAfterTest(true);
set_config('theme', 'adaptable');
}
/**
* Add property test.
* @covers \theme_adaptable\toolbox::to_add_property
*/
public function test_to_add_property(): void {
// Ref: http://stackoverflow.com/questions/249664/best-practices-to-test-protected-methods-with-phpunit.
// and http://php.net/manual/en/reflectionmethod.invoke.php.
$reflectionmethod = new \ReflectionMethod('\theme_adaptable\toolbox', 'to_add_property');
$reflectionmethod->setAccessible(true);
// Correct ones....
$this->assertTrue($reflectionmethod->invoke(null, 'p2url'));
$this->assertTrue($reflectionmethod->invoke(null, 'p2cap'));
$this->assertTrue($reflectionmethod->invoke(null, 'sliderh3color'));
$this->assertTrue($reflectionmethod->invoke(null, 'sliderh4color'));
$this->assertTrue($reflectionmethod->invoke(null, 'slidersubmitcolor'));
$this->assertTrue($reflectionmethod->invoke(null, 'slidersubmitbgcolor'));
$this->assertTrue($reflectionmethod->invoke(null, 'slider2h3color'));
$this->assertTrue($reflectionmethod->invoke(null, 'slider2h3bgcolor'));
$this->assertTrue($reflectionmethod->invoke(null, 'slider2h4color'));
$this->assertTrue($reflectionmethod->invoke(null, 'slider2h4bgcolor'));
$this->assertTrue($reflectionmethod->invoke(null, 'slideroption2submitcolor'));
$this->assertTrue($reflectionmethod->invoke(null, 'slideroption2color'));
$this->assertTrue($reflectionmethod->invoke(null, 'slideroption2a'));
$this->assertTrue($reflectionmethod->invoke(null, 'alerttext2'));
$this->assertTrue($reflectionmethod->invoke(null, 'alertkey2'));
$this->assertTrue($reflectionmethod->invoke(null, 'alerttype3'));
$this->assertTrue($reflectionmethod->invoke(null, 'alertaccess7'));
$this->assertTrue($reflectionmethod->invoke(null, 'alertprofilefield11'));
$this->assertTrue($reflectionmethod->invoke(null, 'analyticstext5'));
$this->assertTrue($reflectionmethod->invoke(null, 'analyticsprofilefield7'));
$this->assertTrue($reflectionmethod->invoke(null, 'newmenu3title'));
$this->assertTrue($reflectionmethod->invoke(null, 'newmenu2'));
$this->assertTrue($reflectionmethod->invoke(null, 'newmenu4requirelogin'));
$this->assertTrue($reflectionmethod->invoke(null, 'newmenu1field'));
$this->assertTrue($reflectionmethod->invoke(null, 'toolsmenu5title'));
$this->assertTrue($reflectionmethod->invoke(null, 'toolsmenu5'));
$this->assertTrue($reflectionmethod->invoke(null, 'tickertext4'));
$this->assertTrue($reflectionmethod->invoke(null, 'tickertext4profilefield'));
// Incorrect ones....
$this->assertFalse($reflectionmethod->invoke(null, 'p2ur1'));
$this->assertFalse($reflectionmethod->invoke(null, 'p4cab'));
$this->assertFalse($reflectionmethod->invoke(null, 'settingsalertbox12'));
$this->assertFalse($reflectionmethod->invoke(null, 'alerttext245'));
$this->assertFalse($reflectionmethod->invoke(null, 'alertkay2'));
$this->assertFalse($reflectionmethod->invoke(null, 'alertkey'));
$this->assertFalse($reflectionmethod->invoke(null, 'alerttype3const'));
$this->assertFalse($reflectionmethod->invoke(null, 'alertaccess7denied'));
$this->assertFalse($reflectionmethod->invoke(null, 'alertprofilefields11'));
$this->assertFalse($reflectionmethod->invoke(null, 'analyticstext5string'));
$this->assertFalse($reflectionmethod->invoke(null, 'analyticsprofilefields7'));
$this->assertFalse($reflectionmethod->invoke(null, 'newmenu3titles'));
$this->assertFalse($reflectionmethod->invoke(null, 'newmenus2'));
$this->assertFalse($reflectionmethod->invoke(null, 'newmenu4requirelogins'));
$this->assertFalse($reflectionmethod->invoke(null, 'newmenulfield'));
$this->assertFalse($reflectionmethod->invoke(null, 'toolsmenu5tutle'));
$this->assertFalse($reflectionmethod->invoke(null, 'toolsmenus'));
$this->assertFalse($reflectionmethod->invoke(null, 'tickertext4s'));
$this->assertFalse($reflectionmethod->invoke(null, 'tickertext4profilesfield'));
}
}
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists