mirror of
https://github.com/DanielSiepmann/legacy-collections.git
synced 2024-11-21 22:36:12 +01:00
57 lines
1.7 KiB
PHP
57 lines
1.7 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/*
|
|
* This file is part of the TYPO3 Extension "legacy_collections".
|
|
*
|
|
* 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.
|
|
*
|
|
* For the full copyright and license information, please read the
|
|
* LICENSE.txt file that was distributed with this source code.
|
|
*
|
|
* The TYPO3 project - inspiring people to share!
|
|
*/
|
|
|
|
namespace FriendsOfTYPO3\LegacyCollections\Tests\Functional\Tca;
|
|
|
|
use TYPO3\CMS\Backend\Tests\Functional\Form\FormTestService;
|
|
use TYPO3\CMS\Core\Localization\LanguageService;
|
|
use TYPO3\CMS\Core\Utility\GeneralUtility;
|
|
use TYPO3\TestingFramework\Core\Functional\FunctionalTestCase;
|
|
|
|
class CollectionVisibleFieldsTest extends FunctionalTestCase
|
|
{
|
|
protected static $collectionFields = [
|
|
'title',
|
|
'sys_language_uid',
|
|
'hidden',
|
|
'type',
|
|
'description',
|
|
'table_name',
|
|
'items',
|
|
'starttime',
|
|
'endtime',
|
|
];
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function collectionFormContainsExpectedFields()
|
|
{
|
|
$this->setUpBackendUserFromFixture(1);
|
|
$GLOBALS['LANG'] = GeneralUtility::makeInstance(LanguageService::class);
|
|
|
|
$formEngineTestService = GeneralUtility::makeInstance(FormTestService::class);
|
|
$formResult = $formEngineTestService->createNewRecordForm('sys_collection');
|
|
|
|
foreach (static::$collectionFields as $expectedField) {
|
|
self::assertNotFalse(
|
|
$formEngineTestService->formHtmlContainsField($expectedField, $formResult['html']),
|
|
'The field ' . $expectedField . ' is not in the form HTML'
|
|
);
|
|
}
|
|
}
|
|
}
|