mirror of https://github.com/FriendsOfTYPO3/tea.git synced 2024-09-19 18:36:12 +02:00

[FEATURE] Add missing files for indexAction.

This commit is contained in:
Oliver Klee 2013-11-05 12:41:20 +01:00
parent 3bdff176e7
commit ee93fac2b7
7 changed files with 236 additions and 0 deletions

View file

@ -0,0 +1,77 @@
<?php
namespace OliverKlee\Tea\Controller;
/***************************************************************
* Copyright notice
*
* (c) 2013 Oliver Klee <typo3-coding@oliverklee.de>, oliverklee.de
*
* All rights reserved
*
* This script is part of the TYPO3 project. The TYPO3 project 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.
*
* The GNU General Public License can be found at
* http://www.gnu.org/copyleft/gpl.html.
*
* This script 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.
*
* This copyright notice MUST APPEAR in all copies of the script!
***************************************************************/
use TYPO3\CMS\Extbase\Mvc\Controller\ActionController;
use TYPO3\CMS\Extbase\Mvc\View\ViewInterface;
use OliverKlee\Tea\Domain\Repository\TestimonialRepository;
/**
* This controller takes care of displaying testimonials.
*
* @author Oliver Klee <typo3-coding@oliverklee.de>
*/
class TestimonialController extends ActionController {
/**
* @var \OliverKlee\Tea\Domain\Repository\TestimonialRepository
*/
protected $testimonialRepository = NULL;
/**
* Injects the TestimonialRepository.
*
* @param \OliverKlee\Tea\Domain\Repository\TestimonialRepository $repository
*
* @return void
*/
public function injectTestimonialRepository(TestimonialRepository $repository) {
$this->testimonialRepository = $repository;
}
/**
* Lists all testimonials.
*
* @return void
*/
public function indexAction() {
$this->view->assign('testimonials', $this->testimonialRepository->findAll());
}
/**
* Injects the view.
*
* Note: This function is intended for unit-testing purposes only.
*
* @param \TYPO3\CMS\Extbase\Mvc\View\ViewInterface $view
*
* @return view
*/
public function setView(ViewInterface $view) {
$this->view = $view;
}
}
?>

View file

@ -0,0 +1,18 @@
plugin.tx_tea {
view {
# cat=plugin.tx_tea/file; type=string; label=Path to template root (FE)
templateRootPath = EXT:tea/Resources/Private/Templates/
# cat=plugin.tx_tea/file; type=string; label=Path to template partials (FE)
partialRootPath = EXT:tea/Resources/Private/Partials/
# cat=plugin.tx_tea/file; type=string; label=Path to template layouts (FE)
layoutRootPath = EXT:tea/Resources/Private/Layouts/
}
persistence {
# cat=plugin.tx_tea//a; type=string; label=Default storage PID
storagePid =
# cat=plugin.tx_tea//a; type=int; label=UID of the page/folder where all new records will be created
newRecordStoragePid =
}
settings {
}
}

View file

@ -0,0 +1,13 @@
plugin.tx_tea {
view {
templateRootPath = {$plugin.tx_tea.view.templateRootPath}
partialRootPath = {$plugin.tx_tea.view.partialRootPath}
layoutRootPath = {$plugin.tx_tea.view.layoutRootPath}
}
persistence {
storagePid = {$plugin.tx_tea.persistence.storagePid}
}
features {
rewrittenPropertyMapper = 1
}
}

View file

@ -0,0 +1,3 @@
<div class="tx-tea">
<f:render section="main" />
</div>

View file

@ -0,0 +1,16 @@
<f:layout name="Default"/>
<f:section name="main">
<h2><f:translate key="heading.testimonials"/></h2>
<f:for each="{testimonials}" as="testimonial">
<h3>
<f:format.printf arguments="{cups: testimonial.numberOfConsumedCups}">
<f:translate key="testimonials.cups.and.date"/>
</f:format.printf>
<f:format.date format="{f:translate(key: 'date-and-time-format')}">{testimonial.dateOfPosting}</f:format.date>
</h3>
<f:format.html>
{testimonial.text}
</f:format.html>
</f:for>
</f:section>

View file

@ -0,0 +1,91 @@
<?php
namespace OliverKlee\Tea\Tests;
/***************************************************************
* Copyright notice
*
* (c) 2013 Oliver Klee <typo3-coding@oliverklee.de>, oliverklee.de
*
* All rights reserved
*
* This script is part of the TYPO3 project. The TYPO3 project 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.
*
* The GNU General Public License can be found at
* http://www.gnu.org/copyleft/gpl.html.
*
* This script 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.
*
* This copyright notice MUST APPEAR in all copies of the script!
***************************************************************/
use TYPO3\CMS\Extbase\Mvc\View\ViewInterface;
use TYPO3\CMS\Extbase\Persistence\ObjectStorage;
use OliverKlee\Tea\Controller\TestimonialController;
use OliverKlee\Tea\Domain\Repository\TestimonialRepository;
/**
* Test case.
*
* @author Oliver Klee <typo3-coding@oliverklee.de>
*/
class TestimonialControllerTest extends \TYPO3\CMS\Extbase\Tests\Unit\BaseTestCase {
/**
* @var TestimonialController
*/
protected $fixture;
/**
* @var ViewInterface
*/
protected $view = NULL;
/**
* @var TestimonialRepository
*/
protected $testimonialRepository = NULL;
public function setUp() {
$this->fixture = new TestimonialController();
$this->view = $this->getMock('TYPO3\\CMS\\Extbase\\Mvc\\View\\ViewInterface');
$this->fixture->setView($this->view);
$this->testimonialRepository = $this->getMock(
'OliverKlee\\Tea\\Domain\\Repository\\TestimonialRepository', array(), array(), '', FALSE
);
$this->fixture->injectTestimonialRepository($this->testimonialRepository);
}
public function tearDown() {
unset($this->fixture, $this->view, $this->testimonialRepository);
}
/**
* @test
*/
public function indexActionCanBeCalled() {
$this->fixture->indexAction();
}
/**
* @test
*/
public function indexActionPassesAllTestimonialsAsTestimonialsToView() {
$allTestimonials = new ObjectStorage();
$this->testimonialRepository->expects($this->any())->method('findAll')
->will($this->returnValue($allTestimonials));
$this->view->expects($this->once())->method('assign')->with('testimonials', $allTestimonials);
$this->fixture->indexAction();
}
}
?>

18
ext_localconf.php Normal file
View file

@ -0,0 +1,18 @@
<?php
if (!defined('TYPO3_MODE')) {
die('Access denied.');
}
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin(
'OliverKlee.' . $_EXTKEY,
'Tea',
// all actions
array(
'Testimonial' => 'index',
),
// non-cacheable actions
array(
'Testimonial' => 'index',
)
);
?>