‪TYPO3CMS  9.5
BackendGroupsVisibleFieldsTest.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 ‪BackendGroupsVisibleFieldsTest extends FunctionalTestCase
23 {
24  protected static ‪$backendGroupsFields = [
25  'hidden',
26  'title',
27  'description',
28  'subgroup',
29  'groupMods',
30  'tables_select',
31  'tables_modify',
32  'pagetypes_select',
33  'non_exclude_fields',
34  'explicit_allowdeny',
35  'allowed_languages',
36  'workspace_perms',
37  'db_mountpoints',
38  'file_mountpoints',
39  'file_permissions',
40  'category_perms',
41  'lockToDomain',
42  'TSconfig',
43  ];
44 
49  {
50  $this->setUpBackendUserFromFixture(1);
51  ‪$GLOBALS['LANG'] = GeneralUtility::makeInstance(LanguageService::class);
52 
53  $formEngineTestService = GeneralUtility::makeInstance(FormTestService::class);
54  $formResult = $formEngineTestService->createNewRecordForm('be_groups');
55 
56  foreach (static::$backendGroupsFields as $expectedField) {
57  $this->assertNotFalse(
58  $formEngineTestService->formHtmlContainsField($expectedField, $formResult['html']),
59  'The field ' . $expectedField . ' is not in the HTML'
60  );
61  }
62  }
63 }
‪TYPO3\CMS\Core\Tests\Functional\Tca
Definition: BackendGroupsVisibleFieldsTest.php:2
‪TYPO3\CMS\Core\Tests\Functional\Tca\BackendGroupsVisibleFieldsTest\$backendGroupsFields
‪static $backendGroupsFields
Definition: BackendGroupsVisibleFieldsTest.php:24
‪TYPO3\CMS\Core\Tests\Functional\Tca\BackendGroupsVisibleFieldsTest
Definition: BackendGroupsVisibleFieldsTest.php:23
‪TYPO3\CMS\Core\Tests\Functional\Tca\BackendGroupsVisibleFieldsTest\backendGroupsFormContainsExpectedFields
‪backendGroupsFormContainsExpectedFields()
Definition: BackendGroupsVisibleFieldsTest.php:48
‪$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