mirror of
https://github.com/friendica/friendica
synced 2025-01-09 00:04:54 +00:00
433d6abe8c
- Reducing DB-dependencies - Creating DB-cache mocks - Creating DB-lock mocks - Switching to mocked dependencies for Cache/Lock/App
153 lines
4.3 KiB
PHP
153 lines
4.3 KiB
PHP
<?php
|
|
|
|
namespace Friendica\Test\src\Core\Lock;
|
|
|
|
use Friendica\Test\MockedTest;
|
|
use Friendica\Test\Util\AppMockTrait;
|
|
use Friendica\Test\Util\VFSTrait;
|
|
|
|
abstract class LockTest extends MockedTest
|
|
{
|
|
use VFSTrait;
|
|
use AppMockTrait;
|
|
|
|
/**
|
|
* @var int Start time of the mock (used for time operations)
|
|
*/
|
|
protected $startTime = 1417011228;
|
|
|
|
/**
|
|
* @var \Friendica\Core\Lock\ILockDriver
|
|
*/
|
|
protected $instance;
|
|
|
|
abstract protected function getInstance();
|
|
|
|
protected function setUp()
|
|
{
|
|
parent::setUp();
|
|
$this->instance = $this->getInstance();
|
|
$this->instance->releaseAll();
|
|
|
|
// Reusable App object
|
|
$this->setUpVfsDir();
|
|
$this->mockApp($this->root);
|
|
$this->app
|
|
->shouldReceive('getHostname')
|
|
->andReturn('friendica.local');
|
|
|
|
// Default config
|
|
$this->mockConfigGet('config', 'hostname', 'localhost');
|
|
$this->mockConfigGet('system', 'throttle_limit_day', 100);
|
|
$this->mockConfigGet('system', 'throttle_limit_week', 100);
|
|
$this->mockConfigGet('system', 'throttle_limit_month', 100);
|
|
$this->mockConfigGet('system', 'theme', 'system_theme');
|
|
}
|
|
|
|
protected function tearDown()
|
|
{
|
|
$this->instance->releaseAll();
|
|
parent::tearDown();
|
|
}
|
|
|
|
/**
|
|
* @small
|
|
*/
|
|
public function testLock() {
|
|
$this->assertFalse($this->instance->isLocked('foo'));
|
|
$this->assertTrue($this->instance->acquireLock('foo', 1));
|
|
$this->assertTrue($this->instance->isLocked('foo'));
|
|
$this->assertFalse($this->instance->isLocked('bar'));
|
|
}
|
|
|
|
/**
|
|
* @small
|
|
*/
|
|
public function testDoubleLock() {
|
|
$this->assertFalse($this->instance->isLocked('foo'));
|
|
$this->assertTrue($this->instance->acquireLock('foo', 1));
|
|
$this->assertTrue($this->instance->isLocked('foo'));
|
|
// We already locked it
|
|
$this->assertTrue($this->instance->acquireLock('foo', 1));
|
|
}
|
|
|
|
/**
|
|
* @small
|
|
*/
|
|
public function testReleaseLock() {
|
|
$this->assertFalse($this->instance->isLocked('foo'));
|
|
$this->assertTrue($this->instance->acquireLock('foo', 1));
|
|
$this->assertTrue($this->instance->isLocked('foo'));
|
|
$this->instance->releaseLock('foo');
|
|
$this->assertFalse($this->instance->isLocked('foo'));
|
|
}
|
|
|
|
/**
|
|
* @small
|
|
*/
|
|
public function testReleaseAll() {
|
|
$this->assertTrue($this->instance->acquireLock('foo', 1));
|
|
$this->assertTrue($this->instance->acquireLock('bar', 1));
|
|
$this->assertTrue($this->instance->acquireLock('nice', 1));
|
|
|
|
$this->assertTrue($this->instance->isLocked('foo'));
|
|
$this->assertTrue($this->instance->isLocked('bar'));
|
|
$this->assertTrue($this->instance->isLocked('nice'));
|
|
|
|
$this->instance->releaseAll();
|
|
|
|
$this->assertFalse($this->instance->isLocked('foo'));
|
|
$this->assertFalse($this->instance->isLocked('bar'));
|
|
$this->assertFalse($this->instance->isLocked('nice'));
|
|
}
|
|
|
|
/**
|
|
* @small
|
|
*/
|
|
public function testReleaseAfterUnlock() {
|
|
$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));
|
|
|
|
$this->instance->releaseLock('foo');
|
|
|
|
$this->assertFalse($this->instance->isLocked('foo'));
|
|
$this->assertTrue($this->instance->isLocked('bar'));
|
|
$this->assertTrue($this->instance->isLocked('nice'));
|
|
|
|
$this->instance->releaseAll();
|
|
|
|
$this->assertFalse($this->instance->isLocked('bar'));
|
|
$this->assertFalse($this->instance->isLocked('nice'));
|
|
}
|
|
|
|
/**
|
|
* @medium
|
|
*/
|
|
function testLockTTL() {
|
|
$this->markTestSkipped('taking too much time without mocking');
|
|
|
|
$this->assertFalse($this->instance->isLocked('foo'));
|
|
$this->assertFalse($this->instance->isLocked('bar'));
|
|
|
|
// 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
|
|
$this->assertTrue($this->instance->acquireLock('foo', 2, 1));
|
|
$this->assertTrue($this->instance->acquireLock('bar', 2, 3));
|
|
|
|
$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'));
|
|
}
|
|
}
|