nextcloud/tests/lib/Memcache/Cache.php

158 lines
4.7 KiB
PHP
Raw Normal View History

2013-07-16 09:46:27 -04:00
<?php
/**
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
* SPDX-License-Identifier: AGPL-3.0-or-later
2013-07-16 09:46:27 -04:00
*/
namespace Test\Memcache;
use OCP\IMemcache;
2016-05-18 12:53:12 -04:00
abstract class Cache extends \Test\Cache\TestCache {
2015-04-28 09:39:38 -04:00
/**
* @var IMemcache cache;
2015-04-28 09:39:38 -04:00
*/
protected $instance;
public function testExistsAfterSet(): void {
2013-07-16 09:46:27 -04:00
$this->assertFalse($this->instance->hasKey('foo'));
$this->instance->set('foo', 'bar');
$this->assertTrue($this->instance->hasKey('foo'));
}
public function testGetAfterSet(): void {
2013-07-16 09:46:27 -04:00
$this->assertNull($this->instance->get('foo'));
$this->instance->set('foo', 'bar');
$this->assertEquals('bar', $this->instance->get('foo'));
}
public function testGetArrayAfterSet(): void {
$this->assertNull($this->instance->get('foo'));
$this->instance->set('foo', ['bar']);
$this->assertEquals(['bar'], $this->instance->get('foo'));
}
public function testDoesNotExistAfterRemove(): void {
2013-07-16 09:46:27 -04:00
$this->instance->set('foo', 'bar');
$this->instance->remove('foo');
$this->assertFalse($this->instance->hasKey('foo'));
}
public function testRemoveNonExisting(): void {
2016-03-14 07:34:11 -04:00
$this->instance->remove('foo');
$this->assertFalse($this->instance->hasKey('foo'));
}
public function testArrayAccessSet(): void {
$this->instance['foo'] = 'bar';
$this->assertEquals('bar', $this->instance->get('foo'));
}
public function testArrayAccessGet(): void {
$this->instance->set('foo', 'bar');
$this->assertEquals('bar', $this->instance['foo']);
}
public function testArrayAccessExists(): void {
$this->assertFalse(isset($this->instance['foo']));
$this->instance->set('foo', 'bar');
$this->assertTrue(isset($this->instance['foo']));
}
public function testArrayAccessUnset(): void {
$this->instance->set('foo', 'bar');
unset($this->instance['foo']);
$this->assertFalse($this->instance->hasKey('foo'));
}
public function testAdd(): void {
2015-04-28 09:39:38 -04:00
$this->assertTrue($this->instance->add('foo', 'bar'));
$this->assertEquals('bar', $this->instance->get('foo'));
$this->assertFalse($this->instance->add('foo', 'asd'));
$this->assertEquals('bar', $this->instance->get('foo'));
}
public function testInc(): void {
2015-04-28 09:39:38 -04:00
$this->assertEquals(1, $this->instance->inc('foo'));
$this->assertEquals(1, $this->instance->get('foo'));
$this->assertEquals(2, $this->instance->inc('foo'));
2016-03-14 07:34:11 -04:00
$this->assertEquals(2, $this->instance->get('foo'));
2015-04-28 09:39:38 -04:00
$this->assertEquals(12, $this->instance->inc('foo', 10));
2016-03-14 07:34:11 -04:00
$this->assertEquals(12, $this->instance->get('foo'));
2015-04-28 09:39:38 -04:00
$this->instance->set('foo', 'bar');
$this->assertFalse($this->instance->inc('foo'));
$this->assertEquals('bar', $this->instance->get('foo'));
}
public function testDec(): void {
2016-03-14 07:34:11 -04:00
$this->assertFalse($this->instance->dec('foo'));
2015-04-28 09:39:38 -04:00
$this->instance->set('foo', 20);
$this->assertEquals(19, $this->instance->dec('foo'));
$this->assertEquals(19, $this->instance->get('foo'));
$this->assertEquals(9, $this->instance->dec('foo', 10));
$this->instance->set('foo', 'bar');
$this->assertFalse($this->instance->dec('foo'));
$this->assertEquals('bar', $this->instance->get('foo'));
}
public function testCasNotChanged(): void {
2015-04-29 10:34:36 -04:00
$this->instance->set('foo', 'bar');
$this->assertTrue($this->instance->cas('foo', 'bar', 'asd'));
$this->assertEquals('asd', $this->instance->get('foo'));
}
public function testCasChanged(): void {
2015-04-29 10:34:36 -04:00
$this->instance->set('foo', 'bar1');
$this->assertFalse($this->instance->cas('foo', 'bar', 'asd'));
$this->assertEquals('bar1', $this->instance->get('foo'));
}
public function testCasNotSet(): void {
$this->assertFalse($this->instance->cas('foo', 'bar', 'asd'));
}
public function testCadNotChanged(): void {
$this->instance->set('foo', 'bar');
$this->assertTrue($this->instance->cad('foo', 'bar'));
$this->assertFalse($this->instance->hasKey('foo'));
}
public function testCadChanged(): void {
$this->instance->set('foo', 'bar1');
$this->assertFalse($this->instance->cad('foo', 'bar'));
$this->assertTrue($this->instance->hasKey('foo'));
}
public function testCadNotSet(): void {
$this->assertFalse($this->instance->cad('foo', 'bar'));
}
public function testNcadNotChanged(): void {
$this->instance->set('foo', 'bar');
$this->assertFalse($this->instance->ncad('foo', 'bar'));
$this->assertTrue($this->instance->hasKey('foo'));
}
public function testNcadChanged(): void {
$this->instance->set('foo', 'bar1');
$this->assertTrue($this->instance->ncad('foo', 'bar'));
$this->assertFalse($this->instance->hasKey('foo'));
}
public function testNcadNotSet(): void {
$this->assertFalse($this->instance->ncad('foo', 'bar'));
}
2015-04-28 09:39:38 -04:00
protected function tearDown(): void {
2013-07-16 09:46:27 -04:00
if ($this->instance) {
$this->instance->clear();
}
parent::tearDown();
2013-07-16 09:46:27 -04:00
}
}