phpmyadmin/test/classes/Controllers/TransformationOverviewControllerTest.php
Maurício Meneghini Fauth 1a14b3e4d3 Remove vim modelines
These settings are no longer required as they are guaranteed through
other coding standard tools.

Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2019-09-02 09:43:21 -03:00

89 lines
2.2 KiB
PHP

<?php
/**
* Holds TransformationOverviewControllerTest class
*
* @package PhpMyAdmin-test
*/
declare(strict_types=1);
namespace PhpMyAdmin\Tests\Controllers;
use PhpMyAdmin\Config;
use PhpMyAdmin\Controllers\TransformationOverviewController;
use PhpMyAdmin\Response;
use PhpMyAdmin\Template;
use PhpMyAdmin\Transformations;
use PHPUnit\Framework\TestCase;
/**
* Tests for TransformationOverviewController class
*
* @package PhpMyAdmin-test
*/
class TransformationOverviewControllerTest extends TestCase
{
/**
* Prepares environment for the test.
*
* @return void
*/
protected function setUp(): void
{
$GLOBALS['PMA_Config'] = new Config();
$GLOBALS['PMA_Config']->enableBc();
$GLOBALS['server'] = 1;
$GLOBALS['db'] = 'db';
$GLOBALS['table'] = 'table';
$GLOBALS['PMA_PHP_SELF'] = 'index.php';
}
/**
* @return void
*/
public function testIndexAction(): void
{
$controller = new TransformationOverviewController(
Response::getInstance(),
$GLOBALS['dbi'],
new Template(),
new Transformations()
);
$actual = $controller->indexAction();
$this->assertStringContainsString(
__('Available media types'),
$actual
);
$this->assertStringContainsString(
'id="transformation">' . __('Available browser display transformations'),
$actual
);
$this->assertStringContainsString(
'id="input_transformation">' . __('Available input transformations'),
$actual
);
$this->assertStringContainsString(
'Text/Plain',
$actual
);
$this->assertStringContainsString(
'Image/JPEG: Inline',
$actual
);
$this->assertStringContainsString(
'Displays a clickable thumbnail.',
$actual
);
$this->assertStringContainsString(
'Image/JPEG: Upload',
$actual
);
$this->assertStringContainsString(
'Image upload functionality which also displays a thumbnail.',
$actual
);
}
}