TYPO3  7.6
PageLayoutControllerTest.php
Go to the documentation of this file.
1 <?php
2 namespace TYPO3\CMS\Backend\Tests\Unit\Controller;
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 
19 use TYPO3\CMS\Core\Tests\UnitTestCase;
21 
25 class PageLayoutControllerTest extends UnitTestCase
26 {
27 
36  public function pageIsNotLockedForEditorsReturnsCorrectValue($isAdmin, $permissions, $editLock, $expected)
37  {
39  $beUserMock = $this->getMock(BackendUserAuthentication::class, ['isAdmin']);
40  $beUserMock->method('isAdmin')->will($this->returnValue($isAdmin));
41 
43  $pageController = $this->getMock(PageLayoutController::class, ['getBackendUser']);
44  $pageController->method('getBackendUser')->will($this->returnValue($beUserMock));
45 
46  $pageController->CALC_PERMS = $permissions;
47  $pageController->pageinfo = ['editlock' => $editLock];
48 
49  $this->assertTrue($pageController->pageIsNotLockedForEditors() === $expected);
50  }
51 
56  {
57  return [
58  'user is admin' => [ true, 0, false, true],
59  'user has permission' => [ false, Permission::PAGE_EDIT, false, true],
60  'page has permission, but editlock set' => [ false, Permission::PAGE_EDIT, true, false],
61  'user does not have permission' => [ false, 0, false, false],
62  ];
63  }
64 
65 }