2013-03-17 19:01:10 +04:00
|
|
|
<?php
|
2013-07-16 17:46:27 +04:00
|
|
|
|
2013-03-17 19:01:10 +04:00
|
|
|
/**
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2013-07-16 17:46:27 +04:00
|
|
|
namespace Test\Memcache;
|
|
|
|
|
|
|
|
class Memcached extends Cache {
|
2013-12-09 04:02:42 +04:00
|
|
|
static public function setUpBeforeClass() {
|
2013-12-09 17:31:35 +04:00
|
|
|
if (!\OC\Memcache\Memcached::isAvailable()) {
|
|
|
|
self::markTestSkipped('The memcached extension is not available.');
|
|
|
|
}
|
2013-12-09 04:02:42 +04:00
|
|
|
$instance = new \OC\Memcache\Memcached(uniqid());
|
|
|
|
if ($instance->set(uniqid(), uniqid()) === false) {
|
|
|
|
self::markTestSkipped('memcached server seems to be down.');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-17 19:01:10 +04:00
|
|
|
public function setUp() {
|
2013-07-16 17:46:27 +04:00
|
|
|
$this->instance = new \OC\Memcache\Memcached(uniqid());
|
2013-03-17 19:01:10 +04:00
|
|
|
}
|
|
|
|
}
|