|
| 1 | +<?php |
| 2 | + |
| 3 | +namespace Laravel\Jetstream\Tests; |
| 4 | + |
| 5 | +use Laravel\Jetstream\Agent; |
| 6 | +use PHPUnit\Framework\Attributes\DataProvider; |
| 7 | +use PHPUnit\Framework\TestCase; |
| 8 | + |
| 9 | +/** |
| 10 | + * @copyright Originally created by Jens Segers: https://github.com/jenssegers/agent |
| 11 | + */ |
| 12 | +class AgentTest extends TestCase |
| 13 | +{ |
| 14 | + /** |
| 15 | + * @param string $userAgent |
| 16 | + * @param string $platform |
| 17 | + * @return void |
| 18 | + */ |
| 19 | + #[DataProvider('operatingSystemsDataProvider')] |
| 20 | + public function testOperatingSystems($userAgent, $platform) |
| 21 | + { |
| 22 | + $agent = new Agent(); |
| 23 | + $agent->setUserAgent($userAgent); |
| 24 | + |
| 25 | + $this->assertEquals($platform, $agent->platform()); |
| 26 | + } |
| 27 | + |
| 28 | + public static function operatingSystemsDataProvider() |
| 29 | + { |
| 30 | + yield ['Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2486.0 Safari/537.36 Edge/13.10586', 'Windows']; |
| 31 | + yield ['Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/537.13+ (KHTML, like Gecko) Version/5.1.7 Safari/534.57.2', 'OS X']; |
| 32 | + yield ['Mozilla/5.0 (iPad; CPU OS 5_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko ) Version/5.1 Mobile/9B176 Safari/7534.48.3', 'iOS']; |
| 33 | + yield ['Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:24.0) Gecko/20100101 Firefox/24.0', 'Ubuntu']; |
| 34 | + yield ['Mozilla/5.0 (BlackBerry; U; BlackBerry 9900; en) AppleWebKit/534.11+ (KHTML, like Gecko) Version/7.1.0.346 Mobile Safari/534.11+', 'BlackBerryOS']; |
| 35 | + yield ['Mozilla/5.0 (Linux; U; Android 2.2; en-us; Nexus One Build/FRF91) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1', 'AndroidOS']; |
| 36 | + yield ['Mozilla/5.0 (X11; CrOS x86_64 6680.78.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.102 Safari/537.36', 'ChromeOS']; |
| 37 | + yield ['Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36', 'Windows']; |
| 38 | + } |
| 39 | + |
| 40 | + /** |
| 41 | + * @param string $userAgent |
| 42 | + * @param string $browser |
| 43 | + * @return void |
| 44 | + */ |
| 45 | + #[DataProvider('browsersDataProvider')] |
| 46 | + public function testBrowsers($userAgent, $browser) |
| 47 | + { |
| 48 | + $agent = new Agent(); |
| 49 | + $agent->setUserAgent($userAgent); |
| 50 | + |
| 51 | + $this->assertEquals($browser, $agent->browser()); |
| 52 | + } |
| 53 | + |
| 54 | + public static function browsersDataProvider() |
| 55 | + { |
| 56 | + yield ['Mozilla/5.0 (Windows NT 6.3; Trident/7.0; rv:11.0) like Gecko', 'IE']; |
| 57 | + yield ['Mozilla/5.0 (iPad; CPU OS 6_0 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10A5355d Safari/8536.25', 'Safari']; |
| 58 | + yield ['Mozilla/5.0 (Windows; U; Win 9x 4.90; SG; rv:1.9.2.4) Gecko/20101104 Netscape/9.1.0285', 'Netscape']; |
| 59 | + yield ['Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko/20100101 Firefox/25.0', 'Firefox']; |
| 60 | + yield ['Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1667.0 Safari/537.36', 'Chrome']; |
| 61 | + yield ['Mozilla/5.0 (Windows; U; Windows NT 6.1; rv:2.2) Gecko/20110201', 'Mozilla']; |
| 62 | + yield ['Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14', 'Opera']; |
| 63 | + yield ['Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.115 Safari/537.36 OPR/27.0.1689.76', 'Opera']; |
| 64 | + yield ['Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12', 'Edge']; |
| 65 | + yield ['Mozilla/5.0 (iPhone; CPU iPhone OS 6_0 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10A5376e Safari/8536.25', 'Safari']; |
| 66 | + yield ['Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36 Vivaldi/1.2.490.43', 'Vivaldi']; |
| 67 | + yield ['Mozilla/5.0 (Linux; U; Android 4.0.4; en-US; LT28h Build/6.1.E.3.7) AppleWebKit/534.31 (KHTML, like Gecko) UCBrowser/9.2.2.323 U3/0.8.0 Mobile Safari/534.31', 'UCBrowser']; |
| 68 | + yield ['Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36 Edge/15.15063', 'Edge']; |
| 69 | + yield ['Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.29 Safari/537.36 Edg/79.0.309.18', 'Edge']; |
| 70 | + yield ['Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/537.36 (KHTML, like Gecko) coc_coc_browser/86.0.180 Chrome/80.0.3987.180 Safari/537.36', 'Coc Coc']; |
| 71 | + } |
| 72 | + |
| 73 | + /** |
| 74 | + * @param string $userAgent |
| 75 | + * @param bool $expected |
| 76 | + * @return void |
| 77 | + */ |
| 78 | + #[DataProvider('devicesDataProvider')] |
| 79 | + public function testDesktopDevices($userAgent, $expected) |
| 80 | + { |
| 81 | + $agent = new Agent(); |
| 82 | + $agent->setUserAgent($userAgent); |
| 83 | + |
| 84 | + $this->assertSame($expected, $agent->isDesktop()); |
| 85 | + } |
| 86 | + |
| 87 | + public static function devicesDataProvider() |
| 88 | + { |
| 89 | + // User Agent, Is Desktop? |
| 90 | + yield ['Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.56 (KHTML, like Gecko) Version/9.0 Safari/601.1.56', true]; |
| 91 | + yield ['Mozilla/5.0 (iPhone; U; ru; CPU iPhone OS 4_2_1 like Mac OS X; ru) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8C148a Safari/6533.18.5', false]; |
| 92 | + yield ['Mozilla/5.0 (iPad; CPU OS 6_0 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10A5355d Safari/8536.25', false]; |
| 93 | + yield ['Mozilla/5.0 (Linux; U; Android 2.3.4; fr-fr; HTC Desire Build/GRJ22) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1', false]; |
| 94 | + yield ['Mozilla/5.0 (BlackBerry; U; BlackBerry 9900; en) AppleWebKit/534.11+ (KHTML, like Gecko) Version/7.1.0.346 Mobile Safari/534.11+', false]; |
| 95 | + yield ['Mozilla/5.0 (Linux; U; Android 2.2; en-us; Nexus One Build/FRF91) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1', false]; |
| 96 | + yield ['Mozilla/5.0 (Linux; U; Android 4.0.3; en-us; ASUS Transformer Pad TF300T Build/IML74K) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Safari/534.30', false]; |
| 97 | + } |
| 98 | +} |
0 commit comments