Using assertContains() with string haystacks is deprecated and will not be supported in PHPUnit 9. Refactor your test to use assertStringContainsString() or assertStringContainsStringIgnoringCase() instead. Using assertNotContains() with string haystacks is deprecated and will not be supported in PHPUnit 9. Refactor your test to use assertStringNotContainsString() or assertStringNotContainsStringIgnoringCase() instead. Signed-off-by: Maurício Meneghini Fauth <mauriciofauth@gmail.com>
99 lines
2.3 KiB
PHP
99 lines
2.3 KiB
PHP
<?php
|
|
/* vim: set expandtab sw=4 ts=4 sts=4: */
|
|
/**
|
|
* tests for PhpMyAdmin\Display\CreateTable
|
|
*
|
|
* @package PhpMyAdmin-test
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
namespace PhpMyAdmin\Tests\Display;
|
|
|
|
use PhpMyAdmin\Display\CreateTable;
|
|
use PhpMyAdmin\Theme;
|
|
use PhpMyAdmin\Url;
|
|
use PhpMyAdmin\Util;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
/**
|
|
* PhpMyAdmin\Tests\Display\CreateTableTest class
|
|
*
|
|
* this class is for testing PhpMyAdmin\Display\CreateTable methods
|
|
*
|
|
* @package PhpMyAdmin-test
|
|
*/
|
|
class CreateTableTest extends TestCase
|
|
{
|
|
/**
|
|
* Test for setUp
|
|
*
|
|
* @return void
|
|
*/
|
|
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'] = "server_privileges.php";
|
|
|
|
//$_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(
|
|
Util::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
|
|
);
|
|
}
|
|
}
|