1
0
Fork 0
mirror of synced 2024-04-29 10:22:41 +12:00
appwrite/tests/unit/Detector/DetectorTest.php
2021-02-22 14:30:28 +02:00

55 lines
1.2 KiB
PHP

<?php
namespace Appwrite\Tests;
use Appwrite\Detector\Detector;
use PHPUnit\Framework\TestCase;
class DetectorTest extends TestCase
{
/**
* @var Detector
*/
protected $object = null;
public function setUp(): void
{
$this->object = new Detector('Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:47.0) Gecko/20100101 Firefox/47.0');
}
public function tearDown(): void
{
}
public function testGetOS()
{
$this->assertEquals($this->object->getOS(), [
'osCode' => 'WIN',
'osName' => 'Windows',
'osVersion' => '7',
]);
}
public function testGetClient()
{
$this->assertEquals($this->object->getClient(), [
'clientType' => 'browser',
'clientCode' => 'FF',
'clientName' => 'Firefox',
'clientVersion' => '47.0',
'clientEngine' => 'Gecko',
'clientEngineVersion' => '47.0',
]);
}
public function testGetDevice()
{
$this->assertEquals($this->object->getDevice(), [
'deviceName' => 'desktop',
'deviceBrand' => '',
'deviceModel' => '',
]);
}
}