TYPO3ContentElements/Tests/Unit/TcaEnhancerTest.php
Daniel Siepmann 01d25e4c49
Allow creation of content elements
Content elements could not be created, since they needed campaigns.
In order to retrieve campaigns, the API needs to be created.
The API needs settings from current site, which is not available in that
context.

Therefore the factory is extended to also fetch site and their settings
based on page uid. The page uid is available in the context.

Since we now interact with guzzle, we add the dependency.
Wouldn't be necessary if SDK would have PSR compatible type hints.

Also tests were added for code, to keep code coverage.

Fixes: #5
2021-01-23 15:53:07 +01:00

118 lines
3.5 KiB
PHP

<?php
namespace SkillDisplay\Typo3Extension\Tests\Unit;
/*
* Copyright (C) 2021 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 PHPUnit\Framework\TestCase;
use Prophecy\PhpUnit\ProphecyTrait;
use SkillDisplay\PHPToolKit\Api\Campaigns;
use SkillDisplay\PHPToolKit\Entity\Campaign;
use SkillDisplay\Typo3Extension\CampaignsFactory;
use SkillDisplay\Typo3Extension\TcaEnhancer;
/**
* @covers SkillDisplay\Typo3Extension\TcaEnhancer
*/
class TcaEnhancerTest extends TestCase
{
use ProphecyTrait;
/**
* @test
*/
public function instanceCanBeCreated(): void
{
$campaignsFactory = $this->prophesize(CampaignsFactory::class);
$subject = new TcaEnhancer(
$campaignsFactory->reveal()
);
self::assertInstanceOf(TcaEnhancer::class, $subject);
}
/**
* @test
*/
public function addsDefaultItemOnlyWhenNoCampaignsAreAvailable(): void
{
$parameters = [
'row' => [
'pid' => 10,
],
];
$campaigns = $this->prophesize(Campaigns::class);
$campaigns->getForUser()->willReturn([]);
$campaignsFactory = $this->prophesize(CampaignsFactory::class);
$campaignsFactory->createFromPageUid(10)->willReturn($campaigns->reveal());
$subject = new TcaEnhancer(
$campaignsFactory->reveal()
);
$subject->getCampaignsForTCA($parameters);
self::assertArrayHasKey('items', $parameters);
self::assertSame([
['', 0],
], $parameters['items']);
}
/**
* @test
*/
public function addsFetchedCampaignsBesideDefault(): void
{
$parameters = [
'row' => [
'pid' => 10,
],
];
$campaign1 = $this->prophesize(Campaign::class);
$campaign1->getTitle()->willReturn('Campaign Title 1');
$campaign1->getId()->willReturn(10);
$campaign2 = $this->prophesize(Campaign::class);
$campaign2->getTitle()->willReturn('Campaign Title 2');
$campaign2->getId()->willReturn(20);
$campaigns = $this->prophesize(Campaigns::class);
$campaigns->getForUser()->willReturn([
$campaign1->reveal(),
$campaign2->reveal(),
]);
$campaignsFactory = $this->prophesize(CampaignsFactory::class);
$campaignsFactory->createFromPageUid(10)->willReturn($campaigns->reveal());
$subject = new TcaEnhancer(
$campaignsFactory->reveal()
);
$subject->getCampaignsForTCA($parameters);
self::assertArrayHasKey('items', $parameters);
self::assertSame([
['', 0],
['Campaign Title 1', 10],
['Campaign Title 2', 20],
], $parameters['items']);
}
}