mirror of
https://github.com/DanielSiepmann/tracking.git
synced 2024-11-14 10:36:09 +01:00
Daniel Siepmann
adb73eeffc
This allows configuration via PHP. It also combines code sniffer and php cs fixer. Used commands: composer remove --dev squizlabs/php_codesniffer composer req --dev symplify/easy-coding-standard ./vendor/bin/ecs --fix
437 lines
14 KiB
PHP
437 lines
14 KiB
PHP
<?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\Database\ConnectionPool;
|
|
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',
|
|
]);
|
|
}
|
|
|
|
$connectionPool = GeneralUtility::makeInstance(ConnectionPool::class);
|
|
/* @var ConnectionPool $connectionPool */
|
|
|
|
$subject = new Recordviews(
|
|
$connectionPool,
|
|
GeneralUtility::makeInstance(PageRepository::class),
|
|
$connectionPool->getQueryBuilderForTable('tx_tracking_recordview')
|
|
);
|
|
|
|
$result = $subject->getChartData();
|
|
static::assertSame([
|
|
'Category 10',
|
|
'Category 9',
|
|
'Category 8',
|
|
'Category 7',
|
|
'Category 6',
|
|
'Category 5',
|
|
], $result['labels']);
|
|
static::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',
|
|
]);
|
|
|
|
$connectionPool = GeneralUtility::makeInstance(ConnectionPool::class);
|
|
/* @var ConnectionPool $connectionPool */
|
|
|
|
$subject = new Recordviews(
|
|
$connectionPool,
|
|
GeneralUtility::makeInstance(PageRepository::class),
|
|
$connectionPool->getQueryBuilderForTable('tx_tracking_recordview'),
|
|
2
|
|
);
|
|
|
|
$result = $subject->getChartData();
|
|
static::assertSame([
|
|
'Category 2',
|
|
'Category 3',
|
|
'Category 1',
|
|
], $result['labels']);
|
|
static::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',
|
|
]);
|
|
|
|
$connectionPool = GeneralUtility::makeInstance(ConnectionPool::class);
|
|
/* @var ConnectionPool $connectionPool */
|
|
|
|
$subject = new Recordviews(
|
|
$connectionPool,
|
|
GeneralUtility::makeInstance(PageRepository::class),
|
|
$connectionPool->getQueryBuilderForTable('tx_tracking_recordview'),
|
|
2
|
|
);
|
|
|
|
$result = $subject->getChartData();
|
|
static::assertSame([
|
|
'Category 3',
|
|
'Category 2',
|
|
], $result['labels']);
|
|
static::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',
|
|
]);
|
|
}
|
|
|
|
$connectionPool = GeneralUtility::makeInstance(ConnectionPool::class);
|
|
/* @var ConnectionPool $connectionPool */
|
|
|
|
$subject = new Recordviews(
|
|
$connectionPool,
|
|
GeneralUtility::makeInstance(PageRepository::class),
|
|
$connectionPool->getQueryBuilderForTable('tx_tracking_recordview'),
|
|
31,
|
|
2
|
|
);
|
|
|
|
$result = $subject->getChartData();
|
|
static::assertSame([
|
|
'Category 10',
|
|
'Category 9',
|
|
], $result['labels']);
|
|
static::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',
|
|
]);
|
|
}
|
|
|
|
$connectionPool = GeneralUtility::makeInstance(ConnectionPool::class);
|
|
/* @var ConnectionPool $connectionPool */
|
|
|
|
$subject = new Recordviews(
|
|
$connectionPool,
|
|
GeneralUtility::makeInstance(PageRepository::class),
|
|
$connectionPool->getQueryBuilderForTable('tx_tracking_recordview'),
|
|
31,
|
|
6,
|
|
[1, 2, 3, 4, 5]
|
|
);
|
|
|
|
$result = $subject->getChartData();
|
|
static::assertSame([
|
|
'Category 10',
|
|
'Category 9',
|
|
'Category 8',
|
|
'Category 7',
|
|
'Category 6',
|
|
], $result['labels']);
|
|
static::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',
|
|
]);
|
|
|
|
$connectionPool = GeneralUtility::makeInstance(ConnectionPool::class);
|
|
/* @var ConnectionPool $connectionPool */
|
|
|
|
$subject = new Recordviews(
|
|
$connectionPool,
|
|
GeneralUtility::makeInstance(PageRepository::class),
|
|
$connectionPool->getQueryBuilderForTable('tx_tracking_recordview'),
|
|
31,
|
|
6,
|
|
[],
|
|
[],
|
|
['sys_category']
|
|
);
|
|
|
|
$result = $subject->getChartData();
|
|
static::assertSame([
|
|
'Category 3',
|
|
'Category 2',
|
|
'Category 1',
|
|
], $result['labels']);
|
|
static::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,
|
|
]);
|
|
}
|
|
|
|
$connectionPool = GeneralUtility::makeInstance(ConnectionPool::class);
|
|
/* @var ConnectionPool $connectionPool */
|
|
|
|
$subject = new Recordviews(
|
|
$connectionPool,
|
|
GeneralUtility::makeInstance(PageRepository::class),
|
|
$connectionPool->getQueryBuilderForTable('tx_tracking_recordview'),
|
|
31,
|
|
6,
|
|
[],
|
|
[],
|
|
[],
|
|
['1', 2]
|
|
);
|
|
|
|
$result = $subject->getChartData();
|
|
static::assertSame([
|
|
'Content element 2',
|
|
'Content element 1',
|
|
], $result['labels']);
|
|
static::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',
|
|
]);
|
|
|
|
$connectionPool = GeneralUtility::makeInstance(ConnectionPool::class);
|
|
/* @var ConnectionPool $connectionPool */
|
|
|
|
$subject = new Recordviews(
|
|
$connectionPool,
|
|
GeneralUtility::makeInstance(PageRepository::class),
|
|
$connectionPool->getQueryBuilderForTable('tx_tracking_recordview'),
|
|
31,
|
|
6,
|
|
[],
|
|
[1],
|
|
[],
|
|
[]
|
|
);
|
|
|
|
$result = $subject->getChartData();
|
|
static::assertSame([
|
|
'Category 2',
|
|
'Kategorie 1',
|
|
], $result['labels']);
|
|
static::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',
|
|
]);
|
|
|
|
$connectionPool = GeneralUtility::makeInstance(ConnectionPool::class);
|
|
/* @var ConnectionPool $connectionPool */
|
|
|
|
$subject = new Recordviews(
|
|
$connectionPool,
|
|
GeneralUtility::makeInstance(PageRepository::class),
|
|
$connectionPool->getQueryBuilderForTable('tx_tracking_recordview'),
|
|
31,
|
|
6,
|
|
[],
|
|
[1, 0],
|
|
[],
|
|
[]
|
|
);
|
|
|
|
$result = $subject->getChartData();
|
|
static::assertSame([
|
|
'Category 1',
|
|
'Category 2',
|
|
], $result['labels']);
|
|
static::assertCount(2, $result['datasets'][0]['data']);
|
|
}
|
|
}
|