* * 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. */ namespace Wrm\Events\Tests\Functional\Frontend; use TYPO3\TestingFramework\Core\Functional\Framework\Frontend\InternalRequest; use TYPO3\TestingFramework\Core\Functional\FunctionalTestCase; use Wrm\Events\Frontend\Daest; /** * @covers \Wrm\Events\Frontend\Daest */ class DatesTest extends FunctionalTestCase { protected $testExtensionsToLoad = [ 'typo3conf/ext/events', ]; protected $coreExtensionsToLoad = [ 'fluid_styled_content', ]; protected $pathsToProvideInTestInstance = [ 'typo3conf/ext/events/Tests/Functional/Frontend/Fixtures/Sites/' => 'typo3conf/sites', ]; protected function setUp(): void { parent::setUp(); $this->importCSVDataSet(__DIR__ . '/Fixtures/Database/SiteStructure.csv'); $this->setUpFrontendRootPage(1, [ 'constants' => [ 'EXT:events/Configuration/TypoScript/constants.typoscript', ], 'setup' => [ 'EXT:fluid_styled_content/Configuration/TypoScript/setup.typoscript', 'EXT:events/Configuration/TypoScript/setup.typoscript', 'EXT:events/Tests/Functional/Frontend/Fixtures/TypoScript/Rendering.typoscript' ], ]); } /** * Covers issue https://redmine.werkraum-media.de/issues/10075. * Editors can disable events. Dates will still be available. * Dates don't make any sense without an event, as they not even have a name. * * They therefore should not be fetched from persistence. * * @test */ public function returnsOnlyDatesWithAvailableEventByDemand(): void { $this->importCSVDataSet(__DIR__ . '/DatesTestFixtures/ReturnsOnlyDatesWithAvailableEventByDemand.csv'); $request = new InternalRequest(); $request = $request->withPageId(1); $response = $this->executeFrontendRequest($request); self::assertSame(200, $response->getStatusCode()); $html = (string) $response->getBody(); self::assertStringNotContainsString('Event 1 hidden', $html); self::assertStringContainsString('Event 2 visible', $html); } }