Replaces array() with []. Signed-off-by: Maurício Meneghini Fauth <mauriciofauth@gmail.com>
67 lines
1.2 KiB
PHP
67 lines
1.2 KiB
PHP
<?php
|
|
/* vim: set expandtab sw=4 ts=4 sts=4: */
|
|
/**
|
|
* tests for PhpMyAdmin\Mime
|
|
*
|
|
* @package PhpMyAdmin-test
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
namespace PhpMyAdmin\Tests;
|
|
|
|
use PhpMyAdmin\Mime;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
/**
|
|
* Test for mime detection.
|
|
*
|
|
* @package PhpMyAdmin-test
|
|
*/
|
|
class MimeTest extends TestCase
|
|
{
|
|
/**
|
|
* Test for Mime::detect
|
|
*
|
|
* @param string $test MIME to test
|
|
* @param string $output Expected output
|
|
*
|
|
* @return void
|
|
* @dataProvider providerForTestDetect
|
|
*/
|
|
public function testDetect($test, $output)
|
|
{
|
|
|
|
$this->assertEquals(
|
|
Mime::detect($test),
|
|
$output
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Provider for testDetect
|
|
*
|
|
* @return array data for testDetect
|
|
*/
|
|
public function providerForTestDetect()
|
|
{
|
|
return [
|
|
[
|
|
'pma',
|
|
'application/octet-stream'
|
|
],
|
|
[
|
|
'GIF',
|
|
'image/gif'
|
|
],
|
|
[
|
|
"\x89PNG",
|
|
'image/png'
|
|
],
|
|
[
|
|
chr(0xff) . chr(0xd8),
|
|
'image/jpeg'
|
|
],
|
|
];
|
|
}
|
|
}
|