2020-07-29 10:07:14 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace DanielSiepmann\Tracking\Tests\Unit\Domain\Model;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 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\Recordview;
|
2020-09-16 16:27:45 +02:00
|
|
|
use TYPO3\TestingFramework\Core\Unit\UnitTestCase as TestCase;
|
2020-07-29 10:07:14 +02:00
|
|
|
use Prophecy\PhpUnit\ProphecyTrait;
|
|
|
|
use TYPO3\CMS\Core\Site\Entity\SiteLanguage;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @covers DanielSiepmann\Tracking\Domain\Model\Recordview
|
|
|
|
*/
|
|
|
|
class RecordviewTest extends TestCase
|
|
|
|
{
|
|
|
|
use ProphecyTrait;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function canBeCreated(): void
|
|
|
|
{
|
|
|
|
$language = $this->prophesize(SiteLanguage::class);
|
|
|
|
|
|
|
|
$subject = new Recordview(
|
|
|
|
0,
|
|
|
|
$language->reveal(),
|
|
|
|
new \DateTimeImmutable(),
|
|
|
|
'',
|
|
|
|
'',
|
|
|
|
10,
|
|
|
|
'sys_category'
|
|
|
|
);
|
|
|
|
|
|
|
|
static::assertInstanceOf(Recordview::class, $subject);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function returnsPageUid(): void
|
|
|
|
{
|
|
|
|
$language = $this->prophesize(SiteLanguage::class);
|
|
|
|
|
|
|
|
$subject = new Recordview(
|
|
|
|
500,
|
|
|
|
$language->reveal(),
|
|
|
|
new \DateTimeImmutable(),
|
|
|
|
'',
|
|
|
|
'',
|
|
|
|
10,
|
|
|
|
'sys_category'
|
|
|
|
);
|
|
|
|
|
|
|
|
static::assertSame(500, $subject->getPageUid());
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function returnsLanguage(): void
|
|
|
|
{
|
|
|
|
$language = $this->prophesize(SiteLanguage::class);
|
|
|
|
|
|
|
|
$subject = new Recordview(
|
|
|
|
0,
|
|
|
|
$language->reveal(),
|
|
|
|
new \DateTimeImmutable(),
|
|
|
|
'',
|
|
|
|
'',
|
|
|
|
10,
|
|
|
|
'sys_category'
|
|
|
|
);
|
|
|
|
|
|
|
|
static::assertSame($language->reveal(), $subject->getLanguage());
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function returnsCrdate(): void
|
|
|
|
{
|
|
|
|
$language = $this->prophesize(SiteLanguage::class);
|
|
|
|
$crdate = new \DateTimeImmutable();
|
|
|
|
|
|
|
|
$subject = new Recordview(
|
|
|
|
0,
|
|
|
|
$language->reveal(),
|
|
|
|
$crdate,
|
|
|
|
'',
|
|
|
|
'',
|
|
|
|
10,
|
|
|
|
'sys_category'
|
|
|
|
);
|
|
|
|
|
|
|
|
static::assertSame($crdate, $subject->getCrdate());
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function returnsUrl(): void
|
|
|
|
{
|
|
|
|
$language = $this->prophesize(SiteLanguage::class);
|
|
|
|
|
|
|
|
$subject = new Recordview(
|
|
|
|
0,
|
|
|
|
$language->reveal(),
|
|
|
|
new \DateTimeImmutable(),
|
|
|
|
'https://example.com/path.html',
|
|
|
|
'',
|
|
|
|
10,
|
|
|
|
'sys_category'
|
|
|
|
);
|
|
|
|
|
|
|
|
static::assertSame('https://example.com/path.html', $subject->getUrl());
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function returnsUserAgent(): void
|
|
|
|
{
|
|
|
|
$language = $this->prophesize(SiteLanguage::class);
|
|
|
|
|
|
|
|
$subject = new Recordview(
|
|
|
|
0,
|
|
|
|
$language->reveal(),
|
|
|
|
new \DateTimeImmutable(),
|
|
|
|
'',
|
|
|
|
'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:74.0) Gecko/20100101 Firefox/74.0',
|
|
|
|
10,
|
|
|
|
'sys_category'
|
|
|
|
);
|
|
|
|
|
|
|
|
static::assertSame(
|
|
|
|
'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:74.0) Gecko/20100101 Firefox/74.0',
|
|
|
|
$subject->getUserAgent()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function returnsRecordUid(): void
|
|
|
|
{
|
|
|
|
$language = $this->prophesize(SiteLanguage::class);
|
|
|
|
|
|
|
|
$subject = new Recordview(
|
|
|
|
0,
|
|
|
|
$language->reveal(),
|
|
|
|
new \DateTimeImmutable(),
|
|
|
|
'',
|
|
|
|
'',
|
|
|
|
10,
|
|
|
|
'sys_category'
|
|
|
|
);
|
|
|
|
|
|
|
|
static::assertSame(
|
|
|
|
10,
|
|
|
|
$subject->getRecordUid()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function returnsTableName(): void
|
|
|
|
{
|
|
|
|
$language = $this->prophesize(SiteLanguage::class);
|
|
|
|
|
|
|
|
$subject = new Recordview(
|
|
|
|
0,
|
|
|
|
$language->reveal(),
|
|
|
|
new \DateTimeImmutable(),
|
|
|
|
'',
|
|
|
|
'',
|
|
|
|
10,
|
|
|
|
'sys_category'
|
|
|
|
);
|
|
|
|
|
|
|
|
static::assertSame(
|
|
|
|
'sys_category',
|
|
|
|
$subject->getTableName()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function returnsOperatingSystem(): void
|
|
|
|
{
|
|
|
|
$language = $this->prophesize(SiteLanguage::class);
|
|
|
|
|
|
|
|
$subject = new Recordview(
|
|
|
|
0,
|
|
|
|
$language->reveal(),
|
|
|
|
new \DateTimeImmutable(),
|
|
|
|
'',
|
|
|
|
'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.116 Safari/537.36',
|
|
|
|
10,
|
|
|
|
'sys_category'
|
|
|
|
);
|
|
|
|
|
|
|
|
static::assertSame(
|
|
|
|
'Linux',
|
|
|
|
$subject->getOperatingSystem()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|