‪TYPO3CMS  9.5
CategoryVisibleFieldsTest.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 ‪CategoryVisibleFieldsTest extends FunctionalTestCase
23 {
24  protected static ‪$categoryFields = [
25  'title',
26  'sys_language_uid',
27  'hidden',
28  'parent',
29  'description',
30  'items',
31  'starttime',
32  'endtime',
33  ];
34 
39  {
40  $this->setUpBackendUserFromFixture(1);
41  ‪$GLOBALS['LANG'] = GeneralUtility::makeInstance(LanguageService::class);
42 
43  $formEngineTestService = GeneralUtility::makeInstance(FormTestService::class);
44  $formResult = $formEngineTestService->createNewRecordForm('sys_category');
45 
46  foreach (static::$categoryFields as $expectedField) {
47  $this->assertNotFalse(
48  $formEngineTestService->formHtmlContainsField($expectedField, $formResult['html']),
49  'The field ' . $expectedField . ' is not in the form HTML'
50  );
51  }
52  }
53 }
‪TYPO3\CMS\Core\Tests\Functional\Tca\CategoryVisibleFieldsTest
Definition: CategoryVisibleFieldsTest.php:23
‪TYPO3\CMS\Core\Tests\Functional\Tca
Definition: BackendGroupsVisibleFieldsTest.php:2
‪TYPO3\CMS\Core\Tests\Functional\Tca\CategoryVisibleFieldsTest\categoryFormContainsExpectedFields
‪categoryFormContainsExpectedFields()
Definition: CategoryVisibleFieldsTest.php:38
‪$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\Tests\Functional\Tca\CategoryVisibleFieldsTest\$categoryFields
‪static $categoryFields
Definition: CategoryVisibleFieldsTest.php:24
‪TYPO3\CMS\Core\Utility\GeneralUtility
Definition: GeneralUtility.php:45