From 065f2fbcc607467032d8373a4593479e33be55de Mon Sep 17 00:00:00 2001 From: Roeland Jago Douma Date: Wed, 21 Dec 2016 21:06:29 +0100 Subject: Extend APCu test with int CAS Signed-off-by: Roeland Jago Douma --- tests/lib/Memcache/APCuTest.php | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/tests/lib/Memcache/APCuTest.php b/tests/lib/Memcache/APCuTest.php index 73fd5a12880..41de75a8ea8 100644 --- a/tests/lib/Memcache/APCuTest.php +++ b/tests/lib/Memcache/APCuTest.php @@ -19,4 +19,16 @@ class APCuTest extends Cache { } $this->instance=new \OC\Memcache\APCu($this->getUniqueID()); } + + 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')); + } } -- cgit v1.2.3