| Server IP : 3.96.16.70 / Your IP : 216.73.216.15 Web Server : Apache System : Linux ip-172-31-26-103.ca-central-1.compute.internal 6.1.163-186.299.amzn2023.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Feb 24 16:35:42 UTC 2026 x86_64 User : ec2-user ( 1000) PHP Version : 8.4.18 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/html/prod1.wondermakr.com/phpmyadmin/test/classes/ |
Upload File : |
<?php
declare(strict_types=1);
namespace PhpMyAdmin\Tests;
use PhpMyAdmin\FileListing;
use function array_values;
use function extension_loaded;
use function is_bool;
use const TEST_PATH;
/**
* @covers \PhpMyAdmin\FileListing
*/
class FileListingTest extends AbstractTestCase
{
/** @var FileListing $fileListing */
private $fileListing;
protected function setUp(): void
{
parent::setUp();
$this->fileListing = new FileListing();
}
public function testGetDirContent(): void
{
self::assertFalse($this->fileListing->getDirContent('nonexistent directory'));
$fixturesDir = TEST_PATH . 'test/classes/_data/file_listing';
$dirContent = $this->fileListing->getDirContent($fixturesDir);
if (is_bool($dirContent)) {
$dirContent = [];
}
self::assertSame([
'one.txt',
'two.md',
], array_values($dirContent));
}
public function testGetFileSelectOptions(): void
{
$fixturesDir = TEST_PATH . 'test/classes/_data/file_listing';
self::assertFalse($this->fileListing->getFileSelectOptions('nonexistent directory'));
$expectedHtmlWithoutActive = ' <option value="one.txt">' . "\n"
. ' one.txt' . "\n"
. ' </option>' . "\n"
. ' <option value="two.md">' . "\n"
. ' two.md' . "\n"
. ' </option>' . "\n";
self::assertSame($expectedHtmlWithoutActive, $this->fileListing->getFileSelectOptions($fixturesDir));
$expectedHtmlWithActive = ' <option value="one.txt">' . "\n"
. ' one.txt' . "\n"
. ' </option>' . "\n"
. ' <option value="two.md" selected="selected">' . "\n"
. ' two.md' . "\n"
. ' </option>' . "\n";
self::assertSame($expectedHtmlWithActive, $this->fileListing->getFileSelectOptions($fixturesDir, '', 'two.md'));
$expectedFilteredHtml = ' <option value="one.txt">' . "\n"
. ' one.txt' . "\n"
. ' </option>' . "\n";
self::assertSame($expectedFilteredHtml, $this->fileListing->getFileSelectOptions($fixturesDir, '/.*\.txt/'));
}
public function testSupportedDecompressionsEmptyList(): void
{
$GLOBALS['cfg']['ZipDump'] = false;
$GLOBALS['cfg']['GZipDump'] = false;
$GLOBALS['cfg']['BZipDump'] = false;
self::assertEmpty($this->fileListing->supportedDecompressions());
}
/**
* @requires extension bz2 1
*/
public function testSupportedDecompressionsFull(): void
{
$GLOBALS['cfg']['ZipDump'] = true;
$GLOBALS['cfg']['GZipDump'] = true;
$GLOBALS['cfg']['BZipDump'] = true;
self::assertSame('gz|bz2|zip', $this->fileListing->supportedDecompressions());
}
public function testSupportedDecompressionsPartial(): void
{
$GLOBALS['cfg']['ZipDump'] = true;
$GLOBALS['cfg']['GZipDump'] = true;
$GLOBALS['cfg']['BZipDump'] = true;
$extensionString = 'gz';
if (extension_loaded('bz2')) {
$extensionString .= '|bz2';
}
$extensionString .= '|zip';
self::assertSame($extensionString, $this->fileListing->supportedDecompressions());
}
}