phpmyadmin/test/classes/Server/SysInfo/SysInfoTest.php
William Desportes ddfdbc2134
Remove some useless doc blocks and fix some coding standard warnings
Signed-off-by: William Desportes <williamdes@wdes.fr>
2020-07-18 00:14:32 +02:00

76 lines
1.5 KiB
PHP

<?php
/**
* tests for sysinfo library
*/
declare(strict_types=1);
namespace PhpMyAdmin\Tests\Server\SysInfo;
use PhpMyAdmin\Server\SysInfo\Base;
use PhpMyAdmin\Server\SysInfo\SysInfo;
use PhpMyAdmin\Tests\AbstractTestCase;
/**
* tests for sysinfo library
*/
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.
*/
public 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()->supported());
}
}