2013-07-24 23:50:15 +04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Copyright (c) 2013 Robin Appelman <icewind@owncloud.com>
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Test\Memcache;
|
|
|
|
|
2016-05-20 16:38:20 +03:00
|
|
|
class APCuTest extends Cache {
|
2019-11-21 18:40:38 +03:00
|
|
|
protected function setUp(): void {
|
2014-11-11 01:30:38 +03:00
|
|
|
parent::setUp();
|
|
|
|
|
2020-04-10 15:19:56 +03:00
|
|
|
if (!\OC\Memcache\APCu::isAvailable()) {
|
2013-07-24 23:50:15 +04:00
|
|
|
$this->markTestSkipped('The APCu extension is not available.');
|
|
|
|
return;
|
|
|
|
}
|
2020-10-05 16:12:57 +03:00
|
|
|
$this->instance = new \OC\Memcache\APCu($this->getUniqueID());
|
2013-07-24 23:50:15 +04:00
|
|
|
}
|
2016-12-21 23:06:29 +03:00
|
|
|
|
|
|
|
public function testCasIntChanged() {
|
|
|
|
$this->instance->set('foo', 1);
|
|
|
|
$this->assertTrue($this->instance->cas('foo', 1, 2));
|
|
|
|
$this->assertEquals(2, $this->instance->get('foo'));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testCasIntNotChanged() {
|
|
|
|
$this->instance->set('foo', 1);
|
|
|
|
$this->assertFalse($this->instance->cas('foo', 2, 3));
|
|
|
|
$this->assertEquals(1, $this->instance->get('foo'));
|
|
|
|
}
|
2013-07-24 23:50:15 +04:00
|
|
|
}
|