2020-02-25 21:19:18 +01:00
|
|
|
<?php
|
|
|
|
|
2024-02-05 11:25:00 +01:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2020-04-01 20:40:00 +02:00
|
|
|
namespace DanielSiepmann\Tracking\Tests\Unit\Domain\Model;
|
2020-02-25 21:19:18 +01: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.
|
|
|
|
*/
|
|
|
|
use DanielSiepmann\Tracking\Domain\Model\Pageview;
|
2022-12-07 13:37:19 +01:00
|
|
|
use DateTimeImmutable;
|
2024-02-05 11:25:00 +01:00
|
|
|
use PHPUnit\Framework\Attributes\CoversClass;
|
|
|
|
use PHPUnit\Framework\Attributes\Test;
|
2020-02-25 21:19:18 +01:00
|
|
|
use TYPO3\CMS\Core\Site\Entity\SiteLanguage;
|
2023-05-11 08:48:15 +02:00
|
|
|
use TYPO3\TestingFramework\Core\Unit\UnitTestCase;
|
2020-02-25 21:19:18 +01:00
|
|
|
|
2024-02-05 11:25:00 +01:00
|
|
|
#[CoversClass(Pageview::class)]
|
2023-05-11 08:48:15 +02:00
|
|
|
class PageviewTest extends UnitTestCase
|
2020-02-25 21:19:18 +01:00
|
|
|
{
|
2024-02-05 11:25:00 +01:00
|
|
|
#[Test]
|
2020-04-01 20:40:00 +02:00
|
|
|
public function canBeCreated(): void
|
2020-02-25 21:19:18 +01:00
|
|
|
{
|
2024-02-05 11:25:00 +01:00
|
|
|
$language = $this->createStub(SiteLanguage::class);
|
2020-02-25 21:19:18 +01:00
|
|
|
|
|
|
|
$subject = new Pageview(
|
|
|
|
0,
|
2024-02-05 11:25:00 +01:00
|
|
|
$language,
|
2022-12-07 13:37:19 +01:00
|
|
|
new DateTimeImmutable(),
|
2020-02-25 21:19:18 +01:00
|
|
|
0,
|
|
|
|
'',
|
|
|
|
''
|
|
|
|
);
|
|
|
|
|
2022-12-07 13:37:19 +01:00
|
|
|
self::assertInstanceOf(Pageview::class, $subject);
|
2020-02-25 21:19:18 +01:00
|
|
|
}
|
|
|
|
|
2024-02-05 11:25:00 +01:00
|
|
|
#[Test]
|
2020-04-01 20:40:00 +02:00
|
|
|
public function returnsPageUid(): void
|
2020-02-25 21:19:18 +01:00
|
|
|
{
|
2024-02-05 11:25:00 +01:00
|
|
|
$language = $this->createStub(SiteLanguage::class);
|
2020-02-25 21:19:18 +01:00
|
|
|
|
|
|
|
$subject = new Pageview(
|
|
|
|
500,
|
2024-02-05 11:25:00 +01:00
|
|
|
$language,
|
2022-12-07 13:37:19 +01:00
|
|
|
new DateTimeImmutable(),
|
2020-02-25 21:19:18 +01:00
|
|
|
0,
|
|
|
|
'',
|
|
|
|
''
|
|
|
|
);
|
|
|
|
|
2022-12-07 13:37:19 +01:00
|
|
|
self::assertSame(500, $subject->getPageUid());
|
2020-02-25 21:19:18 +01:00
|
|
|
}
|
|
|
|
|
2024-02-05 11:25:00 +01:00
|
|
|
#[Test]
|
2020-04-01 20:40:00 +02:00
|
|
|
public function returnsLanguage(): void
|
2020-02-25 21:19:18 +01:00
|
|
|
{
|
2024-02-05 11:25:00 +01:00
|
|
|
$language = $this->createStub(SiteLanguage::class);
|
2020-02-25 21:19:18 +01:00
|
|
|
|
|
|
|
$subject = new Pageview(
|
|
|
|
0,
|
2024-02-05 11:25:00 +01:00
|
|
|
$language,
|
2022-12-07 13:37:19 +01:00
|
|
|
new DateTimeImmutable(),
|
2020-02-25 21:19:18 +01:00
|
|
|
0,
|
|
|
|
'',
|
|
|
|
''
|
|
|
|
);
|
|
|
|
|
2024-02-05 11:25:00 +01:00
|
|
|
self::assertSame($language, $subject->getLanguage());
|
2020-02-25 21:19:18 +01:00
|
|
|
}
|
|
|
|
|
2024-02-05 11:25:00 +01:00
|
|
|
#[Test]
|
2020-04-01 20:40:00 +02:00
|
|
|
public function returnsCrdate(): void
|
2020-02-25 21:19:18 +01:00
|
|
|
{
|
2024-02-05 11:25:00 +01:00
|
|
|
$language = $this->createStub(SiteLanguage::class);
|
2022-12-07 13:37:19 +01:00
|
|
|
$crdate = new DateTimeImmutable();
|
2020-02-25 21:19:18 +01:00
|
|
|
|
|
|
|
$subject = new Pageview(
|
|
|
|
0,
|
2024-02-05 11:25:00 +01:00
|
|
|
$language,
|
2020-02-25 21:19:18 +01:00
|
|
|
$crdate,
|
|
|
|
0,
|
|
|
|
'',
|
|
|
|
''
|
|
|
|
);
|
|
|
|
|
2022-12-07 13:37:19 +01:00
|
|
|
self::assertSame($crdate, $subject->getCrdate());
|
2020-02-25 21:19:18 +01:00
|
|
|
}
|
|
|
|
|
2024-02-05 11:25:00 +01:00
|
|
|
#[Test]
|
2020-04-01 20:40:00 +02:00
|
|
|
public function returnsPageType(): void
|
2020-02-25 21:19:18 +01:00
|
|
|
{
|
2024-02-05 11:25:00 +01:00
|
|
|
$language = $this->createStub(SiteLanguage::class);
|
2020-02-25 21:19:18 +01:00
|
|
|
|
|
|
|
$subject = new Pageview(
|
|
|
|
0,
|
2024-02-05 11:25:00 +01:00
|
|
|
$language,
|
2022-12-07 13:37:19 +01:00
|
|
|
new DateTimeImmutable(),
|
2020-02-25 21:19:18 +01:00
|
|
|
999,
|
|
|
|
'',
|
|
|
|
''
|
|
|
|
);
|
|
|
|
|
2022-12-07 13:37:19 +01:00
|
|
|
self::assertSame(999, $subject->getPageType());
|
2020-02-25 21:19:18 +01:00
|
|
|
}
|
|
|
|
|
2024-02-05 11:25:00 +01:00
|
|
|
#[Test]
|
2020-04-01 20:40:00 +02:00
|
|
|
public function returnsUrl(): void
|
2020-02-25 21:19:18 +01:00
|
|
|
{
|
2024-02-05 11:25:00 +01:00
|
|
|
$language = $this->createStub(SiteLanguage::class);
|
2020-02-25 21:19:18 +01:00
|
|
|
|
|
|
|
$subject = new Pageview(
|
|
|
|
0,
|
2024-02-05 11:25:00 +01:00
|
|
|
$language,
|
2022-12-07 13:37:19 +01:00
|
|
|
new DateTimeImmutable(),
|
2020-02-25 21:19:18 +01:00
|
|
|
0,
|
|
|
|
'https://example.com/path.html',
|
|
|
|
''
|
|
|
|
);
|
|
|
|
|
2022-12-07 13:37:19 +01:00
|
|
|
self::assertSame('https://example.com/path.html', $subject->getUrl());
|
2020-02-25 21:19:18 +01:00
|
|
|
}
|
|
|
|
|
2024-02-05 11:25:00 +01:00
|
|
|
#[Test]
|
2020-04-01 20:40:00 +02:00
|
|
|
public function returnsUserAgent(): void
|
2020-02-25 21:19:18 +01:00
|
|
|
{
|
2024-02-05 11:25:00 +01:00
|
|
|
$language = $this->createStub(SiteLanguage::class);
|
2020-02-25 21:19:18 +01:00
|
|
|
|
|
|
|
$subject = new Pageview(
|
|
|
|
0,
|
2024-02-05 11:25:00 +01:00
|
|
|
$language,
|
2022-12-07 13:37:19 +01:00
|
|
|
new DateTimeImmutable(),
|
2020-02-25 21:19:18 +01:00
|
|
|
0,
|
|
|
|
'',
|
|
|
|
'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:74.0) Gecko/20100101 Firefox/74.0'
|
|
|
|
);
|
|
|
|
|
2022-12-07 13:37:19 +01:00
|
|
|
self::assertSame(
|
2020-02-25 21:19:18 +01:00
|
|
|
'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:74.0) Gecko/20100101 Firefox/74.0',
|
|
|
|
$subject->getUserAgent()
|
|
|
|
);
|
|
|
|
}
|
2020-04-01 21:04:32 +02:00
|
|
|
|
2024-02-05 11:25:00 +01:00
|
|
|
#[Test]
|
2020-04-01 21:04:32 +02:00
|
|
|
public function returnsZeroAsDefaultUid(): void
|
|
|
|
{
|
2024-02-05 11:25:00 +01:00
|
|
|
$language = $this->createStub(SiteLanguage::class);
|
2020-04-01 21:04:32 +02:00
|
|
|
|
|
|
|
$subject = new Pageview(
|
|
|
|
0,
|
2024-02-05 11:25:00 +01:00
|
|
|
$language,
|
2022-12-07 13:37:19 +01:00
|
|
|
new DateTimeImmutable(),
|
2020-04-01 21:04:32 +02:00
|
|
|
0,
|
|
|
|
'',
|
|
|
|
'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:74.0) Gecko/20100101 Firefox/74.0'
|
|
|
|
);
|
|
|
|
|
2022-12-07 13:37:19 +01:00
|
|
|
self::assertSame(
|
2020-04-01 21:04:32 +02:00
|
|
|
0,
|
|
|
|
$subject->getUid()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2024-02-05 11:25:00 +01:00
|
|
|
#[Test]
|
2020-04-01 21:04:32 +02:00
|
|
|
public function returnsSetAsUid(): void
|
|
|
|
{
|
2024-02-05 11:25:00 +01:00
|
|
|
$language = $this->createStub(SiteLanguage::class);
|
2020-04-01 21:04:32 +02:00
|
|
|
|
|
|
|
$subject = new Pageview(
|
|
|
|
0,
|
2024-02-05 11:25:00 +01:00
|
|
|
$language,
|
2022-12-07 13:37:19 +01:00
|
|
|
new DateTimeImmutable(),
|
2020-04-01 21:04:32 +02:00
|
|
|
0,
|
|
|
|
'',
|
|
|
|
'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:74.0) Gecko/20100101 Firefox/74.0',
|
|
|
|
10
|
|
|
|
);
|
|
|
|
|
2022-12-07 13:37:19 +01:00
|
|
|
self::assertSame(
|
2020-04-01 21:04:32 +02:00
|
|
|
10,
|
|
|
|
$subject->getUid()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2024-02-05 11:25:00 +01:00
|
|
|
#[Test]
|
2020-07-29 10:07:14 +02:00
|
|
|
public function returnsOperatingSystem(): void
|
2020-04-01 21:04:32 +02:00
|
|
|
{
|
2024-02-05 11:25:00 +01:00
|
|
|
$language = $this->createStub(SiteLanguage::class);
|
2020-04-01 21:04:32 +02:00
|
|
|
|
|
|
|
$subject = new Pageview(
|
|
|
|
0,
|
2024-02-05 11:25:00 +01:00
|
|
|
$language,
|
2022-12-07 13:37:19 +01:00
|
|
|
new DateTimeImmutable(),
|
2020-04-01 21:04:32 +02:00
|
|
|
0,
|
|
|
|
'',
|
2020-07-29 10:07:14 +02:00
|
|
|
'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.116 Safari/537.36'
|
2020-04-01 21:04:32 +02:00
|
|
|
);
|
|
|
|
|
2022-12-07 13:37:19 +01:00
|
|
|
self::assertSame(
|
2020-07-29 10:07:14 +02:00
|
|
|
'Linux',
|
2020-04-01 21:04:32 +02:00
|
|
|
$subject->getOperatingSystem()
|
|
|
|
);
|
|
|
|
}
|
2020-02-25 21:19:18 +01:00
|
|
|
}
|