‪TYPO3CMS  9.5
CollectionVisibleFieldsTest.php
Go to the documentation of this file.
1 <?php
3 
4 /*
5  * This file is part of the TYPO3 CMS project.
6  *
7  * It is free software; you can redistribute it and/or modify it under
8  * the terms of the GNU General Public License, either version 2
9  * of the License, or any later version.
10  *
11  * For the full copyright and license information, please read the
12  * LICENSE.txt file that was distributed with this source code.
13  *
14  * The TYPO3 project - inspiring people to share!
15  */
16 
20 use TYPO3\TestingFramework\Core\Functional\FunctionalTestCase;
21 
22 class ‪CollectionVisibleFieldsTest extends FunctionalTestCase
23 {
24  protected static ‪$collectionFields = [
25  'title',
26  'sys_language_uid',
27  'hidden',
28  'type',
29  'description',
30  'table_name',
31  'items',
32  'starttime',
33  'endtime',
34  ];
35 
40  {
41  $this->setUpBackendUserFromFixture(1);
42  ‪$GLOBALS['LANG'] = GeneralUtility::makeInstance(LanguageService::class);
43 
44  $formEngineTestService = GeneralUtility::makeInstance(FormTestService::class);
45  $formResult = $formEngineTestService->createNewRecordForm('sys_collection');
46 
47  foreach (static::$collectionFields as $expectedField) {
48  $this->assertNotFalse(
49  $formEngineTestService->formHtmlContainsField($expectedField, $formResult['html']),
50  'The field ' . $expectedField . ' is not in the form HTML'
51  );
52  }
53  }
54 }
‪TYPO3\CMS\Core\Tests\Functional\Tca
Definition: BackendGroupsVisibleFieldsTest.php:2
‪TYPO3\CMS\Core\Tests\Functional\Tca\CollectionVisibleFieldsTest\$collectionFields
‪static $collectionFields
Definition: CollectionVisibleFieldsTest.php:24
‪TYPO3\CMS\Core\Tests\Functional\Tca\CollectionVisibleFieldsTest
Definition: CollectionVisibleFieldsTest.php:23
‪$GLOBALS
‪$GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['adminpanel']['modules']
Definition: ext_localconf.php:5
‪TYPO3\CMS\Backend\Tests\Functional\Form\FormTestService
Definition: FormTestService.php:26
‪TYPO3\CMS\Core\Localization\LanguageService
Definition: LanguageService.php:29
‪TYPO3\CMS\Core\Utility\GeneralUtility
Definition: GeneralUtility.php:45
‪TYPO3\CMS\Core\Tests\Functional\Tca\CollectionVisibleFieldsTest\collectionFormContainsExpectedFields
‪collectionFormContainsExpectedFields()
Definition: CollectionVisibleFieldsTest.php:39