enhance semaphore lock testing

Cette révision appartient à :
Philipp Holzer 2019-08-17 19:38:51 +02:00
Parent c803dcb6c5
révision 1237ac1062
Signature inconnue de Forgejo
ID de la clé GPG: D8365C3D36B77D90
1 fichiers modifiés avec 19 ajouts et 2 suppressions

Voir le fichier

@ -22,7 +22,7 @@ class SemaphoreLockTest extends LockTest
$configMock
->shouldReceive('get')
->with('system', 'temppath', NULL, false)
->andReturn('/tmp');
->andReturn('/tmp/');
$dice->shouldReceive('create')->with(Configuration::class)->andReturn($configMock);
// @todo Because "get_temppath()" is using static methods, we have to initialize the BaseObject
@ -43,11 +43,13 @@ class SemaphoreLockTest extends LockTest
}
/**
* Test if semaphore locking works even for
* Test if semaphore locking works even when trying to release locks, where the file exists
* but it shouldn't harm locking
*/
public function testMissingFileNotOverriding()
{
$file = get_temppath() . '/test.sem';
touch($file);
$this->assertTrue(file_exists($file));
$this->assertFalse($this->instance->releaseLock('test', false));
@ -64,9 +66,24 @@ class SemaphoreLockTest extends LockTest
public function testMissingFileOverriding()
{
$file = get_temppath() . '/test.sem';
touch($file);
$this->assertTrue(file_exists($file));
$this->assertFalse($this->instance->releaseLock('test', true));
$this->assertTrue(file_exists($file));
}
/**
* Test acquire lock even the semaphore file exists, but isn't used
*/
public function testOverrideSemFile()
{
$file = get_temppath() . '/test.sem';
touch($file);
$this->assertTrue(file_exists($file));
$this->assertTrue($this->instance->acquireLock('test'));
$this->assertTrue($this->instance->isLocked('test'));
$this->assertTrue($this->instance->releaseLock('test'));
}
}