1
0
Fork 0
mirror of synced 2024-05-17 03:02:35 +12:00

Added tests

This commit is contained in:
Eldad Fux 2021-02-14 19:54:21 +02:00
parent 764abc22ae
commit 368bbe848e

View file

@ -0,0 +1,54 @@
<?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' => '',
]);
}
public function testGetDevice()
{
$this->assertEquals($this->object->getDevice(), [
'deviceName' => 'desktop',
'deviceBrand' => '',
'deviceModel' => '',
]);
}
}