File: UserAgentTest.php

package info (click to toggle)
php-faker 1.20.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 12,412 kB
  • sloc: php: 115,671; xml: 213; makefile: 49
file content (59 lines) | stat: -rw-r--r-- 1,460 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?php

namespace Faker\Test\Provider;

use Faker\Provider\UserAgent;
use Faker\Test\TestCase;

/**
 * @group legacy
 */
final class UserAgentTest extends TestCase
{
    public function testAllAgents()
    {
        $agent = new UserAgent($this->faker);
        $reflection = new \ReflectionClass($agent);
        $agents = $reflection->getProperty('userAgents');
        $agents->setAccessible(true);

        foreach ($agents->getValue() as $method) {
            self::assertNotNull(UserAgent::$method());
        }
    }

    public function testRandomUserAgent()
    {
        self::assertNotNull(UserAgent::userAgent());
    }

    public function testFirefoxUserAgent()
    {
        self::assertStringContainsString(' Firefox/', UserAgent::firefox());
    }

    public function testSafariUserAgent()
    {
        self::assertStringContainsString('Safari/', UserAgent::safari());
    }

    public function testInternetExplorerUserAgent()
    {
        self::assertStringStartsWith('Mozilla/5.0 (compatible; MSIE ', UserAgent::internetExplorer());
    }

    public function testOperaUserAgent()
    {
        self::assertStringStartsWith('Opera/', UserAgent::opera());
    }

    public function testChromeUserAgent()
    {
        self::assertStringContainsString('(KHTML, like Gecko) Chrome/', UserAgent::chrome());
    }

    public function testMSEdgeUserAgent()
    {
        self::assertStringContainsString('Edg', UserAgent::msedge());
    }
}