2020-09-23 08:42:34 +02:00
|
|
|
<?php
|
|
|
|
|
2021-01-23 15:52:16 +01:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2021-01-25 16:02:17 +01:00
|
|
|
namespace SkillDisplay\SkilldisplayContent\Tests\Unit\ViewHelpers\Verification;
|
2020-09-23 08:42:34 +02: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.
|
|
|
|
*/
|
|
|
|
|
2020-11-27 23:10:46 +01:00
|
|
|
use Prophecy\PhpUnit\ProphecyTrait;
|
|
|
|
use Prophecy\Prophecy\ObjectProphecy;
|
2020-09-23 08:42:34 +02:00
|
|
|
use SkillDisplay\PHPToolKit\Verification\Link;
|
2021-01-25 16:02:17 +01:00
|
|
|
use SkillDisplay\SkilldisplayContent\ViewHelpers\Verification\ButtonViewHelper;
|
2020-09-23 08:42:34 +02:00
|
|
|
use TYPO3Fluid\Fluid\Core\Rendering\RenderingContextInterface;
|
|
|
|
use TYPO3\CMS\Core\Utility\GeneralUtility;
|
2020-10-05 08:28:14 +02:00
|
|
|
use TYPO3\TestingFramework\Core\Unit\UnitTestCase as TestCase;
|
2020-09-23 08:42:34 +02:00
|
|
|
|
|
|
|
/**
|
2021-01-25 16:02:17 +01:00
|
|
|
* @covers SkillDisplay\SkilldisplayContent\ViewHelpers\Verification\ButtonViewHelper
|
|
|
|
* @covers SkillDisplay\SkilldisplayContent\ViewHelpers\VerificationViewHelper
|
2020-09-23 08:42:34 +02:00
|
|
|
*/
|
|
|
|
class ButtonViewHelperTest extends TestCase
|
|
|
|
{
|
2020-11-27 23:10:46 +01:00
|
|
|
use ProphecyTrait;
|
|
|
|
|
2020-09-23 08:42:34 +02:00
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function throwsExceptionIfSkillAndSkillSetIsProvided(): void
|
|
|
|
{
|
|
|
|
$renderingContext = $this->prophesize(RenderingContextInterface::class);
|
|
|
|
|
|
|
|
$this->expectExceptionMessage('Can only handle skill or skillSet not both.');
|
|
|
|
$this->expectExceptionCode(1600775604);
|
|
|
|
|
|
|
|
ButtonViewHelper::renderStatic(
|
|
|
|
[
|
|
|
|
'skill' => 10,
|
|
|
|
'skillSet' => 10,
|
2020-11-27 23:10:46 +01:00
|
|
|
'campaign' => 0,
|
2020-09-23 08:42:34 +02:00
|
|
|
],
|
|
|
|
function () {
|
|
|
|
},
|
|
|
|
$renderingContext->reveal()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function throwsExceptionIfNeitherSkillNorSkillSetIsProvided(): void
|
|
|
|
{
|
|
|
|
$renderingContext = $this->prophesize(RenderingContextInterface::class);
|
|
|
|
|
|
|
|
$this->expectExceptionMessage('Either needs skill or skillSet, none given.');
|
|
|
|
$this->expectExceptionCode(1600775604);
|
|
|
|
|
|
|
|
ButtonViewHelper::renderStatic(
|
|
|
|
[
|
|
|
|
],
|
|
|
|
function () {
|
|
|
|
},
|
|
|
|
$renderingContext->reveal()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function returnsRenderedButtonForSkill(): void
|
|
|
|
{
|
|
|
|
$renderingContext = $this->prophesize(RenderingContextInterface::class);
|
2020-11-27 23:10:46 +01:00
|
|
|
/** @var Link|ObjectProphecy $link */
|
2020-09-23 08:42:34 +02:00
|
|
|
$link = $this->prophesize(Link::class);
|
2020-11-27 23:10:46 +01:00
|
|
|
$link->getVerificationButton('self', 10, Link::SKILL, 0)->willReturn('<p>expected HTML</p>');
|
2020-09-23 08:42:34 +02:00
|
|
|
GeneralUtility::addInstance(Link::class, $link->reveal());
|
|
|
|
|
|
|
|
$result = ButtonViewHelper::renderStatic(
|
|
|
|
[
|
|
|
|
'skill' => 10,
|
|
|
|
'type' => 'self',
|
2020-11-27 23:10:46 +01:00
|
|
|
'campaign' => 0,
|
2020-09-23 08:42:34 +02:00
|
|
|
],
|
|
|
|
function () {
|
|
|
|
},
|
|
|
|
$renderingContext->reveal()
|
|
|
|
);
|
|
|
|
static::assertSame('<p>expected HTML</p>', $result);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function returnsRenderedButtonForSkillSet(): void
|
|
|
|
{
|
|
|
|
$renderingContext = $this->prophesize(RenderingContextInterface::class);
|
2020-11-27 23:10:46 +01:00
|
|
|
/** @var Link|ObjectProphecy $link */
|
2020-09-23 08:42:34 +02:00
|
|
|
$link = $this->prophesize(Link::class);
|
2020-11-27 23:10:46 +01:00
|
|
|
$link->getVerificationButton('self', 10, Link::SKILL_SET, 0)->willReturn('<p>expected HTML</p>');
|
2020-09-23 08:42:34 +02:00
|
|
|
GeneralUtility::addInstance(Link::class, $link->reveal());
|
|
|
|
|
|
|
|
$result = ButtonViewHelper::renderStatic(
|
|
|
|
[
|
|
|
|
'skillSet' => 10,
|
|
|
|
'type' => 'self',
|
2020-11-27 23:10:46 +01:00
|
|
|
'campaign' => 0,
|
2020-09-23 08:42:34 +02:00
|
|
|
],
|
|
|
|
function () {
|
|
|
|
},
|
|
|
|
$renderingContext->reveal()
|
|
|
|
);
|
|
|
|
static::assertSame('<p>expected HTML</p>', $result);
|
|
|
|
}
|
|
|
|
}
|