2020-07-29 10:07:14 +02:00
|
|
|
<?php
|
|
|
|
|
2021-08-16 09:56:19 +02:00
|
|
|
declare(strict_types=1);
|
2020-07-29 10:07:14 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2020 Daniel Siepmann <coding@daniel-siepmann.de>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
|
|
|
* 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
2021-08-16 09:56:19 +02:00
|
|
|
namespace DanielSiepmann\Tracking\Tests\Unit\Domain\Extractors;
|
|
|
|
|
|
|
|
use DanielSiepmann\Tracking\Domain\Extractors\OperatingSystem;
|
2020-07-29 10:07:14 +02:00
|
|
|
use DanielSiepmann\Tracking\Domain\Model\Extractor;
|
2021-08-16 09:56:19 +02:00
|
|
|
use DanielSiepmann\Tracking\Domain\Model\Pageview;
|
|
|
|
use DanielSiepmann\Tracking\Domain\Model\Recordview;
|
2020-07-29 10:07:14 +02:00
|
|
|
use Prophecy\PhpUnit\ProphecyTrait;
|
2021-05-21 18:49:38 +02:00
|
|
|
use TYPO3\TestingFramework\Core\Unit\UnitTestCase as TestCase;
|
2020-07-29 10:07:14 +02:00
|
|
|
|
|
|
|
/**
|
2021-08-16 09:56:19 +02:00
|
|
|
* @covers \DanielSiepmann\Tracking\Domain\Extractors\OperatingSystem
|
2020-07-29 10:07:14 +02:00
|
|
|
*/
|
2021-08-16 09:56:19 +02:00
|
|
|
class OperatingSystemTest extends TestCase
|
2020-07-29 10:07:14 +02:00
|
|
|
{
|
|
|
|
use ProphecyTrait;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
* @dataProvider possibleUserStringWithOperatingSystems
|
2021-08-16 09:56:19 +02:00
|
|
|
* @testdox Operating system $expectedOperatingSystem is extracted from Pageview UserAgent string: $userAgent
|
|
|
|
*/
|
|
|
|
public function returnsOperatingSystemForPageview(string $userAgent, string $expectedOperatingSystem): void
|
|
|
|
{
|
|
|
|
$model = $this->prophesize(Pageview::class);
|
|
|
|
$model->getUserAgent()->willReturn($userAgent);
|
|
|
|
|
|
|
|
$extractor = new OperatingSystem();
|
|
|
|
$tags = $extractor->extractTagFromPageview($model->reveal());
|
|
|
|
|
|
|
|
self::assertCount(1, $tags);
|
|
|
|
self::assertSame($expectedOperatingSystem, $tags[0]->getValue());
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
* @dataProvider possibleUserStringWithOperatingSystems
|
|
|
|
* @testdox Operating system $expectedOperatingSystem is extracted from Recordview UserAgent string: $userAgent
|
2020-07-29 10:07:14 +02:00
|
|
|
*/
|
2021-08-16 09:56:19 +02:00
|
|
|
public function returnsOperatingSystemForRecordview(string $userAgent, string $expectedOperatingSystem): void
|
2020-07-29 10:07:14 +02:00
|
|
|
{
|
2021-08-16 09:56:19 +02:00
|
|
|
$model = $this->prophesize(Recordview::class);
|
2020-07-29 10:07:14 +02:00
|
|
|
$model->getUserAgent()->willReturn($userAgent);
|
|
|
|
|
2021-08-16 09:56:19 +02:00
|
|
|
$extractor = new OperatingSystem();
|
|
|
|
$tags = $extractor->extractTagFromRecordview($model->reveal());
|
|
|
|
|
|
|
|
self::assertCount(1, $tags);
|
|
|
|
self::assertSame($expectedOperatingSystem, $tags[0]->getValue());
|
2020-07-29 10:07:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function possibleUserStringWithOperatingSystems(): array
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
[
|
|
|
|
'userAgent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.116 Safari/537.36',
|
|
|
|
'expectedOperatingSystem' => 'Linux',
|
|
|
|
],
|
|
|
|
[
|
|
|
|
'userAgent' => 'Dalvik/2.1.0 (Linux; U; Android 9; ONEPLUS A3003 Build/PKQ1.181203.001)',
|
|
|
|
'expectedOperatingSystem' => 'Android',
|
|
|
|
],
|
|
|
|
[
|
|
|
|
'userAgent' => 'Apache-HttpClient/4.5.2 (Java/1.8.0_151)',
|
2021-08-16 09:56:19 +02:00
|
|
|
'expectedOperatingSystem' => 'Unkown',
|
2020-07-29 10:07:14 +02:00
|
|
|
],
|
|
|
|
[
|
|
|
|
'userAgent' => 'AwarioSmartBot/1.0 (+https://awario.com/bots.html; bots@awario.com)',
|
2021-08-16 09:56:19 +02:00
|
|
|
'expectedOperatingSystem' => 'Unkown',
|
2020-07-29 10:07:14 +02:00
|
|
|
],
|
|
|
|
[
|
|
|
|
'userAgent' => 'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)',
|
|
|
|
'expectedOperatingSystem' => 'Windows',
|
|
|
|
],
|
|
|
|
[
|
|
|
|
'userAgent' => 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:73.0) Gecko/20100101 Firefox/73.0',
|
|
|
|
'expectedOperatingSystem' => 'Macintosh',
|
|
|
|
],
|
|
|
|
[
|
|
|
|
'userAgent' => 'Mozilla/5.0 (X11; CrOS x86_64 12607.82.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.123 Safari/537.36',
|
|
|
|
'expectedOperatingSystem' => 'Google Chrome OS',
|
|
|
|
],
|
|
|
|
[
|
|
|
|
'userAgent' => 'Mozilla/5.0 (X11; U; OpenBSD i386; en-US; rv:1.8.1.4) Gecko/20070704 Firefox/52.0',
|
|
|
|
'expectedOperatingSystem' => 'OpenBSD',
|
|
|
|
],
|
|
|
|
[
|
|
|
|
'userAgent' => 'Mozilla/5.0 (iPad; CPU OS 13_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/80.0.3987.95 Mobile/15E148 Safari/604.1',
|
|
|
|
'expectedOperatingSystem' => 'iOS',
|
|
|
|
],
|
|
|
|
[
|
|
|
|
'userAgent' => 'Mozilla/5.0 (iPhone; CPU OS 13_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) FxiOS/22.0 Mobile/15E148 Safari/605.1.15',
|
|
|
|
'expectedOperatingSystem' => 'iOS',
|
|
|
|
],
|
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|