2012-06-05 13:58:30 -04:00
|
|
|
<?php
|
|
|
|
|
/**
|
|
|
|
|
* Copyright (c) 2012 Robin Appelman <icewind@owncloud.com>
|
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
|
* later.
|
|
|
|
|
* See the COPYING-README file.
|
|
|
|
|
*/
|
|
|
|
|
|
2016-05-18 12:53:12 -04:00
|
|
|
namespace Test\Cache;
|
|
|
|
|
|
|
|
|
|
abstract class TestCache extends \Test\TestCase {
|
2012-06-05 13:58:30 -04:00
|
|
|
/**
|
2016-01-12 07:14:04 -05:00
|
|
|
* @var \OCP\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
|
|
|
}
|
|
|
|
|
|
2020-04-10 10:51:06 -04:00
|
|
|
public function testSimple() {
|
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'));
|
2012-06-05 13:58:30 -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'));
|
2012-06-05 13:58:30 -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');
|
2012-06-05 13:58:30 -04:00
|
|
|
$value='ipsum lorum';
|
2012-11-02 14:53:02 -04:00
|
|
|
$this->instance->set('value1', $value);
|
2012-06-05 13:58:30 -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
|
|
|
|
|
|
|
|
$value2='foobar';
|
2012-11-02 14:53:02 -04:00
|
|
|
$this->instance->set('value2', $value2);
|
2012-06-05 13:58:30 -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'));
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-10 10:51:06 -04:00
|
|
|
public function testClear() {
|
2012-07-21 20:31:43 -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
|
|
|
}
|