tracking/Tests/Functional/Dashboard/Provider/RecordviewsTest.php
Daniel Siepmann 5f0490f493
WIP|Add flags feature
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)
2022-09-21 17:33:27 +02:00

387 lines
13 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\Functional\Dashboard\Provider;
use DanielSiepmann\Tracking\Dashboard\Provider\Demand;
use DanielSiepmann\Tracking\Dashboard\Provider\Recordviews;
use TYPO3\CMS\Core\Domain\Repository\PageRepository;
use TYPO3\CMS\Core\Utility\GeneralUtility;
use TYPO3\TestingFramework\Core\Functional\FunctionalTestCase as TestCase;
/**
* @covers \DanielSiepmann\Tracking\Dashboard\Provider\Recordviews
*/
class RecordviewsTest extends TestCase
{
protected $testExtensionsToLoad = [
'typo3conf/ext/tracking',
];
/**
* @test
*/
public function listsSixResultsForLast31DaysByDefault(): void
{
$this->importDataSet('EXT:tracking/Tests/Functional/Fixtures/SysCategories.xml');
$connection = $this->getConnectionPool()->getConnectionForTable('tx_tracking_recordview');
for ($i = 1; $i <= 10; $i++) {
$connection->insert('tx_tracking_recordview', [
'crdate' => time(),
'record' => 'sys_category_' . $i,
'record_uid' => $i,
'record_table_name' => 'sys_category',
]);
}
$subject = new Recordviews(
GeneralUtility::makeInstance(PageRepository::class),
$this->getConnectionPool()->getQueryBuilderForTable('tx_tracking_recordview'),
new Demand()
);
$result = $subject->getChartData();
self::assertSame([
'Category 10',
'Category 9',
'Category 8',
'Category 7',
'Category 6',
'Category 5',
], $result['labels']);
self::assertCount(6, $result['datasets'][0]['data']);
}
/**
* @test
*/
public function respectedOrdering(): void
{
$this->importDataSet('EXT:tracking/Tests/Functional/Fixtures/SysCategories.xml');
$connection = $this->getConnectionPool()->getConnectionForTable('tx_tracking_recordview');
$connection->insert('tx_tracking_recordview', [
'crdate' => time(),
'record' => 'sys_category_1',
'record_uid' => 1,
'record_table_name' => 'sys_category',
]);
$connection->insert('tx_tracking_recordview', [
'crdate' => time(),
'record' => 'sys_category_2',
'record_uid' => 2,
'record_table_name' => 'sys_category',
]);
$connection->insert('tx_tracking_recordview', [
'crdate' => time(),
'record' => 'sys_category_3',
'record_uid' => 3,
'record_table_name' => 'sys_category',
]);
$connection->insert('tx_tracking_recordview', [
'crdate' => time(),
'record' => 'sys_category_2',
'record_uid' => 2,
'record_table_name' => 'sys_category',
]);
$subject = new Recordviews(
GeneralUtility::makeInstance(PageRepository::class),
$this->getConnectionPool()->getQueryBuilderForTable('tx_tracking_recordview'),
new Demand(2)
);
$result = $subject->getChartData();
self::assertSame([
'Category 2',
'Category 3',
'Category 1',
], $result['labels']);
self::assertCount(3, $result['datasets'][0]['data']);
}
/**
* @test
*/
public function respectedNumberOfDays(): void
{
$this->importDataSet('EXT:tracking/Tests/Functional/Fixtures/SysCategories.xml');
$connection = $this->getConnectionPool()->getConnectionForTable('tx_tracking_recordview');
$connection->insert('tx_tracking_recordview', [
'crdate' => strtotime('-3 days'),
'record' => 'sys_category_1',
'record_uid' => 1,
'record_table_name' => 'sys_category',
]);
$connection->insert('tx_tracking_recordview', [
'crdate' => strtotime('-2 days'),
'record' => 'sys_category_2',
'record_uid' => 2,
'record_table_name' => 'sys_category',
]);
$connection->insert('tx_tracking_recordview', [
'crdate' => strtotime('-1 day'),
'record' => 'sys_category_3',
'record_uid' => 3,
'record_table_name' => 'sys_category',
]);
$subject = new Recordviews(
GeneralUtility::makeInstance(PageRepository::class),
$this->getConnectionPool()->getQueryBuilderForTable('tx_tracking_recordview'),
new Demand(2)
);
$result = $subject->getChartData();
self::assertSame([
'Category 3',
'Category 2',
], $result['labels']);
self::assertCount(2, $result['datasets'][0]['data']);
}
/**
* @test
*/
public function respectedMaxResults(): void
{
$this->importDataSet('EXT:tracking/Tests/Functional/Fixtures/SysCategories.xml');
$connection = $this->getConnectionPool()->getConnectionForTable('tx_tracking_recordview');
for ($i = 1; $i <= 10; $i++) {
$connection->insert('tx_tracking_recordview', [
'crdate' => time(),
'record' => 'sys_category_' . $i,
'record_uid' => $i,
'record_table_name' => 'sys_category',
]);
}
$subject = new Recordviews(
GeneralUtility::makeInstance(PageRepository::class),
$this->getConnectionPool()->getQueryBuilderForTable('tx_tracking_recordview'),
new Demand(31, 2)
);
$result = $subject->getChartData();
self::assertSame([
'Category 10',
'Category 9',
], $result['labels']);
self::assertCount(2, $result['datasets'][0]['data']);
}
/**
* @test
*/
public function respectedExcludedPages(): void
{
$this->importDataSet('EXT:tracking/Tests/Functional/Fixtures/SysCategories.xml');
$connection = $this->getConnectionPool()->getConnectionForTable('tx_tracking_recordview');
for ($i = 1; $i <= 10; $i++) {
$connection->insert('tx_tracking_recordview', [
'pid' => $i,
'crdate' => time(),
'record' => 'sys_category_' . $i,
'record_uid' => $i,
'record_table_name' => 'sys_category',
]);
}
$subject = new Recordviews(
GeneralUtility::makeInstance(PageRepository::class),
$this->getConnectionPool()->getQueryBuilderForTable('tx_tracking_recordview'),
new Demand(31, 6, [1, 2, 3, 4, 5])
);
$result = $subject->getChartData();
self::assertSame([
'Category 10',
'Category 9',
'Category 8',
'Category 7',
'Category 6',
], $result['labels']);
self::assertCount(5, $result['datasets'][0]['data']);
}
/**
* @test
*/
public function respectLimitesTables(): void
{
$this->importDataSet('EXT:tracking/Tests/Functional/Fixtures/SysCategories.xml');
$connection = $this->getConnectionPool()->getConnectionForTable('tx_tracking_recordview');
for ($i = 1; $i <= 3; $i++) {
$connection->insert('tx_tracking_recordview', [
'crdate' => time(),
'record' => 'sys_category_' . $i,
'record_uid' => $i,
'record_table_name' => 'sys_category',
]);
}
$connection->insert('tx_tracking_recordview', [
'crdate' => time(),
'record' => 'tt_content_1',
'record_uid' => 1,
'record_table_name' => 'tt_content',
]);
$subject = new Recordviews(
GeneralUtility::makeInstance(PageRepository::class),
$this->getConnectionPool()->getQueryBuilderForTable('tx_tracking_recordview'),
new Demand(31, 6),
['sys_category']
);
$result = $subject->getChartData();
self::assertSame([
'Category 3',
'Category 2',
'Category 1',
], $result['labels']);
self::assertCount(3, $result['datasets'][0]['data']);
}
/**
* @test
*/
public function respectsLimitedTypes(): void
{
$connection = $this->getConnectionPool()->getConnectionForTable('tx_tracking_recordview');
for ($i = 1; $i <= 3; $i++) {
$connection->insert('tx_tracking_recordview', [
'crdate' => time(),
'record' => 'tt_content_' . $i,
'record_uid' => $i,
'record_table_name' => 'tt_content',
]);
$connection->insert('tt_content', [
'uid' => $i,
'CType' => $i,
'header' => 'Content element ' . $i,
]);
}
$subject = new Recordviews(
GeneralUtility::makeInstance(PageRepository::class),
$this->getConnectionPool()->getQueryBuilderForTable('tx_tracking_recordview'),
new Demand(31, 6),
[],
['1', 2]
);
$result = $subject->getChartData();
self::assertSame([
'Content element 2',
'Content element 1',
], $result['labels']);
self::assertCount(2, $result['datasets'][0]['data']);
}
/**
* @test
*/
public function localizedRecordTitlesIfLimitedToSingleLanguage(): void
{
$this->importDataSet('EXT:tracking/Tests/Functional/Fixtures/SysCategories.xml');
$connection = $this->getConnectionPool()->getConnectionForTable('tx_tracking_recordview');
$connection->insert('tx_tracking_recordview', [
'crdate' => time(),
'sys_language_uid' => 0,
'record' => 'sys_category_1',
'record_uid' => 1,
'record_table_name' => 'sys_category',
]);
$connection->insert('tx_tracking_recordview', [
'crdate' => time(),
'sys_language_uid' => 1,
'record' => 'sys_category_1',
'record_uid' => 1,
'record_table_name' => 'sys_category',
]);
$connection->insert('tx_tracking_recordview', [
'crdate' => time(),
'sys_language_uid' => 1,
'record' => 'sys_category_2',
'record_uid' => 2,
'record_table_name' => 'sys_category',
]);
$subject = new Recordviews(
GeneralUtility::makeInstance(PageRepository::class),
$this->getConnectionPool()->getQueryBuilderForTable('tx_tracking_recordview'),
new Demand(31, 6, [], [1])
);
$result = $subject->getChartData();
self::assertSame([
'Category 2',
'Kategorie 1',
], $result['labels']);
self::assertCount(2, $result['datasets'][0]['data']);
}
/**
* @test
*/
public function defaultLanguageTitleIsUsedIfMultipleLanguagesAreAllowed(): void
{
$this->importDataSet('EXT:tracking/Tests/Functional/Fixtures/SysCategories.xml');
$connection = $this->getConnectionPool()->getConnectionForTable('tx_tracking_recordview');
$connection->insert('tx_tracking_recordview', [
'crdate' => time(),
'sys_language_uid' => 0,
'record' => 'sys_category_1',
'record_uid' => 1,
'record_table_name' => 'sys_category',
]);
$connection->insert('tx_tracking_recordview', [
'crdate' => time(),
'sys_language_uid' => 1,
'record' => 'sys_category_1',
'record_uid' => 1,
'record_table_name' => 'sys_category',
]);
$connection->insert('tx_tracking_recordview', [
'crdate' => time(),
'sys_language_uid' => 1,
'record' => 'sys_category_2',
'record_uid' => 2,
'record_table_name' => 'sys_category',
]);
$subject = new Recordviews(
GeneralUtility::makeInstance(PageRepository::class),
$this->getConnectionPool()->getQueryBuilderForTable('tx_tracking_recordview'),
new Demand(31, 6, [], [1, 0])
);
$result = $subject->getChartData();
self::assertSame([
'Category 1',
'Category 2',
], $result['labels']);
self::assertCount(2, $result['datasets'][0]['data']);
}
// TODO: Add tests for new feature regarding tags
}