2020-02-25 21:19:18 +01:00
|
|
|
<?php
|
|
|
|
|
2020-04-01 20:40:00 +02:00
|
|
|
namespace DanielSiepmann\Tracking\Tests\Unit\Domain\Repository;
|
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 as Model;
|
2020-04-01 21:04:32 +02:00
|
|
|
use DanielSiepmann\Tracking\Domain\Pageview\Factory;
|
2020-02-25 21:19:18 +01:00
|
|
|
use DanielSiepmann\Tracking\Domain\Repository\Pageview;
|
2020-04-01 21:04:32 +02:00
|
|
|
use Doctrine\DBAL\Statement;
|
2020-04-07 15:04:20 +02:00
|
|
|
use Prophecy\PhpUnit\ProphecyTrait;
|
2020-02-25 21:19:18 +01:00
|
|
|
use TYPO3\CMS\Core\Database\Connection;
|
2020-04-01 21:04:32 +02:00
|
|
|
use TYPO3\CMS\Core\Database\Query\QueryBuilder;
|
2020-02-25 21:19:18 +01:00
|
|
|
use TYPO3\CMS\Core\Site\Entity\SiteLanguage;
|
2021-05-21 18:49:38 +02:00
|
|
|
use TYPO3\TestingFramework\Core\Unit\UnitTestCase as TestCase;
|
2020-02-25 21:19:18 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @covers DanielSiepmann\Tracking\Domain\Repository\Pageview
|
|
|
|
*/
|
|
|
|
class PageviewTest extends TestCase
|
|
|
|
{
|
2020-04-07 15:04:20 +02:00
|
|
|
use ProphecyTrait;
|
|
|
|
|
2020-02-25 21:19:18 +01:00
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
2020-04-01 20:40:00 +02:00
|
|
|
public function modelCanBeAdded(): void
|
2020-02-25 21:19:18 +01:00
|
|
|
{
|
|
|
|
$connection = $this->prophesize(Connection::class);
|
2020-04-01 21:04:32 +02:00
|
|
|
$factory = $this->prophesize(Factory::class);
|
2020-02-25 21:19:18 +01:00
|
|
|
|
|
|
|
$dateTime = $this->prophesize(\DateTimeImmutable::class);
|
|
|
|
$dateTime->format('U')->willReturn(1582660189);
|
|
|
|
|
|
|
|
$language = $this->prophesize(SiteLanguage::class);
|
|
|
|
$language->getLanguageId()->willReturn(2);
|
|
|
|
|
|
|
|
$model = $this->prophesize(Model::class);
|
|
|
|
$model->getPageUid()->willReturn(10);
|
|
|
|
$model->getCrdate()->willReturn($dateTime->reveal());
|
|
|
|
$model->getPageType()->willReturn(999);
|
|
|
|
$model->getLanguage()->willReturn($language->reveal());
|
|
|
|
$model->getUrl()->willReturn('https://example.com/path.html');
|
|
|
|
$model->getUserAgent()->willReturn('Mozilla/5.0 (Windows NT 10.0) Gecko/20100101 Firefox/74.0');
|
2020-04-01 21:04:32 +02:00
|
|
|
$model->getOperatingSystem()->willReturn('Linux');
|
2020-02-25 21:19:18 +01:00
|
|
|
|
|
|
|
$connection->insert(
|
|
|
|
'tx_tracking_pageview',
|
|
|
|
[
|
|
|
|
'pid' => 10,
|
|
|
|
'crdate' => 1582660189,
|
|
|
|
'tstamp' => 1582660189,
|
|
|
|
'type' => 999,
|
|
|
|
'sys_language_uid' => 2,
|
|
|
|
'url' => 'https://example.com/path.html',
|
|
|
|
'user_agent' => 'Mozilla/5.0 (Windows NT 10.0) Gecko/20100101 Firefox/74.0',
|
2020-04-01 21:04:32 +02:00
|
|
|
'operating_system' => 'Linux',
|
2020-02-25 21:19:18 +01:00
|
|
|
]
|
|
|
|
)->willReturn(1)->shouldBeCalledTimes(1);
|
|
|
|
|
2020-04-01 21:04:32 +02:00
|
|
|
$subject = new Pageview($connection->reveal(), $factory->reveal());
|
2020-02-25 21:19:18 +01:00
|
|
|
$subject->add($model->reveal());
|
|
|
|
}
|
2020-04-01 21:04:32 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function throwsExceptionIfModelToUodateHasNoUid(): void
|
|
|
|
{
|
|
|
|
$connection = $this->prophesize(Connection::class);
|
|
|
|
$factory = $this->prophesize(Factory::class);
|
|
|
|
|
|
|
|
$model = $this->prophesize(Model::class);
|
|
|
|
$model->getUid()->willReturn(0);
|
|
|
|
|
|
|
|
$subject = new Pageview($connection->reveal(), $factory->reveal());
|
|
|
|
$this->expectExceptionMessage('Can not update pageview if uid is 0.');
|
|
|
|
$subject->update($model->reveal());
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function modelCanBeUpdated(): void
|
|
|
|
{
|
|
|
|
$connection = $this->prophesize(Connection::class);
|
|
|
|
$factory = $this->prophesize(Factory::class);
|
|
|
|
|
|
|
|
$dateTime = $this->prophesize(\DateTimeImmutable::class);
|
|
|
|
$dateTime->format('U')->willReturn(1582660189);
|
|
|
|
|
|
|
|
$language = $this->prophesize(SiteLanguage::class);
|
|
|
|
$language->getLanguageId()->willReturn(2);
|
|
|
|
|
|
|
|
$model = $this->prophesize(Model::class);
|
|
|
|
$model->getUid()->willReturn(1);
|
|
|
|
$model->getPageUid()->willReturn(10);
|
|
|
|
$model->getCrdate()->willReturn($dateTime->reveal());
|
|
|
|
$model->getPageType()->willReturn(999);
|
|
|
|
$model->getLanguage()->willReturn($language->reveal());
|
|
|
|
$model->getUrl()->willReturn('https://example.com/path.html');
|
|
|
|
$model->getUserAgent()->willReturn('Mozilla/5.0 (Windows NT 10.0) Gecko/20100101 Firefox/74.0');
|
|
|
|
$model->getOperatingSystem()->willReturn('Linux');
|
|
|
|
|
|
|
|
$connection->update(
|
|
|
|
'tx_tracking_pageview',
|
|
|
|
[
|
|
|
|
'pid' => 10,
|
|
|
|
'crdate' => 1582660189,
|
|
|
|
'tstamp' => 1582660189,
|
|
|
|
'type' => 999,
|
|
|
|
'sys_language_uid' => 2,
|
|
|
|
'url' => 'https://example.com/path.html',
|
|
|
|
'user_agent' => 'Mozilla/5.0 (Windows NT 10.0) Gecko/20100101 Firefox/74.0',
|
|
|
|
'operating_system' => 'Linux',
|
|
|
|
],
|
|
|
|
[
|
|
|
|
'uid' => 1
|
|
|
|
]
|
|
|
|
)->willReturn(1)->shouldBeCalledTimes(1);
|
|
|
|
|
|
|
|
$subject = new Pageview($connection->reveal(), $factory->reveal());
|
|
|
|
$subject->update($model->reveal());
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function returnsACountOfAllModels(): void
|
|
|
|
{
|
|
|
|
$statement = $this->prophesize(Statement::class);
|
|
|
|
$statement->fetchColumn()->willReturn(10);
|
|
|
|
|
|
|
|
$queryBuilder = $this->prophesize(QueryBuilder::class);
|
|
|
|
$queryBuilder->count('uid')->willReturn($queryBuilder->reveal());
|
|
|
|
$queryBuilder->from('tx_tracking_pageview')->willReturn($queryBuilder->reveal());
|
|
|
|
$queryBuilder->execute()->willReturn($statement->reveal());
|
|
|
|
|
|
|
|
$connection = $this->prophesize(Connection::class);
|
|
|
|
$connection->createQueryBuilder()->willReturn($queryBuilder->reveal());
|
|
|
|
|
|
|
|
$factory = $this->prophesize(Factory::class);
|
|
|
|
|
|
|
|
$subject = new Pageview($connection->reveal(), $factory->reveal());
|
|
|
|
static::assertSame(10, $subject->countAll());
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function returnsAllModells(): void
|
|
|
|
{
|
|
|
|
$statement = $this->prophesize(Statement::class);
|
|
|
|
$statement->fetch()->willReturn(
|
|
|
|
[
|
|
|
|
'pid' => '10',
|
|
|
|
'crdate' => '1595948372',
|
|
|
|
'type' => '0',
|
|
|
|
'sys_language_uid' => '0',
|
|
|
|
'url' => 'https://example.com/path/file.html',
|
|
|
|
'user_agent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.116 Safari/537.36',
|
|
|
|
],
|
|
|
|
[
|
|
|
|
'pid' => '9',
|
|
|
|
'crdate' => '1595948376',
|
|
|
|
'type' => '0',
|
|
|
|
'sys_language_uid' => '0',
|
|
|
|
'url' => 'https://example.com/path/file.html',
|
|
|
|
'user_agent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.116 Safari/537.36',
|
|
|
|
],
|
|
|
|
false
|
|
|
|
);
|
|
|
|
|
|
|
|
$queryBuilder = $this->prophesize(QueryBuilder::class);
|
|
|
|
$queryBuilder->select('*')->willReturn($queryBuilder->reveal());
|
|
|
|
$queryBuilder->from('tx_tracking_pageview')->willReturn($queryBuilder->reveal());
|
|
|
|
$queryBuilder->execute()->willReturn($statement->reveal());
|
|
|
|
|
|
|
|
$connection = $this->prophesize(Connection::class);
|
|
|
|
$connection->createQueryBuilder()->willReturn($queryBuilder->reveal());
|
|
|
|
|
|
|
|
$model1 = $this->prophesize(Model::class);
|
|
|
|
$model1->getPageUid()->willReturn(10);
|
|
|
|
$model2 = $this->prophesize(Model::class);
|
|
|
|
$model2->getPageUid()->willReturn(9);
|
|
|
|
|
|
|
|
$factory = $this->prophesize(Factory::class);
|
|
|
|
$factory->fromDbRow([
|
|
|
|
'pid' => '10',
|
|
|
|
'crdate' => '1595948372',
|
|
|
|
'type' => '0',
|
|
|
|
'sys_language_uid' => '0',
|
|
|
|
'url' => 'https://example.com/path/file.html',
|
|
|
|
'user_agent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.116 Safari/537.36',
|
|
|
|
])->willReturn($model1->reveal());
|
|
|
|
$factory->fromDbRow([
|
|
|
|
'pid' => '9',
|
|
|
|
'crdate' => '1595948376',
|
|
|
|
'type' => '0',
|
|
|
|
'sys_language_uid' => '0',
|
|
|
|
'url' => 'https://example.com/path/file.html',
|
|
|
|
'user_agent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.116 Safari/537.36',
|
|
|
|
])->willReturn($model2->reveal());
|
|
|
|
|
|
|
|
$subject = new Pageview($connection->reveal(), $factory->reveal());
|
|
|
|
static::assertCount(2, $subject->findAll());
|
|
|
|
|
|
|
|
$pageUid = 10;
|
|
|
|
foreach ($subject->findAll() as $model) {
|
|
|
|
static::assertSame($pageUid, $model->getPageUid());
|
|
|
|
--$pageUid;
|
|
|
|
}
|
|
|
|
}
|
2020-02-25 21:19:18 +01:00
|
|
|
}
|