$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
}
/**
- * 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));
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'));
+ }
}