‪TYPO3CMS  9.5
LanguageVisibleFieldsTest.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 ‪LanguageVisibleFieldsTest extends FunctionalTestCase
23 {
24  protected static ‪$languageFields = [
25  'title',
26  'language_isocode',
27  'flag',
28  'hidden',
29  ];
30 
35  {
36  $this->setUpBackendUserFromFixture(1);
37  ‪$GLOBALS['LANG'] = GeneralUtility::makeInstance(LanguageService::class);
38 
39  $formEngineTestService = GeneralUtility::makeInstance(FormTestService::class);
40  $formResult = $formEngineTestService->createNewRecordForm('sys_language', ['base' => 1]);
41 
42  foreach (static::$languageFields as $expectedField) {
43  $this->assertNotFalse(
44  $formEngineTestService->formHtmlContainsField($expectedField, $formResult['html']),
45  'The field ' . $expectedField . ' is not in the form HTML'
46  );
47  }
48  }
49 }
‪TYPO3\CMS\Core\Tests\Functional\Tca\LanguageVisibleFieldsTest\$languageFields
‪static $languageFields
Definition: LanguageVisibleFieldsTest.php:24
‪TYPO3\CMS\Core\Tests\Functional\Tca
Definition: BackendGroupsVisibleFieldsTest.php:2
‪TYPO3\CMS\Core\Tests\Functional\Tca\LanguageVisibleFieldsTest
Definition: LanguageVisibleFieldsTest.php:23
‪TYPO3\CMS\Core\Tests\Functional\Tca\LanguageVisibleFieldsTest\languageFormContainsExpectedFields
‪languageFormContainsExpectedFields()
Definition: LanguageVisibleFieldsTest.php:34
‪$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