2012-10-26 21:07:29 +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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Test\Files\Cache;
|
|
|
|
|
2013-09-19 23:37:52 +04:00
|
|
|
use OC\Files\Storage\Temporary;
|
|
|
|
|
2012-10-26 21:07:29 +04:00
|
|
|
class Permissions extends \PHPUnit_Framework_TestCase {
|
2012-11-15 03:57:30 +04:00
|
|
|
/***
|
|
|
|
* @var \OC\Files\Cache\Permissions $permissionsCache
|
|
|
|
*/
|
|
|
|
private $permissionsCache;
|
|
|
|
|
2013-04-20 18:38:03 +04:00
|
|
|
function setUp() {
|
|
|
|
$this->permissionsCache = new \OC\Files\Cache\Permissions('dummy');
|
2012-11-15 03:57:30 +04:00
|
|
|
}
|
|
|
|
|
2012-10-26 21:07:29 +04:00
|
|
|
function testSimple() {
|
|
|
|
$ids = range(1, 10);
|
|
|
|
$user = uniqid();
|
|
|
|
|
2012-11-15 03:57:30 +04:00
|
|
|
$this->assertEquals(-1, $this->permissionsCache->get(1, $user));
|
2013-04-20 18:38:03 +04:00
|
|
|
$this->assertNotContains($user, $this->permissionsCache->getUsers(1));
|
2012-11-15 03:57:30 +04:00
|
|
|
$this->permissionsCache->set(1, $user, 1);
|
|
|
|
$this->assertEquals(1, $this->permissionsCache->get(1, $user));
|
2013-04-20 18:38:03 +04:00
|
|
|
$this->assertContains($user, $this->permissionsCache->getUsers(1));
|
2012-11-15 03:57:30 +04:00
|
|
|
$this->assertEquals(-1, $this->permissionsCache->get(2, $user));
|
|
|
|
$this->assertEquals(-1, $this->permissionsCache->get(1, $user . '2'));
|
2012-10-26 21:07:29 +04:00
|
|
|
|
2012-11-15 03:57:30 +04:00
|
|
|
$this->permissionsCache->set(1, $user, 2);
|
|
|
|
$this->assertEquals(2, $this->permissionsCache->get(1, $user));
|
2012-10-26 21:07:29 +04:00
|
|
|
|
2012-11-15 03:57:30 +04:00
|
|
|
$this->permissionsCache->set(2, $user, 1);
|
|
|
|
$this->assertEquals(1, $this->permissionsCache->get(2, $user));
|
2012-10-26 21:07:29 +04:00
|
|
|
|
2012-11-15 03:57:30 +04:00
|
|
|
$this->permissionsCache->remove(1, $user);
|
|
|
|
$this->assertEquals(-1, $this->permissionsCache->get(1, $user));
|
|
|
|
$this->permissionsCache->remove(1, $user . '2');
|
|
|
|
$this->assertEquals(1, $this->permissionsCache->get(2, $user));
|
2012-10-26 21:07:29 +04:00
|
|
|
|
|
|
|
$expected = array();
|
|
|
|
foreach ($ids as $id) {
|
2012-11-15 03:57:30 +04:00
|
|
|
$this->permissionsCache->set($id, $user, 10 + $id);
|
2012-10-26 21:07:29 +04:00
|
|
|
$expected[$id] = 10 + $id;
|
|
|
|
}
|
2012-11-15 03:57:30 +04:00
|
|
|
$this->assertEquals($expected, $this->permissionsCache->getMultiple($ids, $user));
|
2012-10-26 21:07:29 +04:00
|
|
|
|
2012-11-15 03:57:30 +04:00
|
|
|
$this->permissionsCache->removeMultiple(array(10, 9), $user);
|
2012-10-26 21:07:29 +04:00
|
|
|
unset($expected[9]);
|
|
|
|
unset($expected[10]);
|
2012-11-15 03:57:30 +04:00
|
|
|
$this->assertEquals($expected, $this->permissionsCache->getMultiple($ids, $user));
|
2012-10-26 21:07:29 +04:00
|
|
|
|
2012-11-15 03:57:30 +04:00
|
|
|
$this->permissionsCache->removeMultiple($ids, $user);
|
2012-10-26 21:07:29 +04:00
|
|
|
}
|
2013-09-19 23:37:52 +04:00
|
|
|
|
|
|
|
public function testUpdatePermissionsOnRescan() {
|
|
|
|
$storage = new Temporary(array());
|
|
|
|
$scanner = $storage->getScanner();
|
|
|
|
$cache = $storage->getCache();
|
|
|
|
$permissionsCache = $storage->getPermissionsCache();
|
|
|
|
|
|
|
|
$storage->file_put_contents('foo.txt', 'bar');
|
|
|
|
$scanner->scan('');
|
|
|
|
$id = $cache->getId('foo.txt');
|
|
|
|
$permissionsCache->set($id, 'test', 1);
|
|
|
|
|
|
|
|
$scanner->scan('');
|
|
|
|
$this->assertEquals(-1, $permissionsCache->get($id, 'test'));
|
|
|
|
}
|
2012-10-26 21:07:29 +04:00
|
|
|
}
|