phpmyadmin/test/classes/Server/SysInfo/SysInfoTest.php
Maurício Meneghini Fauth dd885dc7b8
Use single-line arrays when possible
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2023-03-27 17:39:17 -03:00

56 lines
1.3 KiB
PHP

<?php
declare(strict_types=1);
namespace PhpMyAdmin\Tests\Server\SysInfo;
use PhpMyAdmin\Server\SysInfo\Base;
use PhpMyAdmin\Server\SysInfo\SysInfo;
use PhpMyAdmin\Tests\AbstractTestCase;
/** @covers \PhpMyAdmin\Server\SysInfo\SysInfo */
class SysInfoTest extends AbstractTestCase
{
/**
* Test for OS detection
*
* @param string $os OS name as returned by PHP_OS
* @param string $expected Expected detected OS name
*
* @dataProvider sysInfoOsProvider
*/
public function testGetSysInfoOs(string $os, string $expected): void
{
$this->assertEquals(
$expected,
SysInfo::getOs($os),
);
}
/**
* Data provider for OS detection tests.
*
* @return string[][]
*/
public static function sysInfoOsProvider(): array
{
return [['FreeBSD', 'Linux'], ['Linux', 'Linux'], ['Winnt', 'Winnt'], ['SunOS', 'SunOS']];
}
/**
* Test for getting sysinfo object.
*/
public function testGetSysInfo(): void
{
$this->assertInstanceOf(Base::class, SysInfo::get());
}
/**
* Test for getting supported sysinfo object.
*/
public function testGetSysInfoSupported(): void
{
$this->assertTrue(SysInfo::get()::isSupported());
}
}