2012-06-05 13:58:30 -04:00
|
|
|
<?php
|
2025-06-30 09:04:05 -04:00
|
|
|
|
2012-06-05 13:58:30 -04:00
|
|
|
/**
|
2024-05-10 09:09:14 -04:00
|
|
|
* SPDX-FileCopyrightText: 2017-2024 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
|
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
|
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
2012-06-05 13:58:30 -04:00
|
|
|
*/
|
|
|
|
|
|
2016-05-18 12:53:12 -04:00
|
|
|
namespace Test\Cache;
|
|
|
|
|
|
2025-06-30 10:56:59 -04:00
|
|
|
use OCP\ICache;
|
|
|
|
|
|
2016-05-18 12:53:12 -04:00
|
|
|
abstract class TestCache extends \Test\TestCase {
|
2012-06-05 13:58:30 -04:00
|
|
|
/**
|
2025-06-30 10:56:59 -04:00
|
|
|
* @var ICache cache;
|
2012-06-05 13:58:30 -04:00
|
|
|
*/
|
|
|
|
|
protected $instance;
|
|
|
|
|
|
2019-11-21 10:40:38 -05:00
|
|
|
protected function tearDown(): void {
|
2020-04-10 08:19:56 -04:00
|
|
|
if ($this->instance) {
|
2012-10-03 15:06:01 -04:00
|
|
|
$this->instance->clear();
|
|
|
|
|
}
|
2014-11-10 17:30:38 -05:00
|
|
|
|
2014-11-10 16:59:50 -05:00
|
|
|
parent::tearDown();
|
2012-06-05 13:58:30 -04:00
|
|
|
}
|
|
|
|
|
|
2024-09-15 16:32:31 -04:00
|
|
|
public function testSimple(): void {
|
2012-06-05 13:58:30 -04:00
|
|
|
$this->assertNull($this->instance->get('value1'));
|
2012-06-05 14:54:07 -04:00
|
|
|
$this->assertFalse($this->instance->hasKey('value1'));
|
2025-06-30 09:04:05 -04:00
|
|
|
|
2020-10-05 09:12:57 -04:00
|
|
|
$value = 'foobar';
|
2012-11-02 14:53:02 -04:00
|
|
|
$this->instance->set('value1', $value);
|
2012-06-05 14:54:07 -04:00
|
|
|
$this->assertTrue($this->instance->hasKey('value1'));
|
2020-10-05 09:12:57 -04:00
|
|
|
$received = $this->instance->get('value1');
|
2016-04-06 06:14:52 -04:00
|
|
|
$this->assertEquals($value, $received, 'Value received from cache not equal to the original');
|
2020-10-05 09:12:57 -04:00
|
|
|
$value = 'ipsum lorum';
|
2012-11-02 14:53:02 -04:00
|
|
|
$this->instance->set('value1', $value);
|
2020-10-05 09:12:57 -04:00
|
|
|
$received = $this->instance->get('value1');
|
2013-01-24 10:47:17 -05:00
|
|
|
$this->assertEquals($value, $received, 'Value not overwritten by second set');
|
2012-06-05 13:58:30 -04:00
|
|
|
|
2020-10-05 09:12:57 -04:00
|
|
|
$value2 = 'foobar';
|
2012-11-02 14:53:02 -04:00
|
|
|
$this->instance->set('value2', $value2);
|
2020-10-05 09:12:57 -04:00
|
|
|
$received2 = $this->instance->get('value2');
|
2012-06-05 14:54:07 -04:00
|
|
|
$this->assertTrue($this->instance->hasKey('value1'));
|
|
|
|
|
$this->assertTrue($this->instance->hasKey('value2'));
|
2013-01-24 10:47:17 -05:00
|
|
|
$this->assertEquals($value, $received, 'Value changed while setting other variable');
|
|
|
|
|
$this->assertEquals($value2, $received2, 'Second value not equal to original');
|
2012-06-05 13:58:30 -04:00
|
|
|
|
2012-06-05 14:54:07 -04:00
|
|
|
$this->assertFalse($this->instance->hasKey('not_set'));
|
2012-11-04 05:10:46 -05:00
|
|
|
$this->assertNull($this->instance->get('not_set'), 'Unset value not equal to null');
|
2012-06-05 17:19:28 -04:00
|
|
|
|
|
|
|
|
$this->assertTrue($this->instance->remove('value1'));
|
2012-07-21 20:31:43 -04:00
|
|
|
$this->assertFalse($this->instance->hasKey('value1'));
|
|
|
|
|
}
|
|
|
|
|
|
2024-09-15 16:32:31 -04:00
|
|
|
public function testClear(): void {
|
2020-10-05 09:12:57 -04:00
|
|
|
$value = 'ipsum lorum';
|
2017-05-03 16:31:09 -04:00
|
|
|
$this->instance->set('1_value1', $value . '1');
|
|
|
|
|
$this->instance->set('1_value2', $value . '2');
|
|
|
|
|
$this->instance->set('2_value1', $value . '3');
|
|
|
|
|
$this->instance->set('3_value1', $value . '4');
|
2012-07-21 20:31:43 -04:00
|
|
|
|
2017-05-03 16:31:09 -04:00
|
|
|
$this->assertEquals([
|
|
|
|
|
'1_value1' => 'ipsum lorum1',
|
|
|
|
|
'1_value2' => 'ipsum lorum2',
|
|
|
|
|
'2_value1' => 'ipsum lorum3',
|
|
|
|
|
'3_value1' => 'ipsum lorum4',
|
|
|
|
|
], [
|
|
|
|
|
'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'),
|
|
|
|
|
]);
|
2012-07-21 20:31:43 -04:00
|
|
|
$this->assertTrue($this->instance->clear('1_'));
|
2017-05-03 16:31:09 -04:00
|
|
|
|
|
|
|
|
$this->assertEquals([
|
|
|
|
|
'1_value1' => null,
|
|
|
|
|
'1_value2' => null,
|
|
|
|
|
'2_value1' => 'ipsum lorum3',
|
|
|
|
|
'3_value1' => 'ipsum lorum4',
|
|
|
|
|
], [
|
|
|
|
|
'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'),
|
|
|
|
|
]);
|
2012-07-21 20:31:43 -04:00
|
|
|
|
|
|
|
|
$this->assertTrue($this->instance->clear());
|
2017-05-03 16:31:09 -04:00
|
|
|
|
|
|
|
|
$this->assertEquals([
|
|
|
|
|
'1_value1' => null,
|
|
|
|
|
'1_value2' => null,
|
|
|
|
|
'2_value1' => null,
|
|
|
|
|
'3_value1' => null,
|
|
|
|
|
], [
|
|
|
|
|
'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'),
|
|
|
|
|
]);
|
2012-06-05 13:58:30 -04:00
|
|
|
}
|
2012-06-05 15:11:18 -04:00
|
|
|
}
|