‪TYPO3CMS  9.5
RelationHandlerTest.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 ‪RelationHandlerTest extends UnitTestCase
23 {
27  protected ‪$subject;
28 
31  protected function ‪setUp()
32  {
33  $this->subject = $this->getMockBuilder(\‪TYPO3\CMS\Core\Database\RelationHandler::class)
34  ->setMethods(['purgeVersionedIds', 'purgeLiveVersionedIds'])
35  ->getMock();
36  }
37 
42  {
43  ‪$GLOBALS['TCA']['sys_category']['ctrl']['versioningWS'] = false;
44 
45  $this->subject->tableArray = [
46  'sys_category' => [1, 2, 3],
47  ];
48 
49  $this->assertFalse($this->subject->purgeItemArray(0));
50  }
51 
56  {
57  ‪$GLOBALS['TCA']['sys_category']['ctrl']['versioningWS'] = true;
58 
59  $this->subject->tableArray = [
60  'sys_category' => [1, 2, 3],
61  ];
62 
63  $this->subject->expects($this->once())
64  ->method('purgeVersionedIds')
65  ->with('sys_category', [1, 2, 3])
66  ->will($this->returnValue([2]));
67 
68  $this->assertTrue($this->subject->purgeItemArray(0));
69  }
70 }
‪TYPO3
‪TYPO3\CMS\Core\Tests\Unit\Database\RelationHandlerTest\purgeItemArrayReturnsFalseIfVersioningForTableIsDisabled
‪purgeItemArrayReturnsFalseIfVersioningForTableIsDisabled()
Definition: RelationHandlerTest.php:40
‪TYPO3\CMS\Core\Tests\Unit\Database
Definition: ConnectionPoolTest.php:3
‪TYPO3\CMS\Core\Tests\Unit\Database\RelationHandlerTest\setUp
‪setUp()
Definition: RelationHandlerTest.php:30
‪TYPO3\CMS\Core\Tests\Unit\Database\RelationHandlerTest
Definition: RelationHandlerTest.php:23
‪$GLOBALS
‪$GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['adminpanel']['modules']
Definition: ext_localconf.php:5
‪TYPO3\CMS\Core\Tests\Unit\Database\RelationHandlerTest\purgeItemArrayReturnsTrueIfItemsHaveBeenPurged
‪purgeItemArrayReturnsTrueIfItemsHaveBeenPurged()
Definition: RelationHandlerTest.php:54
‪TYPO3\CMS\Core\Tests\Unit\Database\RelationHandlerTest\$subject
‪TYPO3 CMS Core Database RelationHandler $subject
Definition: RelationHandlerTest.php:26