TYPO3 CMS  TYPO3_7-6
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 
21 {
25  protected $subject;
26 
30  protected function setUp()
31  {
32  $this->subject = $this->getMock(\TYPO3\CMS\Core\Database\RelationHandler::class, ['purgeVersionedIds', 'purgeLiveVersionedIds']);
33  }
34 
38  protected function tearDown()
39  {
40  unset($this->subject);
41  }
42 
47  {
48  $GLOBALS['TCA']['sys_category']['ctrl']['versioningWS'] = false;
49 
50  $this->subject->tableArray = [
51  'sys_category' => [1, 2, 3],
52  ];
53 
54  $this->assertFalse($this->subject->purgeItemArray(0));
55  }
56 
61  {
62  $GLOBALS['TCA']['sys_category']['ctrl']['versioningWS'] = true;
63 
64  $this->subject->tableArray = [
65  'sys_category' => [1, 2, 3],
66  ];
67 
68  $this->subject->expects($this->once())
69  ->method('purgeVersionedIds')
70  ->with('sys_category', [1, 2, 3])
71  ->will($this->returnValue([2]));
72 
73  $this->assertTrue($this->subject->purgeItemArray(0));
74  }
75 }
if(TYPO3_MODE==='BE') $GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['t3lib/class.t3lib_tsfebeuserauth.php']['frontendEditingController']['default']