241 lines
6.3 KiB
PHP
241 lines
6.3 KiB
PHP
<?php
|
|
/**
|
|
* @copyright Copyright (C) 2010-2021, the Friendica project
|
|
*
|
|
* @license GNU AGPL version 3 or any later version
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
* License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
namespace Friendica\Test\src\Core\Cache;
|
|
|
|
use Friendica\Core\Cache\Capability\ICanCache;
|
|
use Friendica\Core\Cache\Capability\ICanCacheInMemory;
|
|
use Friendica\Test\MockedTest;
|
|
use Friendica\Util\PidFile;
|
|
|
|
abstract class CacheTest extends MockedTest
|
|
{
|
|
/**
|
|
* @var int Start time of the mock (used for time operations)
|
|
*/
|
|
protected $startTime = 1417011228;
|
|
|
|
/**
|
|
* @var ICanCache
|
|
*/
|
|
protected $instance;
|
|
|
|
/**
|
|
* @var \Friendica\Core\Cache\Capability\ICanCacheInMemory
|
|
*/
|
|
protected $cache;
|
|
|
|
/**
|
|
* Dataset for test setting different types in the cache
|
|
*
|
|
* @return array
|
|
*/
|
|
public function dataTypesInCache()
|
|
{
|
|
return [
|
|
'string' => ['data' => 'foobar'],
|
|
'integer' => ['data' => 1],
|
|
'boolTrue' => ['data' => true],
|
|
'boolFalse' => ['data' => false],
|
|
'float' => ['data' => 4.6634234],
|
|
'array' => ['data' => ['1', '2', '3', '4', '5']],
|
|
'object' => ['data' => new PidFile()],
|
|
'null' => ['data' => null],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* Dataset for simple value sets/gets
|
|
*
|
|
* @return array
|
|
*/
|
|
public function dataSimple()
|
|
{
|
|
return [
|
|
'string' => [
|
|
'value1' => 'foobar',
|
|
'value2' => 'ipsum lorum',
|
|
'value3' => 'test',
|
|
'value4' => 'lasttest',
|
|
],
|
|
];
|
|
}
|
|
|
|
abstract protected function getInstance();
|
|
|
|
protected function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
|
|
$this->instance = $this->getInstance();
|
|
|
|
$this->instance->clear(false);
|
|
}
|
|
|
|
/**
|
|
* @small
|
|
* @dataProvider dataSimple
|
|
*
|
|
* @param mixed $value1 a first
|
|
* @param mixed $value2 a second
|
|
*/
|
|
public function testSimple($value1, $value2)
|
|
{
|
|
self::assertNull($this->instance->get('value1'));
|
|
|
|
$this->instance->set('value1', $value1);
|
|
$received = $this->instance->get('value1');
|
|
self::assertEquals($value1, $received, 'Value received from cache not equal to the original');
|
|
|
|
$this->instance->set('value1', $value2);
|
|
$received = $this->instance->get('value1');
|
|
self::assertEquals($value2, $received, 'Value not overwritten by second set');
|
|
|
|
$this->instance->set('value2', $value1);
|
|
$received2 = $this->instance->get('value2');
|
|
self::assertEquals($value2, $received, 'Value changed while setting other variable');
|
|
self::assertEquals($value1, $received2, 'Second value not equal to original');
|
|
|
|
self::assertNull($this->instance->get('not_set'), 'Unset value not equal to null');
|
|
|
|
self::assertTrue($this->instance->delete('value1'));
|
|
self::assertNull($this->instance->get('value1'));
|
|
}
|
|
|
|
/**
|
|
* @small
|
|
* @dataProvider dataSimple
|
|
*
|
|
* @param mixed $value1 a first
|
|
* @param mixed $value2 a second
|
|
* @param mixed $value3 a third
|
|
* @param mixed $value4 a fourth
|
|
*/
|
|
public function testClear($value1, $value2, $value3, $value4)
|
|
{
|
|
$this->instance->set('1_value1', $value1);
|
|
$this->instance->set('1_value2', $value2);
|
|
$this->instance->set('2_value1', $value3);
|
|
$this->instance->set('3_value1', $value4);
|
|
|
|
self::assertEquals([
|
|
'1_value1' => $value1,
|
|
'1_value2' => $value2,
|
|
'2_value1' => $value3,
|
|
'3_value1' => $value4,
|
|
], [
|
|
'1_value1' => $this->instance->get('1_value1'),
|
|
'1_value2' => $this->instance->get('1_value2'),
|
|
'2_value1' => $this->instance->get('2_value1'),
|
|
'3_value1' => $this->instance->get('3_value1'),
|
|
]);
|
|
|
|
self::assertTrue($this->instance->clear());
|
|
|
|
self::assertEquals([
|
|
'1_value1' => $value1,
|
|
'1_value2' => $value2,
|
|
'2_value1' => $value3,
|
|
'3_value1' => $value4,
|
|
], [
|
|
'1_value1' => $this->instance->get('1_value1'),
|
|
'1_value2' => $this->instance->get('1_value2'),
|
|
'2_value1' => $this->instance->get('2_value1'),
|
|
'3_value1' => $this->instance->get('3_value1'),
|
|
]);
|
|
|
|
self::assertTrue($this->instance->clear(false));
|
|
|
|
self::assertEquals([
|
|
'1_value1' => null,
|
|
'1_value2' => null,
|
|
'2_value3' => null,
|
|
'3_value4' => null,
|
|
], [
|
|
'1_value1' => $this->instance->get('1_value1'),
|
|
'1_value2' => $this->instance->get('1_value2'),
|
|
'2_value3' => $this->instance->get('2_value3'),
|
|
'3_value4' => $this->instance->get('3_value4'),
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* @medium
|
|
*/
|
|
public function testTTL()
|
|
{
|
|
static::markTestSkipped('taking too much time without mocking');
|
|
|
|
self::assertNull($this->instance->get('value1'));
|
|
|
|
$value = 'foobar';
|
|
$this->instance->set('value1', $value, 1);
|
|
$received = $this->instance->get('value1');
|
|
self::assertEquals($value, $received, 'Value received from cache not equal to the original');
|
|
|
|
sleep(2);
|
|
|
|
self::assertNull($this->instance->get('value1'));
|
|
}
|
|
|
|
/**
|
|
* @small
|
|
*
|
|
* @param mixed $data the data to store in the cache
|
|
*
|
|
* @dataProvider dataTypesInCache
|
|
*/
|
|
public function testDifferentTypesInCache($data)
|
|
{
|
|
$this->instance->set('val', $data);
|
|
$received = $this->instance->get('val');
|
|
self::assertEquals($data, $received, 'Value type changed from ' . gettype($data) . ' to ' . gettype($received));
|
|
}
|
|
|
|
/**
|
|
* @small
|
|
*
|
|
* @param mixed $value1 a first
|
|
* @param mixed $value2 a second
|
|
* @param mixed $value3 a third
|
|
*
|
|
* @dataProvider dataSimple
|
|
*/
|
|
public function testGetAllKeys($value1, $value2, $value3)
|
|
{
|
|
self::assertTrue($this->instance->set('value1', $value1));
|
|
self::assertTrue($this->instance->set('value2', $value2));
|
|
self::assertTrue($this->instance->set('test_value3', $value3));
|
|
|
|
$list = $this->instance->getAllKeys();
|
|
|
|
self::assertContains('value1', $list);
|
|
self::assertContains('value2', $list);
|
|
self::assertContains('test_value3', $list);
|
|
|
|
$list = $this->instance->getAllKeys('test');
|
|
|
|
self::assertContains('test_value3', $list);
|
|
self::assertNotContains('value1', $list);
|
|
self::assertNotContains('value2', $list);
|
|
}
|
|
}
|