‪TYPO3CMS  ‪main
FormSelectTreeAjaxControllerTest.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
5 /*
6  * This file is part of the TYPO3 CMS project.
7  *
8  * It is free software; you can redistribute it and/or modify it under
9  * the terms of the GNU General Public License, either version 2
10  * of the License, or any later version.
11  *
12  * For the full copyright and license information, please read the
13  * LICENSE.txt file that was distributed with this source code.
14  *
15  * The TYPO3 project - inspiring people to share!
16  */
17 
19 
20 use PHPUnit\Framework\Attributes\Test;
26 use TYPO3\TestingFramework\Core\Unit\UnitTestCase;
27 
28 final class ‪FormSelectTreeAjaxControllerTest extends UnitTestCase
29 {
30  #[Test]
32  {
33  $this->expectException(\RuntimeException::class);
34  $this->expectExceptionCode(1479386729);
36  }
37 
38  #[Test]
40  {
41  $serverRequest = (new ‪ServerRequest())->withQueryParams([
42  'tableName' => 'aTable',
43  'fieldName' => 'aField',
44  ]);
45  ‪$GLOBALS['TCA']['aTable']['columns'] = [];
46  $this->expectException(\RuntimeException::class);
47  $this->expectExceptionCode(1479386990);
48  (new ‪FormSelectTreeAjaxController(new ‪FormDataCompiler(), new ‪FlexFormTools(new ‪NoopEventDispatcher())))->fetchDataAction($serverRequest);
49  }
50 }
‪TYPO3\CMS\Backend\Controller\FormSelectTreeAjaxController
Definition: FormSelectTreeAjaxController.php:36
‪TYPO3\CMS\Backend\Tests\Unit\Controller\FormSelectTreeAjaxControllerTest\fetchDataActionThrowsExceptionIfTcaOfTableDoesNotExist
‪fetchDataActionThrowsExceptionIfTcaOfTableDoesNotExist()
Definition: FormSelectTreeAjaxControllerTest.php:31
‪TYPO3\CMS\Backend\Tests\Unit\Controller\FormSelectTreeAjaxControllerTest
Definition: FormSelectTreeAjaxControllerTest.php:29
‪TYPO3\CMS\Core\Configuration\FlexForm\FlexFormTools
Definition: FlexFormTools.php:40
‪TYPO3\CMS\Core\Http\ServerRequest
Definition: ServerRequest.php:39
‪TYPO3\CMS\Backend\Tests\Unit\Controller
‪TYPO3\CMS\Core\EventDispatcher\NoopEventDispatcher
Definition: NoopEventDispatcher.php:29
‪$GLOBALS
‪$GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['adminpanel']['modules']
Definition: ext_localconf.php:25
‪TYPO3\CMS\Backend\Form\FormDataCompiler
Definition: FormDataCompiler.php:26
‪TYPO3\CMS\Backend\Tests\Unit\Controller\FormSelectTreeAjaxControllerTest\fetchDataActionThrowsExceptionIfTcaOfTableFieldDoesNotExist
‪fetchDataActionThrowsExceptionIfTcaOfTableFieldDoesNotExist()
Definition: FormSelectTreeAjaxControllerTest.php:39