TYPO3 CMS  TYPO3_8-7
LockFactoryTest.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 
23 
27 class LockFactoryTest extends \TYPO3\TestingFramework\Core\Unit\UnitTestCase
28 {
32  protected $mockFactory;
33 
37  protected function setUp()
38  {
39  $this->mockFactory = $this->getAccessibleMock(LockFactory::class, ['dummy']);
40  }
41 
46  {
47  $this->mockFactory->addLockingStrategy(DummyLock::class);
48  $this->assertArrayHasKey(DummyLock::class, $this->mockFactory->_get('lockingStrategy'));
49  }
50 
55  {
56  $this->expectException(\InvalidArgumentException::class);
57  $this->expectExceptionCode(1425990198);
58 
59  $this->mockFactory->addLockingStrategy(\stdClass::class);
60  }
61 
66  {
67  $this->mockFactory->_set('lockingStrategy', [FileLockStrategy::class => true, DummyLock::class => true]);
69  $this->assertInstanceOf(FileLockStrategy::class, $locker);
70  }
71 
76  {
77  $this->mockFactory->_set('lockingStrategy', [SemaphoreLockStrategy::class => true, DummyLock::class => true]);
78  $locker = $this->mockFactory->createLocker('id');
79  $this->assertInstanceOf(DummyLock::class, $locker);
80  }
81 
86  {
87  $this->expectException(LockCreateException::class);
88  $this->expectExceptionCode(1425990190);
89 
90  $this->mockFactory->createLocker('id', 32);
91  }
92 }