mirror of
https://github.com/lubuntu-team/lubuntu.me.git
synced 2025-07-11 23:11:29 +00:00
50 lines
1.2 KiB
PHP
50 lines
1.2 KiB
PHP
<?php
|
|
error_reporting(E_ALL);
|
|
$local_path = dirname(__FILE__);
|
|
|
|
class UserAgentParser_test extends \PHPUnit_Framework_TestCase {
|
|
|
|
function test_parse_user_agent() {
|
|
global $local_path;
|
|
$uas = json_decode(file_get_contents($local_path . '/user_agents.json'), true);
|
|
|
|
foreach($uas as $ua => $expected_result) {
|
|
$result = parse_user_agent($ua);
|
|
$this->assertSame($expected_result, $result, $ua . " failed!" );
|
|
}
|
|
|
|
}
|
|
|
|
function test_pase_user_agent_empty() {
|
|
$expected = array(
|
|
'platform' => null,
|
|
'browser' => null,
|
|
'version' => null,
|
|
);
|
|
|
|
$result = parse_user_agent('');
|
|
$this->assertSame($result, $expected);
|
|
|
|
// $result = parse_user_agent('asdjkakljasdkljasdlkj');
|
|
// $this->assertEquals($result, $expected);
|
|
|
|
$result = parse_user_agent('Mozilla (asdjkakljasdkljasdlkj) BlahBlah');
|
|
$this->assertSame($result, $expected);
|
|
}
|
|
|
|
|
|
/**
|
|
* @expectedException \InvalidArgumentException
|
|
*/
|
|
function test_no_user_agent_exception() {
|
|
unset($_SERVER['HTTP_USER_AGENT']);
|
|
parse_user_agent();
|
|
}
|
|
|
|
function test_global_user_agent(){
|
|
$_SERVER['HTTP_USER_AGENT'] = 'Test/1.0';
|
|
$this->assertSame(array('platform'=>null, 'browser' => 'Test', 'version' => '1.0'), parse_user_agent());
|
|
}
|
|
|
|
}
|