2018-07-04 21:37:22 +00:00
< ? php
2018-07-05 18:57:31 +00:00
namespace Friendica\Test\src\Core\Lock ;
2018-07-04 21:37:22 +00:00
2019-01-30 19:26:17 +00:00
use Friendica\Test\MockedTest ;
2018-07-04 21:37:22 +00:00
2019-01-30 19:26:17 +00:00
abstract class LockTest extends MockedTest
2018-07-04 21:37:22 +00:00
{
2019-01-30 19:26:17 +00:00
/**
* @ var int Start time of the mock ( used for time operations )
*/
protected $startTime = 1417011228 ;
2018-07-04 21:37:22 +00:00
/**
2019-08-04 08:26:53 +00:00
* @ var \Friendica\Core\Lock\ILock
2018-07-04 21:37:22 +00:00
*/
protected $instance ;
abstract protected function getInstance ();
protected function setUp ()
{
2019-02-07 19:44:03 +00:00
parent :: setUp ();
2019-08-03 18:48:56 +00:00
2019-02-07 19:44:03 +00:00
$this -> instance = $this -> getInstance ();
$this -> instance -> releaseAll ();
2018-07-04 21:37:22 +00:00
}
2018-09-05 20:16:23 +00:00
protected function tearDown ()
{
$this -> instance -> releaseAll ();
2019-01-30 19:26:17 +00:00
parent :: tearDown ();
2018-09-05 20:16:23 +00:00
}
2018-07-18 19:04:18 +00:00
/**
* @ small
*/
2019-08-03 18:48:56 +00:00
public function testLock ()
{
2018-09-05 20:16:23 +00:00
$this -> assertFalse ( $this -> instance -> isLocked ( 'foo' ));
$this -> assertTrue ( $this -> instance -> acquireLock ( 'foo' , 1 ));
2018-07-04 21:37:22 +00:00
$this -> assertTrue ( $this -> instance -> isLocked ( 'foo' ));
$this -> assertFalse ( $this -> instance -> isLocked ( 'bar' ));
}
2018-07-18 19:04:18 +00:00
/**
* @ small
*/
2019-08-03 18:48:56 +00:00
public function testDoubleLock ()
{
2018-09-05 20:16:23 +00:00
$this -> assertFalse ( $this -> instance -> isLocked ( 'foo' ));
$this -> assertTrue ( $this -> instance -> acquireLock ( 'foo' , 1 ));
2018-07-04 21:37:22 +00:00
$this -> assertTrue ( $this -> instance -> isLocked ( 'foo' ));
// We already locked it
2018-07-05 18:57:31 +00:00
$this -> assertTrue ( $this -> instance -> acquireLock ( 'foo' , 1 ));
2018-07-04 21:37:22 +00:00
}
2018-07-18 19:04:18 +00:00
/**
* @ small
*/
2019-08-03 18:48:56 +00:00
public function testReleaseLock ()
{
2018-09-05 20:16:23 +00:00
$this -> assertFalse ( $this -> instance -> isLocked ( 'foo' ));
$this -> assertTrue ( $this -> instance -> acquireLock ( 'foo' , 1 ));
2018-07-04 21:37:22 +00:00
$this -> assertTrue ( $this -> instance -> isLocked ( 'foo' ));
2018-07-05 18:57:31 +00:00
$this -> instance -> releaseLock ( 'foo' );
2018-07-04 21:37:22 +00:00
$this -> assertFalse ( $this -> instance -> isLocked ( 'foo' ));
}
2018-07-18 19:04:18 +00:00
/**
* @ small
*/
2019-08-03 18:48:56 +00:00
public function testReleaseAll ()
{
2018-09-05 20:16:23 +00:00
$this -> assertTrue ( $this -> instance -> acquireLock ( 'foo' , 1 ));
$this -> assertTrue ( $this -> instance -> acquireLock ( 'bar' , 1 ));
$this -> assertTrue ( $this -> instance -> acquireLock ( 'nice' , 1 ));
2018-07-04 21:37:22 +00:00
2018-07-07 14:15:03 +00:00
$this -> assertTrue ( $this -> instance -> isLocked ( 'foo' ));
$this -> assertTrue ( $this -> instance -> isLocked ( 'bar' ));
$this -> assertTrue ( $this -> instance -> isLocked ( 'nice' ));
2019-03-04 20:28:36 +00:00
$this -> assertTrue ( $this -> instance -> releaseAll ());
2018-07-04 21:37:22 +00:00
$this -> assertFalse ( $this -> instance -> isLocked ( 'foo' ));
$this -> assertFalse ( $this -> instance -> isLocked ( 'bar' ));
2018-07-05 18:57:31 +00:00
$this -> assertFalse ( $this -> instance -> isLocked ( 'nice' ));
2018-07-04 21:37:22 +00:00
}
2018-07-18 19:04:18 +00:00
/**
* @ small
*/
2019-08-03 18:48:56 +00:00
public function testReleaseAfterUnlock ()
{
2018-09-05 20:16:23 +00:00
$this -> assertFalse ( $this -> instance -> isLocked ( 'foo' ));
$this -> assertFalse ( $this -> instance -> isLocked ( 'bar' ));
$this -> assertFalse ( $this -> instance -> isLocked ( 'nice' ));
$this -> assertTrue ( $this -> instance -> acquireLock ( 'foo' , 1 ));
$this -> assertTrue ( $this -> instance -> acquireLock ( 'bar' , 1 ));
$this -> assertTrue ( $this -> instance -> acquireLock ( 'nice' , 1 ));
2018-07-04 21:37:22 +00:00
2019-03-04 20:28:36 +00:00
$this -> assertTrue ( $this -> instance -> releaseLock ( 'foo' ));
2018-07-04 21:37:22 +00:00
2018-07-07 14:15:03 +00:00
$this -> assertFalse ( $this -> instance -> isLocked ( 'foo' ));
$this -> assertTrue ( $this -> instance -> isLocked ( 'bar' ));
$this -> assertTrue ( $this -> instance -> isLocked ( 'nice' ));
2019-03-04 20:28:36 +00:00
$this -> assertTrue ( $this -> instance -> releaseAll ());
2018-07-04 21:37:22 +00:00
$this -> assertFalse ( $this -> instance -> isLocked ( 'bar' ));
2018-07-07 14:15:03 +00:00
$this -> assertFalse ( $this -> instance -> isLocked ( 'nice' ));
2018-07-04 21:37:22 +00:00
}
2018-07-07 17:46:16 +00:00
2019-03-04 20:28:36 +00:00
/**
* @ small
*/
public function testReleaseWitTTL ()
{
$this -> assertFalse ( $this -> instance -> isLocked ( 'test' ));
$this -> assertTrue ( $this -> instance -> acquireLock ( 'test' , 1 , 10 ));
$this -> assertTrue ( $this -> instance -> isLocked ( 'test' ));
$this -> assertTrue ( $this -> instance -> releaseLock ( 'test' ));
$this -> assertFalse ( $this -> instance -> isLocked ( 'test' ));
}
2018-07-18 19:04:18 +00:00
/**
* @ medium
*/
2019-08-03 18:48:56 +00:00
function testLockTTL ()
{
2018-11-09 19:39:47 +00:00
$this -> markTestSkipped ( 'taking too much time without mocking' );
2018-09-05 20:16:23 +00:00
$this -> assertFalse ( $this -> instance -> isLocked ( 'foo' ));
$this -> assertFalse ( $this -> instance -> isLocked ( 'bar' ));
2018-07-07 17:46:16 +00:00
// TODO [nupplaphil] - Because of the Datetime-Utils for the database, we have to wait a FULL second between the checks to invalidate the db-locks/cache
2018-09-05 20:16:23 +00:00
$this -> assertTrue ( $this -> instance -> acquireLock ( 'foo' , 2 , 1 ));
$this -> assertTrue ( $this -> instance -> acquireLock ( 'bar' , 2 , 3 ));
2018-07-07 17:46:16 +00:00
$this -> assertTrue ( $this -> instance -> isLocked ( 'foo' ));
$this -> assertTrue ( $this -> instance -> isLocked ( 'bar' ));
sleep ( 2 );
$this -> assertFalse ( $this -> instance -> isLocked ( 'foo' ));
$this -> assertTrue ( $this -> instance -> isLocked ( 'bar' ));
sleep ( 2 );
$this -> assertFalse ( $this -> instance -> isLocked ( 'foo' ));
$this -> assertFalse ( $this -> instance -> isLocked ( 'bar' ));
}
2018-07-07 14:15:03 +00:00
}