78 lines
1.8 KiB
PHP
78 lines
1.8 KiB
PHP
<?php
|
|
|
|
// Copyright (C) 2010-2024, the Friendica project
|
|
// SPDX-FileCopyrightText: 2010-2024 the Friendica project
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
namespace Friendica\Test\src\Core\Lock;
|
|
|
|
use Exception;
|
|
use Friendica\Core\Cache\Capability\ICanCacheInMemory;
|
|
use Friendica\Core\Cache\Type\MemcachedCache;
|
|
use Friendica\Core\Config\Capability\IManageConfigValues;
|
|
use Friendica\Core\Lock\Type\CacheLock;
|
|
use Friendica\Test\CacheLockTestCase;
|
|
use Mockery;
|
|
use Psr\Log\NullLogger;
|
|
|
|
/**
|
|
* @requires extension memcached
|
|
* @group MEMCACHED
|
|
*/
|
|
class MemcachedCacheLockTest extends CacheLockTestCase
|
|
{
|
|
private MemcachedCache $cache;
|
|
private CacheLock $lock;
|
|
|
|
protected function setUp(): void
|
|
{
|
|
$configMock = Mockery::mock(IManageConfigValues::class);
|
|
|
|
$host = $_SERVER['MEMCACHED_HOST'] ?? 'localhost';
|
|
$port = $_SERVER['MEMCACHED_PORT'] ?? '11211';
|
|
|
|
$configMock
|
|
->shouldReceive('get')
|
|
->with('system', 'memcached_hosts')
|
|
->andReturn([0 => $host . ', ' . $port]);
|
|
|
|
$logger = new NullLogger();
|
|
|
|
try {
|
|
$this->cache = new MemcachedCache($host, $configMock, $logger);
|
|
$this->lock = new CacheLock($this->cache);
|
|
} catch (Exception $e) {
|
|
static::markTestSkipped('Memcached is not available');
|
|
}
|
|
|
|
parent::setUp();
|
|
}
|
|
|
|
protected function getInstance(): CacheLock
|
|
{
|
|
return $this->lock;
|
|
}
|
|
|
|
protected function getCache(): ICanCacheInMemory
|
|
{
|
|
return $this->cache;
|
|
}
|
|
|
|
/**
|
|
* @doesNotPerformAssertions
|
|
*/
|
|
public function testGetLocks()
|
|
{
|
|
static::markTestIncomplete('Race condition because of too fast getLocks() which uses a workaround');
|
|
}
|
|
|
|
/**
|
|
* @doesNotPerformAssertions
|
|
*/
|
|
public function testGetLocksWithPrefix()
|
|
{
|
|
static::markTestIncomplete('Race condition because of too fast getLocks() which uses a workaround');
|
|
}
|
|
}
|