X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=tests%2Fsrc%2FCore%2FLock%2FMemcachedCacheLockTest.php;h=69272007a41939e8453427c65daaaadb0a77d494;hb=cb80108957f16011b5b7b1b8961da8cbd78d60c9;hp=2249b88b8c9cc43b568ea899edf2a8369f38420a;hpb=d5dd12b8f8bc7d08813fee3e22831daf45c9052d;p=friendica.git diff --git a/tests/src/Core/Lock/MemcachedCacheLockTest.php b/tests/src/Core/Lock/MemcachedCacheLockTest.php index 2249b88b8c..69272007a4 100644 --- a/tests/src/Core/Lock/MemcachedCacheLockTest.php +++ b/tests/src/Core/Lock/MemcachedCacheLockTest.php @@ -4,18 +4,19 @@ namespace Friendica\Test\src\Core\Lock; use Friendica\Core\Cache\MemcachedCache; -use Friendica\Core\Config\Configuration; +use Friendica\Core\Config\IConfig; use Friendica\Core\Lock\CacheLock; use Psr\Log\NullLogger; /** * @requires extension memcached + * @group MEMCACHED */ class MemcachedCacheLockTest extends LockTest { protected function getInstance() { - $configMock = \Mockery::mock(Configuration::class); + $configMock = \Mockery::mock(IConfig::class); $host = $_SERVER['MEMCACHED_HOST'] ?? 'localhost'; @@ -37,4 +38,14 @@ class MemcachedCacheLockTest extends LockTest return $lock; } + + public function testGetLocks() + { + $this->markTestIncomplete('Race condition because of too fast getLocks() which uses a workaround'); + } + + public function testGetLocksWithPrefix() + { + $this->markTestIncomplete('Race condition because of too fast getLocks() which uses a workaround'); + } }