mirror of
https://github.com/DanielSiepmann/tracking.git
synced 2024-11-16 11:16:09 +01:00
Daniel Siepmann
5f0490f493
Allow each tracking record to contain arbitrary tags. Those tags are generated via an API and can be extended by foreign extensions or for individual projects. Existing operating_system was moved to this new feature. The update command allows to migrate existing records to this new feature. Those flags can be used when configuring widgets. A new flag was added bot:yes and bot:no. Bots are now tracked but flagged. That new feature allows to build fine grained reports and makes the extension way more flexible. Possible new implications: - Show visits from none bots - Show visits from bots - Show visits from specific bot - Add color to page views per page (bar chart) to color bot or none bot WIP: - Update Yaml file to work like before, no bots in widgets - Add documentation (widgets) - Add documentation (migration *.yaml)
219 lines
5 KiB
PHP
219 lines
5 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/*
|
|
* 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.
|
|
*/
|
|
|
|
namespace DanielSiepmann\Tracking\Tests\Unit\Domain\Model;
|
|
|
|
use DanielSiepmann\Tracking\Domain\Model\Pageview;
|
|
use Prophecy\PhpUnit\ProphecyTrait;
|
|
use TYPO3\CMS\Core\Site\Entity\SiteLanguage;
|
|
use TYPO3\TestingFramework\Core\Unit\UnitTestCase as TestCase;
|
|
|
|
/**
|
|
* @covers \DanielSiepmann\Tracking\Domain\Model\Pageview
|
|
*/
|
|
class PageviewTest extends TestCase
|
|
{
|
|
use ProphecyTrait;
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function canBeCreated(): void
|
|
{
|
|
$language = $this->prophesize(SiteLanguage::class);
|
|
|
|
$subject = new Pageview(
|
|
0,
|
|
$language->reveal(),
|
|
new \DateTimeImmutable(),
|
|
0,
|
|
'',
|
|
''
|
|
);
|
|
|
|
self::assertInstanceOf(Pageview::class, $subject);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function returnsPageUid(): void
|
|
{
|
|
$language = $this->prophesize(SiteLanguage::class);
|
|
|
|
$subject = new Pageview(
|
|
500,
|
|
$language->reveal(),
|
|
new \DateTimeImmutable(),
|
|
0,
|
|
'',
|
|
''
|
|
);
|
|
|
|
self::assertSame(500, $subject->getPageUid());
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function returnsLanguage(): void
|
|
{
|
|
$language = $this->prophesize(SiteLanguage::class);
|
|
|
|
$subject = new Pageview(
|
|
0,
|
|
$language->reveal(),
|
|
new \DateTimeImmutable(),
|
|
0,
|
|
'',
|
|
''
|
|
);
|
|
|
|
self::assertSame($language->reveal(), $subject->getLanguage());
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function returnsCrdate(): void
|
|
{
|
|
$language = $this->prophesize(SiteLanguage::class);
|
|
$crdate = new \DateTimeImmutable();
|
|
|
|
$subject = new Pageview(
|
|
0,
|
|
$language->reveal(),
|
|
$crdate,
|
|
0,
|
|
'',
|
|
''
|
|
);
|
|
|
|
self::assertSame($crdate, $subject->getCrdate());
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function returnsPageType(): void
|
|
{
|
|
$language = $this->prophesize(SiteLanguage::class);
|
|
|
|
$subject = new Pageview(
|
|
0,
|
|
$language->reveal(),
|
|
new \DateTimeImmutable(),
|
|
999,
|
|
'',
|
|
''
|
|
);
|
|
|
|
self::assertSame(999, $subject->getPageType());
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function returnsUrl(): void
|
|
{
|
|
$language = $this->prophesize(SiteLanguage::class);
|
|
|
|
$subject = new Pageview(
|
|
0,
|
|
$language->reveal(),
|
|
new \DateTimeImmutable(),
|
|
0,
|
|
'https://example.com/path.html',
|
|
''
|
|
);
|
|
|
|
self::assertSame('https://example.com/path.html', $subject->getUrl());
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function returnsUserAgent(): void
|
|
{
|
|
$language = $this->prophesize(SiteLanguage::class);
|
|
|
|
$subject = new Pageview(
|
|
0,
|
|
$language->reveal(),
|
|
new \DateTimeImmutable(),
|
|
0,
|
|
'',
|
|
'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:74.0) Gecko/20100101 Firefox/74.0'
|
|
);
|
|
|
|
self::assertSame(
|
|
'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:74.0) Gecko/20100101 Firefox/74.0',
|
|
$subject->getUserAgent()
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function returnsZeroAsDefaultUid(): void
|
|
{
|
|
$language = $this->prophesize(SiteLanguage::class);
|
|
|
|
$subject = new Pageview(
|
|
0,
|
|
$language->reveal(),
|
|
new \DateTimeImmutable(),
|
|
0,
|
|
'',
|
|
'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:74.0) Gecko/20100101 Firefox/74.0'
|
|
);
|
|
|
|
self::assertSame(
|
|
0,
|
|
$subject->getUid()
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function returnsSetAsUid(): void
|
|
{
|
|
$language = $this->prophesize(SiteLanguage::class);
|
|
|
|
$subject = new Pageview(
|
|
0,
|
|
$language->reveal(),
|
|
new \DateTimeImmutable(),
|
|
0,
|
|
'',
|
|
'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:74.0) Gecko/20100101 Firefox/74.0',
|
|
10
|
|
);
|
|
|
|
self::assertSame(
|
|
10,
|
|
$subject->getUid()
|
|
);
|
|
}
|
|
}
|