2020-07-30 12:22:32 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace DanielSiepmann\Tracking\Tests\Functional\Dashboard\Provider;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 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\Dashboard\Provider\Recordviews;
|
|
|
|
use TYPO3\CMS\Core\Domain\Repository\PageRepository;
|
2022-12-07 13:37:19 +01:00
|
|
|
use TYPO3\CMS\Core\Localization\LanguageServiceFactory;
|
2020-07-30 12:22:32 +02:00
|
|
|
use TYPO3\CMS\Core\Utility\GeneralUtility;
|
|
|
|
use TYPO3\TestingFramework\Core\Functional\FunctionalTestCase as TestCase;
|
|
|
|
|
|
|
|
/**
|
2022-12-07 13:37:19 +01:00
|
|
|
* @covers \DanielSiepmann\Tracking\Dashboard\Provider\Recordviews
|
2020-07-30 12:22:32 +02:00
|
|
|
*/
|
|
|
|
class RecordviewsTest extends TestCase
|
|
|
|
{
|
2022-12-07 13:37:19 +01:00
|
|
|
protected array $testExtensionsToLoad = [
|
2020-07-30 12:22:32 +02:00
|
|
|
'typo3conf/ext/tracking',
|
|
|
|
];
|
|
|
|
|
2022-12-07 13:37:19 +01:00
|
|
|
protected function setUp(): void
|
|
|
|
{
|
|
|
|
parent::setUp();
|
|
|
|
$GLOBALS['LANG'] = $this->getContainer()->get(LanguageServiceFactory::class)->create('default');
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function tearDown(): void
|
|
|
|
{
|
|
|
|
unset($GLOBALS['LANG']);
|
|
|
|
parent::tearDown();
|
|
|
|
}
|
|
|
|
|
2020-07-30 12:22:32 +02:00
|
|
|
/**
|
|
|
|
* @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),
|
2021-11-25 14:40:00 +01:00
|
|
|
$this->getConnectionPool()->getQueryBuilderForTable('tx_tracking_recordview')
|
2020-07-30 12:22:32 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
$result = $subject->getChartData();
|
2022-12-07 13:37:19 +01:00
|
|
|
self::assertSame([
|
2020-07-30 12:22:32 +02:00
|
|
|
'Category 10',
|
|
|
|
'Category 9',
|
|
|
|
'Category 8',
|
|
|
|
'Category 7',
|
|
|
|
'Category 6',
|
|
|
|
'Category 5',
|
|
|
|
], $result['labels']);
|
2022-12-07 13:37:19 +01:00
|
|
|
self::assertCount(6, $result['datasets'][0]['data']);
|
2020-07-30 12:22:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @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),
|
2021-11-25 14:40:00 +01:00
|
|
|
$this->getConnectionPool()->getQueryBuilderForTable('tx_tracking_recordview'),
|
2020-07-30 12:22:32 +02:00
|
|
|
2
|
|
|
|
);
|
|
|
|
|
|
|
|
$result = $subject->getChartData();
|
2022-12-07 13:37:19 +01:00
|
|
|
self::assertSame([
|
2020-07-30 12:22:32 +02:00
|
|
|
'Category 2',
|
|
|
|
'Category 3',
|
|
|
|
'Category 1',
|
|
|
|
], $result['labels']);
|
2022-12-07 13:37:19 +01:00
|
|
|
self::assertCount(3, $result['datasets'][0]['data']);
|
2020-07-30 12:22:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @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),
|
2021-11-25 14:40:00 +01:00
|
|
|
$this->getConnectionPool()->getQueryBuilderForTable('tx_tracking_recordview'),
|
2020-07-30 12:22:32 +02:00
|
|
|
2
|
|
|
|
);
|
|
|
|
|
|
|
|
$result = $subject->getChartData();
|
2022-12-07 13:37:19 +01:00
|
|
|
self::assertSame([
|
2020-07-30 12:22:32 +02:00
|
|
|
'Category 3',
|
|
|
|
'Category 2',
|
|
|
|
], $result['labels']);
|
2022-12-07 13:37:19 +01:00
|
|
|
self::assertCount(2, $result['datasets'][0]['data']);
|
2020-07-30 12:22:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @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),
|
2021-11-25 14:40:00 +01:00
|
|
|
$this->getConnectionPool()->getQueryBuilderForTable('tx_tracking_recordview'),
|
2020-07-30 12:22:32 +02:00
|
|
|
31,
|
|
|
|
2
|
|
|
|
);
|
|
|
|
|
|
|
|
$result = $subject->getChartData();
|
2022-12-07 13:37:19 +01:00
|
|
|
self::assertSame([
|
2020-07-30 12:22:32 +02:00
|
|
|
'Category 10',
|
|
|
|
'Category 9',
|
|
|
|
], $result['labels']);
|
2022-12-07 13:37:19 +01:00
|
|
|
self::assertCount(2, $result['datasets'][0]['data']);
|
2020-07-30 12:22:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @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),
|
2021-11-25 14:40:00 +01:00
|
|
|
$this->getConnectionPool()->getQueryBuilderForTable('tx_tracking_recordview'),
|
2020-07-30 12:22:32 +02:00
|
|
|
31,
|
|
|
|
6,
|
2021-05-21 18:49:38 +02:00
|
|
|
[1, 2, 3, 4, 5]
|
2020-07-30 12:22:32 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
$result = $subject->getChartData();
|
2022-12-07 13:37:19 +01:00
|
|
|
self::assertSame([
|
2020-07-30 12:22:32 +02:00
|
|
|
'Category 10',
|
|
|
|
'Category 9',
|
|
|
|
'Category 8',
|
|
|
|
'Category 7',
|
|
|
|
'Category 6',
|
|
|
|
], $result['labels']);
|
2022-12-07 13:37:19 +01:00
|
|
|
self::assertCount(5, $result['datasets'][0]['data']);
|
2020-07-30 12:22:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @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),
|
2021-11-25 14:40:00 +01:00
|
|
|
$this->getConnectionPool()->getQueryBuilderForTable('tx_tracking_recordview'),
|
2020-07-30 12:22:32 +02:00
|
|
|
31,
|
|
|
|
6,
|
|
|
|
[],
|
|
|
|
[],
|
|
|
|
['sys_category']
|
|
|
|
);
|
|
|
|
|
|
|
|
$result = $subject->getChartData();
|
2022-12-07 13:37:19 +01:00
|
|
|
self::assertSame([
|
2020-07-30 12:22:32 +02:00
|
|
|
'Category 3',
|
|
|
|
'Category 2',
|
|
|
|
'Category 1',
|
|
|
|
], $result['labels']);
|
2022-12-07 13:37:19 +01:00
|
|
|
self::assertCount(3, $result['datasets'][0]['data']);
|
2020-07-30 12:22:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @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),
|
2021-11-25 14:40:00 +01:00
|
|
|
$this->getConnectionPool()->getQueryBuilderForTable('tx_tracking_recordview'),
|
2020-07-30 12:22:32 +02:00
|
|
|
31,
|
|
|
|
6,
|
|
|
|
[],
|
|
|
|
[],
|
|
|
|
[],
|
2021-05-21 18:49:38 +02:00
|
|
|
['1', 2]
|
2020-07-30 12:22:32 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
$result = $subject->getChartData();
|
2022-12-07 13:37:19 +01:00
|
|
|
self::assertSame([
|
2020-07-30 12:22:32 +02:00
|
|
|
'Content element 2',
|
|
|
|
'Content element 1',
|
|
|
|
], $result['labels']);
|
2022-12-07 13:37:19 +01:00
|
|
|
self::assertCount(2, $result['datasets'][0]['data']);
|
2020-07-30 12:22:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @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),
|
2021-11-25 14:40:00 +01:00
|
|
|
$this->getConnectionPool()->getQueryBuilderForTable('tx_tracking_recordview'),
|
2020-07-30 12:22:32 +02:00
|
|
|
31,
|
|
|
|
6,
|
|
|
|
[],
|
|
|
|
[1],
|
|
|
|
[],
|
|
|
|
[]
|
|
|
|
);
|
|
|
|
|
|
|
|
$result = $subject->getChartData();
|
2022-12-07 13:37:19 +01:00
|
|
|
self::assertSame([
|
2020-07-30 12:22:32 +02:00
|
|
|
'Category 2',
|
|
|
|
'Kategorie 1',
|
|
|
|
], $result['labels']);
|
2022-12-07 13:37:19 +01:00
|
|
|
self::assertCount(2, $result['datasets'][0]['data']);
|
2020-07-30 12:22:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @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),
|
2021-11-25 14:40:00 +01:00
|
|
|
$this->getConnectionPool()->getQueryBuilderForTable('tx_tracking_recordview'),
|
2020-07-30 12:22:32 +02:00
|
|
|
31,
|
|
|
|
6,
|
|
|
|
[],
|
|
|
|
[1, 0],
|
|
|
|
[],
|
|
|
|
[]
|
|
|
|
);
|
|
|
|
|
|
|
|
$result = $subject->getChartData();
|
2022-12-07 13:37:19 +01:00
|
|
|
self::assertSame([
|
2020-07-30 12:22:32 +02:00
|
|
|
'Category 1',
|
|
|
|
'Category 2',
|
|
|
|
], $result['labels']);
|
2022-12-07 13:37:19 +01:00
|
|
|
self::assertCount(2, $result['datasets'][0]['data']);
|
2020-07-30 12:22:32 +02:00
|
|
|
}
|
|
|
|
}
|