phpmyadmin/test/classes/Controllers/GisDataEditorControllerTest.php
Maurício Meneghini Fauth 7fc96d6621
Call PHPUnit static methods using static calls
Backports #18907 to QA_5_2.

This makes merging QA_5_2 into master easier.
Changes done using Rector.

- #18907

Signed-off-by: Maurício Meneghini Fauth <mauricio@mfauth.net>
2024-10-12 14:28:22 -03:00

79 lines
2.1 KiB
PHP

<?php
declare(strict_types=1);
namespace PhpMyAdmin\Tests\Controllers;
use PhpMyAdmin\Controllers\GisDataEditorController;
use PhpMyAdmin\Template;
use PhpMyAdmin\Tests\AbstractTestCase;
use PhpMyAdmin\Tests\Stubs\ResponseRenderer;
/**
* @covers \PhpMyAdmin\Controllers\GisDataEditorController
*/
class GisDataEditorControllerTest extends AbstractTestCase
{
/** @var GisDataEditorController|null */
private $controller = null;
protected function setUp(): void
{
parent::setUp();
$GLOBALS['server'] = 1;
$GLOBALS['text_dir'] = 'ltr';
$GLOBALS['PMA_PHP_SELF'] = 'index.php';
$GLOBALS['db'] = 'db';
$GLOBALS['table'] = 'table';
$this->controller = new GisDataEditorController(new ResponseRenderer(), new Template());
}
/**
* @param mixed[] $gis_data
* @param mixed[] $expected
*
* @group gis
* @dataProvider providerForTestValidateGisData
*/
public function testValidateGisData(array $gis_data, string $type, ?string $value, array $expected): void
{
/** @var mixed[] $gisData */
$gisData = $this->callFunction(
$this->controller,
GisDataEditorController::class,
'validateGisData',
[
$gis_data,
$type,
$value,
]
);
self::assertEquals($expected, $gisData);
}
/**
* @return list<list<mixed[]|string|null>>
* @psalm-return list<array{0:mixed[],1:string,2:string|null,3:mixed[]}>
*/
public static function providerForTestValidateGisData(): array
{
/** @psalm-var list<array{0:mixed[],1:string,2:string|null,3:mixed[]}> */
return [
[
[],
'GEOMETRY',
'GEOMETRYCOLLECTION()',
['gis_type' => 'GEOMETRYCOLLECTION'],
],
[
[],
'GEOMETRY',
'GEOMETRYCOLLECTION EMPTY',
['gis_type' => 'GEOMETRYCOLLECTION'],
],
];
}
}