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.
|
|
|
|
|
*/
|
|
|
|
|
|
2014-11-10 16:59:50 -05:00
|
|
|
abstract class Test_Cache extends \Test\TestCase {
|
2012-06-05 13:58:30 -04:00
|
|
|
/**
|
2013-09-18 16:22:51 -04:00
|
|
|
* @var \OC\Cache cache;
|
2012-06-05 13:58:30 -04:00
|
|
|
*/
|
|
|
|
|
protected $instance;
|
|
|
|
|
|
2014-11-10 16:59:50 -05:00
|
|
|
protected function tearDown() {
|
2012-11-04 04:46:32 -05: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
|
|
|
}
|
|
|
|
|
|
2012-09-07 09:22:01 -04:00
|
|
|
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');
|
2013-01-24 10:47:17 -05:00
|
|
|
$this->assertEquals($value, $received, 'Value recieved 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'));
|
|
|
|
|
}
|
|
|
|
|
|
2012-09-07 09:22:01 -04:00
|
|
|
function testClear() {
|
2012-07-21 20:31:43 -04:00
|
|
|
$value='ipsum lorum';
|
2012-11-02 14:53:02 -04:00
|
|
|
$this->instance->set('1_value1', $value);
|
|
|
|
|
$this->instance->set('1_value2', $value);
|
|
|
|
|
$this->instance->set('2_value1', $value);
|
|
|
|
|
$this->instance->set('3_value1', $value);
|
2012-07-21 20:31:43 -04:00
|
|
|
|
|
|
|
|
$this->assertTrue($this->instance->clear('1_'));
|
|
|
|
|
$this->assertFalse($this->instance->hasKey('1_value1'));
|
|
|
|
|
$this->assertFalse($this->instance->hasKey('1_value2'));
|
|
|
|
|
$this->assertTrue($this->instance->hasKey('2_value1'));
|
|
|
|
|
$this->assertTrue($this->instance->hasKey('3_value1'));
|
|
|
|
|
|
|
|
|
|
$this->assertTrue($this->instance->clear());
|
|
|
|
|
$this->assertFalse($this->instance->hasKey('1_value1'));
|
|
|
|
|
$this->assertFalse($this->instance->hasKey('1_value2'));
|
|
|
|
|
$this->assertFalse($this->instance->hasKey('2_value1'));
|
|
|
|
|
$this->assertFalse($this->instance->hasKey('3_value1'));
|
2012-06-05 13:58:30 -04:00
|
|
|
}
|
2012-06-05 15:11:18 -04:00
|
|
|
}
|