‪TYPO3CMS  9.5
ModuleDataStorageServiceTest.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 
17 use TYPO3\TestingFramework\Core\Unit\UnitTestCase;
18 
22 class ‪ModuleDataStorageServiceTest extends UnitTestCase
23 {
28  {
29  // Simulate empty module data
30  ‪$GLOBALS['BE_USER'] = $this->createMock(\‪TYPO3\CMS\Core\Authentication\BackendUserAuthentication::class);
31  ‪$GLOBALS['BE_USER']->uc = [];
32  ‪$GLOBALS['BE_USER']->uc['moduleData'] = [];
33 
35  $subject = $this->getAccessibleMock(\‪TYPO3\CMS\Beuser\Service\ModuleDataStorageService::class, ['dummy'], [], '', false);
36  $objectManagerMock = $this->createMock(\‪TYPO3\CMS\‪Extbase\Object\ObjectManager::class);
37  $moduleDataMock = $this->createMock(\‪TYPO3\CMS\Beuser\Domain\Model\ModuleData::class);
38  $objectManagerMock
39  ->expects($this->once())
40  ->method('get')
41  ->with(\‪TYPO3\CMS\Beuser\Domain\Model\ModuleData::class)
42  ->will($this->returnValue($moduleDataMock));
43  $subject->_set('objectManager', $objectManagerMock);
44 
45  $this->assertSame($moduleDataMock, $subject->loadModuleData());
46  }
47 }
‪TYPO3\CMS\Beuser\Tests\Unit\Service\ModuleDataStorageServiceTest
Definition: ModuleDataStorageServiceTest.php:23
‪TYPO3\CMS\Extbase\Annotation
Definition: IgnoreValidation.php:4
‪TYPO3
‪TYPO3\CMS\Beuser\Tests\Unit\Service\ModuleDataStorageServiceTest\loadModuleDataReturnsModuleDataObjectForEmptyModuleData
‪loadModuleDataReturnsModuleDataObjectForEmptyModuleData()
Definition: ModuleDataStorageServiceTest.php:27
‪$GLOBALS
‪$GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['adminpanel']['modules']
Definition: ext_localconf.php:5
‪TYPO3\CMS\Beuser\Tests\Unit\Service
Definition: ModuleDataStorageServiceTest.php:2