‪TYPO3CMS  9.5
DomainVisibleFieldsTest.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 
21 class ‪DomainVisibleFieldsTest extends \TYPO3\TestingFramework\Core\Functional\FunctionalTestCase
22 {
23  protected static ‪$domainFields = [
24  'hidden',
25  'domainName'
26  ];
27 
32  {
33  $this->setUpBackendUserFromFixture(1);
34  ‪$GLOBALS['LANG'] = GeneralUtility::makeInstance(LanguageService::class);
35 
36  $formEngineTestService = GeneralUtility::makeInstance(FormTestService::class);
37  $formResult = $formEngineTestService->createNewRecordForm('sys_domain');
38 
39  foreach (static::$domainFields as $expectedField) {
40  $this->assertNotFalse(
41  $formEngineTestService->formHtmlContainsField($expectedField, $formResult['html']),
42  'The field ' . $expectedField . ' is not in the form HTML'
43  );
44  }
45  }
46 }
‪TYPO3\CMS\Frontend\Tests\Functional\Tca\DomainVisibleFieldsTest\$domainFields
‪static $domainFields
Definition: DomainVisibleFieldsTest.php:23
‪TYPO3\CMS\Frontend\Tests\Functional\Tca
Definition: BackendLayoutVisibleFieldsTest.php:2
‪$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\Frontend\Tests\Functional\Tca\DomainVisibleFieldsTest\domainFormContainsExpectedFields
‪domainFormContainsExpectedFields()
Definition: DomainVisibleFieldsTest.php:31
‪TYPO3\CMS\Frontend\Tests\Functional\Tca\DomainVisibleFieldsTest
Definition: DomainVisibleFieldsTest.php:22