Cache: split permission cache scanning and cache scanning

This commit is contained in:
Robin Appelman 2013-01-07 01:03:11 +01:00
parent 439578288f
commit ad3badeabf
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ class View extends \PHPUnit_Framework_TestCase {
$cachedData = $rootView->getFileInfo('/foo.txt');
$this->assertEquals($textSize, $cachedData['size']);
$this->assertEquals('text/plain', $cachedData['mimetype']);
$this->assertEquals(\OCP\PERMISSION_ALL ^ \OCP\PERMISSION_CREATE, $cachedData['permissions']);
$this->assertNotEquals(-1, $cachedData['permissions']);
$cachedData = $rootView->getFileInfo('/');
$this->assertEquals($storageSize * 3, $cachedData['size']);