mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-08 18:56:14 +01:00
184 lines
4.5 KiB
PHP
184 lines
4.5 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace TTN\Tea\Tests\Functional\Domain\Repository;
|
|
|
|
use TTN\Tea\Domain\Model\Tea;
|
|
use TTN\Tea\Domain\Repository\TeaRepository;
|
|
use TYPO3\CMS\Extbase\Domain\Model\FileReference;
|
|
use TYPO3\CMS\Extbase\Persistence\PersistenceManagerInterface;
|
|
use TYPO3\TestingFramework\Core\Functional\FunctionalTestCase;
|
|
|
|
/**
|
|
* @covers \TTN\Tea\Domain\Repository\TeaRepository
|
|
* @covers \TTN\Tea\Domain\Model\Tea
|
|
*/
|
|
final class TeaRepositoryTest extends FunctionalTestCase
|
|
{
|
|
protected array $testExtensionsToLoad = ['ttn/tea'];
|
|
|
|
private TeaRepository $subject;
|
|
|
|
private PersistenceManagerInterface $persistenceManager;
|
|
|
|
protected function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
|
|
$this->persistenceManager = $this->get(PersistenceManagerInterface::class);
|
|
|
|
$this->subject = $this->get(TeaRepository::class);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function findAllForNoRecordsReturnsEmptyContainer(): void
|
|
{
|
|
$result = $this->subject->findAll();
|
|
|
|
self::assertCount(0, $result);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function findAllSortsByTitleInAscendingOrder(): void
|
|
{
|
|
$this->importCSVDataSet(__DIR__ . '/Fixtures/TwoUnsortedTeas.csv');
|
|
|
|
$result = $this->subject->findAll();
|
|
|
|
$result->rewind();
|
|
self::assertSame(2, $result->current()->getUid());
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function findByUidForInexistentRecordReturnsNull(): void
|
|
{
|
|
$model = $this->subject->findByUid(1);
|
|
|
|
self::assertNull($model);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function findByUidForExistingRecordReturnsModel(): void
|
|
{
|
|
$this->importCSVDataSet(__DIR__ . '/Fixtures/TeaWithAllScalarData.csv');
|
|
|
|
$model = $this->subject->findByUid(1);
|
|
|
|
self::assertInstanceOf(Tea::class, $model);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function findByUidForExistingRecordMapsAllScalarData(): void
|
|
{
|
|
$this->importCSVDataSet(__DIR__ . '/Fixtures/TeaWithAllScalarData.csv');
|
|
|
|
$model = $this->subject->findByUid(1);
|
|
self::assertInstanceOf(Tea::class, $model);
|
|
|
|
self::assertSame('Earl Grey', $model->getTitle());
|
|
self::assertSame('Fresh and hot.', $model->getDescription());
|
|
self::assertSame(2, $model->getOwnerUid());
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function fillsImageRelation(): void
|
|
{
|
|
$this->importCSVDataSet(__DIR__ . '/Fixtures/TeaWithImage.csv');
|
|
|
|
$model = $this->subject->findByUid(1);
|
|
self::assertInstanceOf(Tea::class, $model);
|
|
|
|
$image = $model->getImage();
|
|
self::assertInstanceOf(FileReference::class, $image);
|
|
self::assertSame(1, $image->getUid());
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function addAndPersistAllCreatesNewRecord(): void
|
|
{
|
|
$title = 'Godesberger Burgtee';
|
|
$model = new Tea();
|
|
$model->setTitle($title);
|
|
|
|
$this->subject->add($model);
|
|
$this->persistenceManager->persistAll();
|
|
|
|
$this->assertCSVDataSet(__DIR__ . '/Fixtures/PersistedTea.csv');
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function findByOwnerUidFindsTeaWithTheGivenOwnerUid(): void
|
|
{
|
|
$this->importCSVDataSet(__DIR__ . '/Fixtures/TeaWithOwner.csv');
|
|
|
|
$result = $this->subject->findByOwnerUid(1);
|
|
|
|
self::assertCount(1, $result);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function findByOwnerUidFindsTeaWithTheGivenOwnerUidOnPage(): void
|
|
{
|
|
$this->importCSVDataSet(__DIR__ . '/Fixtures/TeaWithOwnerOnPage.csv');
|
|
|
|
$result = $this->subject->findByOwnerUid(1);
|
|
|
|
self::assertCount(1, $result);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function findByOwnerUidFindsIgnoresTeaWithNonMatchingOwnerUid(): void
|
|
{
|
|
$this->importCSVDataSet(__DIR__ . '/Fixtures/TeaWithOwner.csv');
|
|
|
|
$result = $this->subject->findByOwnerUid(2);
|
|
|
|
self::assertCount(0, $result);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function findByOwnerUidFindsIgnoresTeaWithZeroOwnerUid(): void
|
|
{
|
|
$this->importCSVDataSet(__DIR__ . '/Fixtures/TeaWithoutOwner.csv');
|
|
|
|
$result = $this->subject->findByOwnerUid(1);
|
|
|
|
self::assertCount(0, $result);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function findByOwnerUidSortsByTitleInAscendingOrder(): void
|
|
{
|
|
$this->importCSVDataSet(__DIR__ . '/Fixtures/TwoTeasWithOwner.csv');
|
|
|
|
$result = $this->subject->findByOwnerUid(1);
|
|
|
|
$result->rewind();
|
|
self::assertSame('Assam', $result->current()->getTitle());
|
|
}
|
|
}
|