1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
|
<?php
/**
* Tests for PhpMyAdmin\FileListing
* @package PhpMyAdmin\Tests
*/
namespace PhpMyAdmin\Tests;
use PhpMyAdmin\FileListing;
use PHPUnit\Framework\TestCase;
/**
* Class FileListingTest
* @package PhpMyAdmin\Tests
*/
class FileListingTest extends TestCase
{
/**
* @var FileListing $fileListing
*/
private $fileListing;
/**
* @return void
*/
protected function setUp(): void
{
$this->fileListing = new FileListing();
}
/**
* @return void
*/
public function testGetDirContent(): void
{
$this->assertFalse($this->fileListing->getDirContent('nonexistent directory'));
}
/**
* @return void
*/
public function testGetFileSelectOptions(): void
{
$this->assertFalse($this->fileListing->getFileSelectOptions('nonexistent directory'));
}
/**
* @return void
*/
public function testSupportedDecompressionsEmptyList(): void
{
$GLOBALS['cfg']['ZipDump'] = false;
$GLOBALS['cfg']['GZipDump'] = false;
$GLOBALS['cfg']['BZipDump'] = false;
$this->assertEmpty($this->fileListing->supportedDecompressions());
}
/**
* @return void
* @requires extension bz2 1
*/
public function testSupportedDecompressionsFull(): void
{
$GLOBALS['cfg']['ZipDump'] = true;
$GLOBALS['cfg']['GZipDump'] = true;
$GLOBALS['cfg']['BZipDump'] = true;
$this->assertEquals('gz|bz2|zip', $this->fileListing->supportedDecompressions());
}
/**
* @return void
*/
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';
$this->assertEquals($extensionString, $this->fileListing->supportedDecompressions());
}
}
|