2013-11-05 12:41:20 +01:00
|
|
|
<?php
|
2015-06-14 13:07:29 +02:00
|
|
|
namespace OliverKlee\Tea\Tests\Unit\Controller;
|
2013-11-05 12:41:20 +01:00
|
|
|
|
2014-12-10 21:18:45 +01:00
|
|
|
/*
|
|
|
|
* This file is part of the TYPO3 CMS project.
|
2013-11-05 12:41:20 +01:00
|
|
|
*
|
2014-12-10 21:18:45 +01:00
|
|
|
* It is free software; you can redistribute it and/or modify it under
|
|
|
|
* the terms of the GNU General Public License, either version 2
|
|
|
|
* of the License, or any later version.
|
2013-11-05 12:41:20 +01:00
|
|
|
*
|
2014-12-10 21:18:45 +01:00
|
|
|
* For the full copyright and license information, please read the
|
|
|
|
* LICENSE.txt file that was distributed with this source code.
|
2013-11-05 12:41:20 +01:00
|
|
|
*
|
2014-12-10 21:18:45 +01:00
|
|
|
* The TYPO3 project - inspiring people to share!
|
|
|
|
*/
|
2013-11-05 12:41:20 +01:00
|
|
|
|
|
|
|
use OliverKlee\Tea\Controller\TestimonialController;
|
|
|
|
use OliverKlee\Tea\Domain\Repository\TestimonialRepository;
|
2016-05-07 21:43:25 +02:00
|
|
|
use TYPO3\CMS\Extbase\Mvc\View\ViewInterface;
|
|
|
|
use TYPO3\CMS\Extbase\Persistence\ObjectStorage;
|
2013-11-05 12:41:20 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Test case.
|
|
|
|
*
|
|
|
|
* @author Oliver Klee <typo3-coding@oliverklee.de>
|
|
|
|
*/
|
2016-05-07 21:43:25 +02:00
|
|
|
class TestimonialControllerTest extends \TYPO3\CMS\Core\Tests\UnitTestCase
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @var TestimonialController
|
|
|
|
*/
|
|
|
|
protected $subject = null;
|
2013-11-05 12:41:20 +01:00
|
|
|
|
2016-05-07 21:43:25 +02:00
|
|
|
/**
|
|
|
|
* @var ViewInterface|\PHPUnit_Framework_MockObject_MockObject
|
|
|
|
*/
|
|
|
|
protected $view = null;
|
2013-11-05 12:41:20 +01:00
|
|
|
|
2016-05-07 21:43:25 +02:00
|
|
|
/**
|
|
|
|
* @var TestimonialRepository|\PHPUnit_Framework_MockObject_MockObject
|
|
|
|
*/
|
|
|
|
protected $testimonialRepository = null;
|
2013-11-05 12:41:20 +01:00
|
|
|
|
2016-05-07 21:43:25 +02:00
|
|
|
protected function setUp()
|
|
|
|
{
|
|
|
|
$this->subject = new TestimonialController();
|
2013-11-05 12:41:20 +01:00
|
|
|
|
2016-05-07 21:43:25 +02:00
|
|
|
$this->view = $this->getMock(ViewInterface::class);
|
|
|
|
$this->inject($this->subject, 'view', $this->view);
|
2013-11-05 12:41:20 +01:00
|
|
|
|
2016-05-07 21:43:25 +02:00
|
|
|
$this->testimonialRepository = $this->getMock(TestimonialRepository::class, array(), array(), '', false);
|
|
|
|
$this->inject($this->subject, 'testimonialRepository', $this->testimonialRepository);
|
|
|
|
}
|
2013-11-05 12:41:20 +01:00
|
|
|
|
2016-05-07 21:43:25 +02:00
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function indexActionCanBeCalled()
|
|
|
|
{
|
|
|
|
$this->subject->indexAction();
|
|
|
|
}
|
2013-11-05 12:41:20 +01:00
|
|
|
|
2016-05-07 21:43:25 +02:00
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function indexActionPassesAllTestimonialsAsTestimonialsToView()
|
|
|
|
{
|
|
|
|
$allTestimonials = new ObjectStorage();
|
|
|
|
$this->testimonialRepository->expects(self::any())->method('findAll')
|
|
|
|
->will(self::returnValue($allTestimonials));
|
2013-11-05 12:41:20 +01:00
|
|
|
|
2016-05-07 21:43:25 +02:00
|
|
|
$this->view->expects(self::once())->method('assign')->with('testimonials', $allTestimonials);
|
2013-11-05 12:41:20 +01:00
|
|
|
|
2016-05-07 21:43:25 +02:00
|
|
|
$this->subject->indexAction();
|
|
|
|
}
|
2014-01-02 00:04:01 +01:00
|
|
|
}
|