2012-06-05 21: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 19:53:12 +03:00
|
|
|
namespace Test\Cache;
|
|
|
|
|
|
|
|
abstract class TestCache extends \Test\TestCase {
|
2012-06-05 21:58:30 +04:00
|
|
|
/**
|
2016-01-12 15:14:04 +03:00
|
|
|
* @var \OCP\ICache cache;
|
2012-06-05 21:58:30 +04:00
|
|
|
*/
|
|
|
|
protected $instance;
|
|
|
|
|
2014-11-11 00:59:50 +03:00
|
|
|
protected function tearDown() {
|
2012-11-04 13:46:32 +04:00
|
|
|
if($this->instance) {
|
2012-10-03 23:06:01 +04:00
|
|
|
$this->instance->clear();
|
|
|
|
}
|
2014-11-11 01:30:38 +03:00
|
|
|
|
2014-11-11 00:59:50 +03:00
|
|
|
parent::tearDown();
|
2012-06-05 21:58:30 +04:00
|
|
|
}
|
|
|
|
|
2012-09-07 17:22:01 +04:00
|
|
|
function testSimple() {
|
2012-06-05 21:58:30 +04:00
|
|
|
$this->assertNull($this->instance->get('value1'));
|
2012-06-05 22:54:07 +04:00
|
|
|
$this->assertFalse($this->instance->hasKey('value1'));
|
2012-06-05 21:58:30 +04:00
|
|
|
|
|
|
|
$value='foobar';
|
2012-11-02 22:53:02 +04:00
|
|
|
$this->instance->set('value1', $value);
|
2012-06-05 22:54:07 +04:00
|
|
|
$this->assertTrue($this->instance->hasKey('value1'));
|
2012-06-05 21:58:30 +04:00
|
|
|
$received=$this->instance->get('value1');
|
2016-04-06 13:14:52 +03:00
|
|
|
$this->assertEquals($value, $received, 'Value received from cache not equal to the original');
|
2012-06-05 21:58:30 +04:00
|
|
|
$value='ipsum lorum';
|
2012-11-02 22:53:02 +04:00
|
|
|
$this->instance->set('value1', $value);
|
2012-06-05 21:58:30 +04:00
|
|
|
$received=$this->instance->get('value1');
|
2013-01-24 19:47:17 +04:00
|
|
|
$this->assertEquals($value, $received, 'Value not overwritten by second set');
|
2012-06-05 21:58:30 +04:00
|
|
|
|
|
|
|
$value2='foobar';
|
2012-11-02 22:53:02 +04:00
|
|
|
$this->instance->set('value2', $value2);
|
2012-06-05 21:58:30 +04:00
|
|
|
$received2=$this->instance->get('value2');
|
2012-06-05 22:54:07 +04:00
|
|
|
$this->assertTrue($this->instance->hasKey('value1'));
|
|
|
|
$this->assertTrue($this->instance->hasKey('value2'));
|
2013-01-24 19:47:17 +04:00
|
|
|
$this->assertEquals($value, $received, 'Value changed while setting other variable');
|
|
|
|
$this->assertEquals($value2, $received2, 'Second value not equal to original');
|
2012-06-05 21:58:30 +04:00
|
|
|
|
2012-06-05 22:54:07 +04:00
|
|
|
$this->assertFalse($this->instance->hasKey('not_set'));
|
2012-11-04 14:10:46 +04:00
|
|
|
$this->assertNull($this->instance->get('not_set'), 'Unset value not equal to null');
|
2012-06-06 01:19:28 +04:00
|
|
|
|
|
|
|
$this->assertTrue($this->instance->remove('value1'));
|
2012-07-22 04:31:43 +04:00
|
|
|
$this->assertFalse($this->instance->hasKey('value1'));
|
|
|
|
}
|
|
|
|
|
2012-09-07 17:22:01 +04:00
|
|
|
function testClear() {
|
2012-07-22 04:31:43 +04:00
|
|
|
$value='ipsum lorum';
|
2017-05-03 23:31:09 +03: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-22 04:31:43 +04:00
|
|
|
|
2017-05-03 23:31:09 +03: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-22 04:31:43 +04:00
|
|
|
$this->assertTrue($this->instance->clear('1_'));
|
2017-05-03 23:31:09 +03: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-22 04:31:43 +04:00
|
|
|
|
|
|
|
$this->assertTrue($this->instance->clear());
|
2017-05-03 23:31:09 +03: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 21:58:30 +04:00
|
|
|
}
|
2012-06-05 23:11:18 +04:00
|
|
|
}
|