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