phpmyadmin/test/classes/Display/CreateTableTest.php
Maurício Meneghini Fauth 206199105e Remove useless return type annotations
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2020-01-23 13:03:29 -03:00

91 lines
2.2 KiB
PHP

<?php
/**
* tests for PhpMyAdmin\Display\CreateTable
*/
declare(strict_types=1);
namespace PhpMyAdmin\Tests\Display;
use PhpMyAdmin\Display\CreateTable;
use PhpMyAdmin\Html\Generator;
use PhpMyAdmin\Url;
use PHPUnit\Framework\TestCase;
/**
* PhpMyAdmin\Tests\Display\CreateTableTest class
*
* this class is for testing PhpMyAdmin\Display\CreateTable methods
*/
class CreateTableTest extends TestCase
{
/**
* Test for setUp
*/
protected function setUp(): void
{
//$GLOBALS
$GLOBALS['server'] = 0;
$GLOBALS['cfg']['Server']['DisableIS'] = false;
$GLOBALS['cfg']['DBG']['sql'] = false;
$GLOBALS['cfg']['MaxRows'] = 10;
$GLOBALS['cfg']['ServerDefault'] = 'PMA_server';
$GLOBALS['cfg']['TableNavigationLinksMode'] = 'icons';
$GLOBALS['cfg']['LimitChars'] = 100;
$GLOBALS['cfg']['ActionLinksMode'] = 'icons';
$GLOBALS['cfg']['Server']['host'] = 'localhost';
$GLOBALS['cfg']['Server']['user'] = 'pma_user';
$GLOBALS['cfg']['ShowHint'] = true;
$GLOBALS['cfg']['ActionLinksMode'] = 'icons';
$GLOBALS['PMA_PHP_SELF'] = Url::getFromRoute('/server/privileges');
//$_SESSION
$_SESSION['relation'][$GLOBALS['server']] = 'relation';
}
/**
* Test for CreateTable::getHtml
*
* @return void
*/
public function testPMAGetHtmlForCreateTable()
{
$db = 'pma_db';
//Call the test function
$html = CreateTable::getHtml($db);
//getImage
$this->assertStringContainsString(
Generator::getImage('b_table_add'),
$html
);
//__('Create table')
$this->assertStringContainsString(
__('Create table'),
$html
);
//Url::getHiddenInputs
$this->assertStringContainsString(
Url::getHiddenInputs($db),
$html
);
//label
$this->assertStringContainsString(
__('Name'),
$html
);
$this->assertStringContainsString(
__('Number of columns'),
$html
);
//button
$this->assertStringContainsString(
__('Go'),
$html
);
}
}