]> git.mxchange.org Git - friendica.git/commitdiff
enhance semaphore lock testing
authorPhilipp Holzer <admin+github@philipp.info>
Sat, 17 Aug 2019 17:38:51 +0000 (19:38 +0200)
committerPhilipp Holzer <admin+github@philipp.info>
Sat, 17 Aug 2019 17:38:51 +0000 (19:38 +0200)
tests/src/Core/Lock/SemaphoreLockTest.php

index dd696d4aefa1f84b6bb228692ef0d3c004597b70..a2291b2c241eedc019eee4d520fd7f8396e3c803 100644 (file)
@@ -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'));
+       }
 }