2012-09-22 17:43:10 +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-05-23 22:29:46 +04:00
|
|
|
|
use PHPUnit_Framework_MockObject_MockObject;
|
|
|
|
|
|
2013-02-16 00:49:40 +04:00
|
|
|
|
class LongId extends \OC\Files\Storage\Temporary {
|
|
|
|
|
public function getId() {
|
|
|
|
|
return 'long:' . str_repeat('foo', 50) . parent::getId();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-11-07 17:23:15 +03:00
|
|
|
|
class Cache extends \Test\TestCase {
|
2012-09-22 17:43:10 +04:00
|
|
|
|
/**
|
2013-11-08 15:57:28 +04:00
|
|
|
|
* @var \OC\Files\Storage\Temporary $storage ;
|
2012-09-22 17:43:10 +04:00
|
|
|
|
*/
|
2014-11-10 18:00:08 +03:00
|
|
|
|
protected $storage;
|
2013-05-16 19:47:41 +04:00
|
|
|
|
/**
|
2013-11-08 15:57:28 +04:00
|
|
|
|
* @var \OC\Files\Storage\Temporary $storage2 ;
|
2013-05-16 19:47:41 +04:00
|
|
|
|
*/
|
2014-11-10 18:00:08 +03:00
|
|
|
|
protected $storage2;
|
2012-09-22 17:43:10 +04:00
|
|
|
|
|
2012-09-26 19:52:02 +04:00
|
|
|
|
/**
|
|
|
|
|
* @var \OC\Files\Cache\Cache $cache
|
|
|
|
|
*/
|
2014-11-10 18:00:08 +03:00
|
|
|
|
protected $cache;
|
2013-05-16 19:47:41 +04:00
|
|
|
|
/**
|
|
|
|
|
* @var \OC\Files\Cache\Cache $cache2
|
|
|
|
|
*/
|
2014-11-10 18:00:08 +03:00
|
|
|
|
protected $cache2;
|
2012-09-22 17:43:10 +04:00
|
|
|
|
|
2014-12-10 14:55:01 +03:00
|
|
|
|
public function testGetNumericId() {
|
|
|
|
|
$this->assertNotNull($this->cache->getNumericStorageId());
|
|
|
|
|
}
|
|
|
|
|
|
2012-09-22 17:43:10 +04:00
|
|
|
|
public function testSimple() {
|
2012-09-26 19:52:02 +04:00
|
|
|
|
$file1 = 'foo';
|
|
|
|
|
$file2 = 'foo/bar';
|
2012-09-22 17:43:10 +04:00
|
|
|
|
$data1 = array('size' => 100, 'mtime' => 50, 'mimetype' => 'foo/folder');
|
|
|
|
|
$data2 = array('size' => 1000, 'mtime' => 20, 'mimetype' => 'foo/file');
|
|
|
|
|
|
2012-09-26 19:52:02 +04:00
|
|
|
|
$this->assertFalse($this->cache->inCache($file1));
|
2013-01-27 00:41:14 +04:00
|
|
|
|
$this->assertEquals($this->cache->get($file1), null);
|
2012-09-22 17:43:10 +04:00
|
|
|
|
|
2012-09-26 19:52:02 +04:00
|
|
|
|
$id1 = $this->cache->put($file1, $data1);
|
|
|
|
|
$this->assertTrue($this->cache->inCache($file1));
|
|
|
|
|
$cacheData1 = $this->cache->get($file1);
|
2012-09-22 17:43:10 +04:00
|
|
|
|
foreach ($data1 as $key => $value) {
|
2013-01-27 00:41:14 +04:00
|
|
|
|
$this->assertEquals($value, $cacheData1[$key]);
|
2012-09-22 17:43:10 +04:00
|
|
|
|
}
|
2013-01-27 00:41:14 +04:00
|
|
|
|
$this->assertEquals($cacheData1['mimepart'], 'foo');
|
|
|
|
|
$this->assertEquals($cacheData1['fileid'], $id1);
|
|
|
|
|
$this->assertEquals($id1, $this->cache->getId($file1));
|
2012-09-22 17:43:10 +04:00
|
|
|
|
|
2012-09-26 19:52:02 +04:00
|
|
|
|
$this->assertFalse($this->cache->inCache($file2));
|
|
|
|
|
$id2 = $this->cache->put($file2, $data2);
|
|
|
|
|
$this->assertTrue($this->cache->inCache($file2));
|
|
|
|
|
$cacheData2 = $this->cache->get($file2);
|
2012-09-22 17:43:10 +04:00
|
|
|
|
foreach ($data2 as $key => $value) {
|
2013-01-27 00:41:14 +04:00
|
|
|
|
$this->assertEquals($value, $cacheData2[$key]);
|
2012-09-22 17:43:10 +04:00
|
|
|
|
}
|
2013-01-27 00:41:14 +04:00
|
|
|
|
$this->assertEquals($cacheData1['fileid'], $cacheData2['parent']);
|
|
|
|
|
$this->assertEquals($cacheData2['fileid'], $id2);
|
|
|
|
|
$this->assertEquals($id2, $this->cache->getId($file2));
|
|
|
|
|
$this->assertEquals($id1, $this->cache->getParentId($file2));
|
2012-09-22 17:43:10 +04:00
|
|
|
|
|
|
|
|
|
$newSize = 1050;
|
2012-09-26 19:52:02 +04:00
|
|
|
|
$newId2 = $this->cache->put($file2, array('size' => $newSize));
|
|
|
|
|
$cacheData2 = $this->cache->get($file2);
|
2013-01-27 00:41:14 +04:00
|
|
|
|
$this->assertEquals($newId2, $id2);
|
|
|
|
|
$this->assertEquals($cacheData2['size'], $newSize);
|
|
|
|
|
$this->assertEquals($cacheData1, $this->cache->get($file1));
|
2012-09-22 17:43:10 +04:00
|
|
|
|
|
2012-09-26 19:52:02 +04:00
|
|
|
|
$this->cache->remove($file2);
|
|
|
|
|
$this->assertFalse($this->cache->inCache($file2));
|
2013-01-27 00:41:14 +04:00
|
|
|
|
$this->assertEquals($this->cache->get($file2), null);
|
2012-09-26 19:52:02 +04:00
|
|
|
|
$this->assertTrue($this->cache->inCache($file1));
|
2012-09-22 17:43:10 +04:00
|
|
|
|
|
2013-01-27 00:41:14 +04:00
|
|
|
|
$this->assertEquals($cacheData1, $this->cache->get($id1));
|
2012-09-22 17:43:10 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function testPartial() {
|
2012-09-26 19:52:02 +04:00
|
|
|
|
$file1 = 'foo';
|
2012-09-22 17:43:10 +04:00
|
|
|
|
|
2012-09-26 19:52:02 +04:00
|
|
|
|
$this->cache->put($file1, array('size' => 10));
|
2013-01-27 00:41:14 +04:00
|
|
|
|
$this->assertEquals(array('size' => 10), $this->cache->get($file1));
|
2012-09-22 17:43:10 +04:00
|
|
|
|
|
2012-09-26 19:52:02 +04:00
|
|
|
|
$this->cache->put($file1, array('mtime' => 15));
|
2013-01-27 00:41:14 +04:00
|
|
|
|
$this->assertEquals(array('size' => 10, 'mtime' => 15), $this->cache->get($file1));
|
2012-09-22 17:43:10 +04:00
|
|
|
|
|
2012-09-26 19:52:02 +04:00
|
|
|
|
$this->cache->put($file1, array('size' => 12));
|
2013-01-27 00:41:14 +04:00
|
|
|
|
$this->assertEquals(array('size' => 12, 'mtime' => 15), $this->cache->get($file1));
|
2012-09-22 17:43:10 +04:00
|
|
|
|
}
|
|
|
|
|
|
2014-08-07 16:39:07 +04:00
|
|
|
|
/**
|
|
|
|
|
* @dataProvider folderDataProvider
|
|
|
|
|
*/
|
|
|
|
|
public function testFolder($folder) {
|
|
|
|
|
$file2 = $folder.'/bar';
|
|
|
|
|
$file3 = $folder.'/foo';
|
2012-10-27 20:05:40 +04:00
|
|
|
|
$data1 = array('size' => 100, 'mtime' => 50, 'mimetype' => 'httpd/unix-directory');
|
2012-09-23 17:25:03 +04:00
|
|
|
|
$fileData = array();
|
|
|
|
|
$fileData['bar'] = array('size' => 1000, 'mtime' => 20, 'mimetype' => 'foo/file');
|
|
|
|
|
$fileData['foo'] = array('size' => 20, 'mtime' => 25, 'mimetype' => 'foo/file');
|
|
|
|
|
|
2014-08-07 16:39:07 +04:00
|
|
|
|
$this->cache->put($folder, $data1);
|
2012-09-26 19:52:02 +04:00
|
|
|
|
$this->cache->put($file2, $fileData['bar']);
|
|
|
|
|
$this->cache->put($file3, $fileData['foo']);
|
2012-09-23 17:25:03 +04:00
|
|
|
|
|
2014-08-07 16:39:07 +04:00
|
|
|
|
$content = $this->cache->getFolderContents($folder);
|
2013-01-27 00:41:14 +04:00
|
|
|
|
$this->assertEquals(count($content), 2);
|
2012-09-23 17:25:03 +04:00
|
|
|
|
foreach ($content as $cachedData) {
|
|
|
|
|
$data = $fileData[$cachedData['name']];
|
|
|
|
|
foreach ($data as $name => $value) {
|
2013-01-27 00:41:14 +04:00
|
|
|
|
$this->assertEquals($value, $cachedData[$name]);
|
2012-09-23 17:25:03 +04:00
|
|
|
|
}
|
|
|
|
|
}
|
2012-10-27 19:02:05 +04:00
|
|
|
|
|
2014-08-07 16:39:07 +04:00
|
|
|
|
$file4 = $folder.'/unkownSize';
|
2012-10-27 19:02:05 +04:00
|
|
|
|
$fileData['unkownSize'] = array('size' => -1, 'mtime' => 25, 'mimetype' => 'foo/file');
|
|
|
|
|
$this->cache->put($file4, $fileData['unkownSize']);
|
|
|
|
|
|
2014-08-07 16:39:07 +04:00
|
|
|
|
$this->assertEquals(-1, $this->cache->calculateFolderSize($folder));
|
2012-10-27 19:02:05 +04:00
|
|
|
|
|
|
|
|
|
$fileData['unkownSize'] = array('size' => 5, 'mtime' => 25, 'mimetype' => 'foo/file');
|
|
|
|
|
$this->cache->put($file4, $fileData['unkownSize']);
|
|
|
|
|
|
2014-08-07 16:39:07 +04:00
|
|
|
|
$this->assertEquals(1025, $this->cache->calculateFolderSize($folder));
|
2012-10-27 20:05:40 +04:00
|
|
|
|
|
2013-07-29 18:23:14 +04:00
|
|
|
|
$this->cache->remove($file2);
|
|
|
|
|
$this->cache->remove($file3);
|
|
|
|
|
$this->cache->remove($file4);
|
2014-08-07 16:39:07 +04:00
|
|
|
|
$this->assertEquals(0, $this->cache->calculateFolderSize($folder));
|
|
|
|
|
|
|
|
|
|
$this->cache->remove($folder);
|
|
|
|
|
$this->assertFalse($this->cache->inCache($folder.'/foo'));
|
|
|
|
|
$this->assertFalse($this->cache->inCache($folder.'/bar'));
|
|
|
|
|
}
|
2013-07-29 18:23:14 +04:00
|
|
|
|
|
2015-01-15 20:46:42 +03:00
|
|
|
|
public function testRemoveRecursive() {
|
|
|
|
|
$folderData = array('size' => 100, 'mtime' => 50, 'mimetype' => 'httpd/unix-directory');
|
|
|
|
|
$fileData = array('size' => 1000, 'mtime' => 20, 'mimetype' => 'text/plain');
|
|
|
|
|
$folders = ['folder', 'folder/subfolder', 'folder/sub2', 'folder/sub2/sub3'];
|
|
|
|
|
$files = ['folder/foo.txt', 'folder/bar.txt', 'folder/subfolder/asd.txt', 'folder/sub2/qwerty.txt', 'folder/sub2/sub3/foo.txt'];
|
|
|
|
|
|
|
|
|
|
foreach($folders as $folder){
|
|
|
|
|
$this->cache->put($folder, $folderData);
|
|
|
|
|
}
|
|
|
|
|
foreach ($files as $file) {
|
|
|
|
|
$this->cache->put($file, $fileData);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$this->cache->remove('folder');
|
|
|
|
|
foreach ($files as $file) {
|
|
|
|
|
$this->assertFalse($this->cache->inCache($file));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-07 16:39:07 +04:00
|
|
|
|
public function folderDataProvider() {
|
|
|
|
|
|
|
|
|
|
return array(
|
|
|
|
|
array('folder'),
|
|
|
|
|
// that was too easy, try something harder
|
|
|
|
|
array('☺, WHITE SMILING FACE, UTF-8 hex E298BA'),
|
|
|
|
|
// what about 4 byte utf-8
|
|
|
|
|
array('😐, NEUTRAL_FACE, UTF-8 hex F09F9890'),
|
|
|
|
|
// now the crazy stuff
|
|
|
|
|
array(', UNASSIGNED PRIVATE USE, UTF-8 hex EF9890'),
|
2014-09-08 17:26:41 +04:00
|
|
|
|
// and my favorite
|
|
|
|
|
array('w͢͢͝h͡o͢͡ ̸͢k̵͟n̴͘ǫw̸̛s͘ ̀́w͘͢ḩ̵a҉̡͢t ̧̕h́o̵r͏̵rors̡ ̶͡͠lį̶e͟͟ ̶͝in͢ ͏t̕h̷̡͟e ͟͟d̛a͜r̕͡k̢̨ ͡h̴e͏a̷̢̡rt́͏ ̴̷͠ò̵̶f̸ u̧͘ní̛͜c͢͏o̷͏d̸͢e̡͝')
|
2014-08-07 16:39:07 +04:00
|
|
|
|
);
|
2012-09-23 17:25:03 +04:00
|
|
|
|
}
|
|
|
|
|
|
2014-01-09 20:27:55 +04:00
|
|
|
|
public function testEncryptedFolder() {
|
|
|
|
|
$file1 = 'folder';
|
|
|
|
|
$file2 = 'folder/bar';
|
|
|
|
|
$file3 = 'folder/foo';
|
|
|
|
|
$data1 = array('size' => 100, 'mtime' => 50, 'mimetype' => 'httpd/unix-directory');
|
|
|
|
|
$fileData = array();
|
|
|
|
|
$fileData['bar'] = array('size' => 1000, 'unencrypted_size' => 900, 'encrypted' => 1, 'mtime' => 20, 'mimetype' => 'foo/file');
|
|
|
|
|
$fileData['foo'] = array('size' => 20, 'unencrypted_size' => 16, 'encrypted' => 1, 'mtime' => 25, 'mimetype' => 'foo/file');
|
|
|
|
|
|
|
|
|
|
$this->cache->put($file1, $data1);
|
|
|
|
|
$this->cache->put($file2, $fileData['bar']);
|
|
|
|
|
$this->cache->put($file3, $fileData['foo']);
|
|
|
|
|
|
|
|
|
|
$content = $this->cache->getFolderContents($file1);
|
|
|
|
|
$this->assertEquals(count($content), 2);
|
|
|
|
|
foreach ($content as $cachedData) {
|
|
|
|
|
$data = $fileData[$cachedData['name']];
|
|
|
|
|
// indirect retrieval swaps unencrypted_size and size
|
|
|
|
|
$this->assertEquals($data['unencrypted_size'], $cachedData['size']);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$file4 = 'folder/unkownSize';
|
|
|
|
|
$fileData['unkownSize'] = array('size' => -1, 'mtime' => 25, 'mimetype' => 'foo/file');
|
|
|
|
|
$this->cache->put($file4, $fileData['unkownSize']);
|
|
|
|
|
|
|
|
|
|
$this->assertEquals(-1, $this->cache->calculateFolderSize($file1));
|
|
|
|
|
|
|
|
|
|
$fileData['unkownSize'] = array('size' => 5, 'mtime' => 25, 'mimetype' => 'foo/file');
|
|
|
|
|
$this->cache->put($file4, $fileData['unkownSize']);
|
|
|
|
|
|
|
|
|
|
$this->assertEquals(916, $this->cache->calculateFolderSize($file1));
|
|
|
|
|
// direct cache entry retrieval returns the original values
|
2014-01-17 15:29:21 +04:00
|
|
|
|
$entry = $this->cache->get($file1);
|
|
|
|
|
$this->assertEquals(1025, $entry['size']);
|
|
|
|
|
$this->assertEquals(916, $entry['unencrypted_size']);
|
2014-01-09 20:27:55 +04:00
|
|
|
|
|
|
|
|
|
$this->cache->remove($file2);
|
|
|
|
|
$this->cache->remove($file3);
|
|
|
|
|
$this->cache->remove($file4);
|
|
|
|
|
$this->assertEquals(0, $this->cache->calculateFolderSize($file1));
|
|
|
|
|
|
|
|
|
|
$this->cache->remove('folder');
|
|
|
|
|
$this->assertFalse($this->cache->inCache('folder/foo'));
|
|
|
|
|
$this->assertFalse($this->cache->inCache('folder/bar'));
|
|
|
|
|
}
|
|
|
|
|
|
2013-11-08 15:57:28 +04:00
|
|
|
|
public function testRootFolderSizeForNonHomeStorage() {
|
|
|
|
|
$dir1 = 'knownsize';
|
|
|
|
|
$dir2 = 'unknownsize';
|
|
|
|
|
$fileData = array();
|
|
|
|
|
$fileData[''] = array('size' => -1, 'mtime' => 20, 'mimetype' => 'httpd/unix-directory');
|
|
|
|
|
$fileData[$dir1] = array('size' => 1000, 'mtime' => 20, 'mimetype' => 'httpd/unix-directory');
|
|
|
|
|
$fileData[$dir2] = array('size' => -1, 'mtime' => 25, 'mimetype' => 'httpd/unix-directory');
|
|
|
|
|
|
|
|
|
|
$this->cache->put('', $fileData['']);
|
|
|
|
|
$this->cache->put($dir1, $fileData[$dir1]);
|
|
|
|
|
$this->cache->put($dir2, $fileData[$dir2]);
|
|
|
|
|
|
|
|
|
|
$this->assertTrue($this->cache->inCache($dir1));
|
|
|
|
|
$this->assertTrue($this->cache->inCache($dir2));
|
|
|
|
|
|
|
|
|
|
// check that root size ignored the unknown sizes
|
|
|
|
|
$this->assertEquals(-1, $this->cache->calculateFolderSize(''));
|
|
|
|
|
|
|
|
|
|
// clean up
|
|
|
|
|
$this->cache->remove('');
|
|
|
|
|
$this->cache->remove($dir1);
|
|
|
|
|
$this->cache->remove($dir2);
|
|
|
|
|
|
|
|
|
|
$this->assertFalse($this->cache->inCache($dir1));
|
|
|
|
|
$this->assertFalse($this->cache->inCache($dir2));
|
|
|
|
|
}
|
|
|
|
|
|
2012-10-08 16:58:21 +04:00
|
|
|
|
function testStatus() {
|
|
|
|
|
$this->assertEquals(\OC\Files\Cache\Cache::NOT_FOUND, $this->cache->getStatus('foo'));
|
|
|
|
|
$this->cache->put('foo', array('size' => -1));
|
|
|
|
|
$this->assertEquals(\OC\Files\Cache\Cache::PARTIAL, $this->cache->getStatus('foo'));
|
|
|
|
|
$this->cache->put('foo', array('size' => -1, 'mtime' => 20, 'mimetype' => 'foo/file'));
|
|
|
|
|
$this->assertEquals(\OC\Files\Cache\Cache::SHALLOW, $this->cache->getStatus('foo'));
|
|
|
|
|
$this->cache->put('foo', array('size' => 10));
|
|
|
|
|
$this->assertEquals(\OC\Files\Cache\Cache::COMPLETE, $this->cache->getStatus('foo'));
|
|
|
|
|
}
|
|
|
|
|
|
2012-10-26 15:23:15 +04:00
|
|
|
|
function testSearch() {
|
|
|
|
|
$file1 = 'folder';
|
|
|
|
|
$file2 = 'folder/foobar';
|
|
|
|
|
$file3 = 'folder/foo';
|
|
|
|
|
$data1 = array('size' => 100, 'mtime' => 50, 'mimetype' => 'foo/folder');
|
|
|
|
|
$fileData = array();
|
|
|
|
|
$fileData['foobar'] = array('size' => 1000, 'mtime' => 20, 'mimetype' => 'foo/file');
|
|
|
|
|
$fileData['foo'] = array('size' => 20, 'mtime' => 25, 'mimetype' => 'foo/file');
|
|
|
|
|
|
|
|
|
|
$this->cache->put($file1, $data1);
|
|
|
|
|
$this->cache->put($file2, $fileData['foobar']);
|
|
|
|
|
$this->cache->put($file3, $fileData['foo']);
|
|
|
|
|
|
|
|
|
|
$this->assertEquals(2, count($this->cache->search('%foo%')));
|
|
|
|
|
$this->assertEquals(1, count($this->cache->search('foo')));
|
|
|
|
|
$this->assertEquals(1, count($this->cache->search('%folder%')));
|
|
|
|
|
$this->assertEquals(1, count($this->cache->search('folder%')));
|
|
|
|
|
$this->assertEquals(3, count($this->cache->search('%')));
|
2012-10-27 12:34:25 +04:00
|
|
|
|
|
2014-07-03 21:01:00 +04:00
|
|
|
|
// case insensitive search should match the same files
|
|
|
|
|
$this->assertEquals(2, count($this->cache->search('%Foo%')));
|
|
|
|
|
$this->assertEquals(1, count($this->cache->search('Foo')));
|
|
|
|
|
$this->assertEquals(1, count($this->cache->search('%Folder%')));
|
|
|
|
|
$this->assertEquals(1, count($this->cache->search('Folder%')));
|
|
|
|
|
|
2012-10-27 12:34:25 +04:00
|
|
|
|
$this->assertEquals(3, count($this->cache->searchByMime('foo')));
|
|
|
|
|
$this->assertEquals(2, count($this->cache->searchByMime('foo/file')));
|
2012-10-26 15:23:15 +04:00
|
|
|
|
}
|
|
|
|
|
|
2014-12-04 16:01:15 +03:00
|
|
|
|
function testSearchByTag() {
|
|
|
|
|
$userId = $this->getUniqueId('user');
|
|
|
|
|
\OC_User::createUser($userId, $userId);
|
|
|
|
|
$this->loginAsUser($userId);
|
|
|
|
|
$user = new \OC\User\User($userId, null);
|
|
|
|
|
|
|
|
|
|
$file1 = 'folder';
|
|
|
|
|
$file2 = 'folder/foobar';
|
|
|
|
|
$file3 = 'folder/foo';
|
|
|
|
|
$file4 = 'folder/foo2';
|
|
|
|
|
$file5 = 'folder/foo3';
|
|
|
|
|
$data1 = array('size' => 100, 'mtime' => 50, 'mimetype' => 'foo/folder');
|
|
|
|
|
$fileData = array();
|
|
|
|
|
$fileData['foobar'] = array('size' => 1000, 'mtime' => 20, 'mimetype' => 'foo/file');
|
|
|
|
|
$fileData['foo'] = array('size' => 20, 'mtime' => 25, 'mimetype' => 'foo/file');
|
|
|
|
|
$fileData['foo2'] = array('size' => 25, 'mtime' => 28, 'mimetype' => 'foo/file');
|
|
|
|
|
$fileData['foo3'] = array('size' => 88, 'mtime' => 34, 'mimetype' => 'foo/file');
|
|
|
|
|
|
|
|
|
|
$id1 = $this->cache->put($file1, $data1);
|
|
|
|
|
$id2 = $this->cache->put($file2, $fileData['foobar']);
|
|
|
|
|
$id3 = $this->cache->put($file3, $fileData['foo']);
|
|
|
|
|
$id4 = $this->cache->put($file4, $fileData['foo2']);
|
|
|
|
|
$id5 = $this->cache->put($file5, $fileData['foo3']);
|
|
|
|
|
|
|
|
|
|
$tagManager = \OC::$server->getTagManager()->load('files', null, null, $userId);
|
|
|
|
|
$this->assertTrue($tagManager->tagAs($id1, 'tag1'));
|
|
|
|
|
$this->assertTrue($tagManager->tagAs($id1, 'tag2'));
|
|
|
|
|
$this->assertTrue($tagManager->tagAs($id2, 'tag2'));
|
|
|
|
|
$this->assertTrue($tagManager->tagAs($id3, 'tag1'));
|
|
|
|
|
$this->assertTrue($tagManager->tagAs($id4, 'tag2'));
|
|
|
|
|
|
|
|
|
|
// use tag name
|
|
|
|
|
$results = $this->cache->searchByTag('tag1', $userId);
|
|
|
|
|
|
|
|
|
|
$this->assertEquals(2, count($results));
|
|
|
|
|
|
2014-12-15 13:32:32 +03:00
|
|
|
|
usort($results, function($value1, $value2) { return $value1['name'] >= $value2['name']; });
|
|
|
|
|
|
2014-12-04 16:01:15 +03:00
|
|
|
|
$this->assertEquals('folder', $results[0]['name']);
|
|
|
|
|
$this->assertEquals('foo', $results[1]['name']);
|
|
|
|
|
|
|
|
|
|
// use tag id
|
|
|
|
|
$tags = $tagManager->getTagsForUser($userId);
|
|
|
|
|
$this->assertNotEmpty($tags);
|
|
|
|
|
$tags = array_filter($tags, function($tag) { return $tag->getName() === 'tag2'; });
|
|
|
|
|
$results = $this->cache->searchByTag(current($tags)->getId(), $userId);
|
|
|
|
|
$this->assertEquals(3, count($results));
|
|
|
|
|
|
2014-12-15 13:32:32 +03:00
|
|
|
|
usort($results, function($value1, $value2) { return $value1['name'] >= $value2['name']; });
|
|
|
|
|
|
2014-12-04 16:01:15 +03:00
|
|
|
|
$this->assertEquals('folder', $results[0]['name']);
|
2014-12-15 13:32:32 +03:00
|
|
|
|
$this->assertEquals('foo2', $results[1]['name']);
|
|
|
|
|
$this->assertEquals('foobar', $results[2]['name']);
|
2014-12-04 16:01:15 +03:00
|
|
|
|
|
|
|
|
|
$tagManager->delete('tag1');
|
|
|
|
|
$tagManager->delete('tag2');
|
|
|
|
|
|
|
|
|
|
$this->logout();
|
|
|
|
|
\OC_User::deleteUser($userId);
|
|
|
|
|
}
|
|
|
|
|
|
2012-11-03 01:25:33 +04:00
|
|
|
|
function testMove() {
|
|
|
|
|
$file1 = 'folder';
|
|
|
|
|
$file2 = 'folder/bar';
|
|
|
|
|
$file3 = 'folder/foo';
|
|
|
|
|
$file4 = 'folder/foo/1';
|
|
|
|
|
$file5 = 'folder/foo/2';
|
|
|
|
|
$data = array('size' => 100, 'mtime' => 50, 'mimetype' => 'foo/bar');
|
2013-04-19 17:03:59 +04:00
|
|
|
|
$folderData = array('size' => 100, 'mtime' => 50, 'mimetype' => 'httpd/unix-directory');
|
2012-11-03 01:25:33 +04:00
|
|
|
|
|
2013-04-19 17:03:59 +04:00
|
|
|
|
$this->cache->put($file1, $folderData);
|
|
|
|
|
$this->cache->put($file2, $folderData);
|
|
|
|
|
$this->cache->put($file3, $folderData);
|
2012-11-03 01:25:33 +04:00
|
|
|
|
$this->cache->put($file4, $data);
|
|
|
|
|
$this->cache->put($file5, $data);
|
|
|
|
|
|
2013-05-16 19:47:41 +04:00
|
|
|
|
/* simulate a second user with a different storage id but the same folder structure */
|
|
|
|
|
$this->cache2->put($file1, $folderData);
|
|
|
|
|
$this->cache2->put($file2, $folderData);
|
|
|
|
|
$this->cache2->put($file3, $folderData);
|
|
|
|
|
$this->cache2->put($file4, $data);
|
|
|
|
|
$this->cache2->put($file5, $data);
|
|
|
|
|
|
2012-11-03 01:25:33 +04:00
|
|
|
|
$this->cache->move('folder/foo', 'folder/foobar');
|
|
|
|
|
|
|
|
|
|
$this->assertFalse($this->cache->inCache('folder/foo'));
|
|
|
|
|
$this->assertFalse($this->cache->inCache('folder/foo/1'));
|
|
|
|
|
$this->assertFalse($this->cache->inCache('folder/foo/2'));
|
|
|
|
|
|
|
|
|
|
$this->assertTrue($this->cache->inCache('folder/bar'));
|
|
|
|
|
$this->assertTrue($this->cache->inCache('folder/foobar'));
|
|
|
|
|
$this->assertTrue($this->cache->inCache('folder/foobar/1'));
|
|
|
|
|
$this->assertTrue($this->cache->inCache('folder/foobar/2'));
|
2013-05-16 19:47:41 +04:00
|
|
|
|
|
|
|
|
|
/* the folder structure of the second user must not change! */
|
|
|
|
|
$this->assertTrue($this->cache2->inCache('folder/bar'));
|
|
|
|
|
$this->assertTrue($this->cache2->inCache('folder/foo'));
|
|
|
|
|
$this->assertTrue($this->cache2->inCache('folder/foo/1'));
|
|
|
|
|
$this->assertTrue($this->cache2->inCache('folder/foo/2'));
|
|
|
|
|
|
|
|
|
|
$this->assertFalse($this->cache2->inCache('folder/foobar'));
|
|
|
|
|
$this->assertFalse($this->cache2->inCache('folder/foobar/1'));
|
|
|
|
|
$this->assertFalse($this->cache2->inCache('folder/foobar/2'));
|
2012-11-03 01:25:33 +04:00
|
|
|
|
}
|
|
|
|
|
|
2012-11-22 02:02:43 +04:00
|
|
|
|
function testGetIncomplete() {
|
|
|
|
|
$file1 = 'folder1';
|
|
|
|
|
$file2 = 'folder2';
|
|
|
|
|
$file3 = 'folder3';
|
|
|
|
|
$file4 = 'folder4';
|
|
|
|
|
$data = array('size' => 10, 'mtime' => 50, 'mimetype' => 'foo/bar');
|
|
|
|
|
|
|
|
|
|
$this->cache->put($file1, $data);
|
|
|
|
|
$data['size'] = -1;
|
|
|
|
|
$this->cache->put($file2, $data);
|
|
|
|
|
$this->cache->put($file3, $data);
|
|
|
|
|
$data['size'] = 12;
|
|
|
|
|
$this->cache->put($file4, $data);
|
|
|
|
|
|
|
|
|
|
$this->assertEquals($file3, $this->cache->getIncomplete());
|
|
|
|
|
}
|
|
|
|
|
|
2012-12-11 04:06:21 +04:00
|
|
|
|
function testNonExisting() {
|
|
|
|
|
$this->assertFalse($this->cache->get('foo.txt'));
|
|
|
|
|
$this->assertEquals(array(), $this->cache->getFolderContents('foo'));
|
|
|
|
|
}
|
|
|
|
|
|
2013-01-27 02:59:29 +04:00
|
|
|
|
function testGetById() {
|
|
|
|
|
$storageId = $this->storage->getId();
|
|
|
|
|
$data = array('size' => 1000, 'mtime' => 20, 'mimetype' => 'foo/file');
|
|
|
|
|
$id = $this->cache->put('foo', $data);
|
2014-09-18 00:24:43 +04:00
|
|
|
|
|
|
|
|
|
if (strlen($storageId) > 64) {
|
|
|
|
|
$storageId = md5($storageId);
|
|
|
|
|
}
|
2013-01-27 02:59:29 +04:00
|
|
|
|
$this->assertEquals(array($storageId, 'foo'), \OC\Files\Cache\Cache::getById($id));
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-10 15:27:35 +04:00
|
|
|
|
function testStorageMTime() {
|
|
|
|
|
$data = array('size' => 1000, 'mtime' => 20, 'mimetype' => 'foo/file');
|
|
|
|
|
$this->cache->put('foo', $data);
|
|
|
|
|
$cachedData = $this->cache->get('foo');
|
2013-11-08 15:57:28 +04:00
|
|
|
|
$this->assertEquals($data['mtime'], $cachedData['storage_mtime']); //if no storage_mtime is saved, mtime should be used
|
2013-02-10 15:27:35 +04:00
|
|
|
|
|
2013-11-08 15:57:28 +04:00
|
|
|
|
$this->cache->put('foo', array('storage_mtime' => 30)); //when setting storage_mtime, mtime is also set
|
2013-02-10 15:27:35 +04:00
|
|
|
|
$cachedData = $this->cache->get('foo');
|
|
|
|
|
$this->assertEquals(30, $cachedData['storage_mtime']);
|
|
|
|
|
$this->assertEquals(30, $cachedData['mtime']);
|
|
|
|
|
|
2013-11-08 15:57:28 +04:00
|
|
|
|
$this->cache->put('foo', array('mtime' => 25)); //setting mtime does not change storage_mtime
|
2013-02-10 15:27:35 +04:00
|
|
|
|
$cachedData = $this->cache->get('foo');
|
|
|
|
|
$this->assertEquals(30, $cachedData['storage_mtime']);
|
|
|
|
|
$this->assertEquals(25, $cachedData['mtime']);
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-16 00:49:40 +04:00
|
|
|
|
function testLongId() {
|
|
|
|
|
$storage = new LongId(array());
|
|
|
|
|
$cache = $storage->getCache();
|
|
|
|
|
$storageId = $storage->getId();
|
|
|
|
|
$data = array('size' => 1000, 'mtime' => 20, 'mimetype' => 'foo/file');
|
|
|
|
|
$id = $cache->put('foo', $data);
|
|
|
|
|
$this->assertEquals(array(md5($storageId), 'foo'), \OC\Files\Cache\Cache::getById($id));
|
|
|
|
|
}
|
|
|
|
|
|
2013-05-23 22:29:46 +04:00
|
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
|
* this test show the bug resulting if we have no normalizer installed
|
2013-05-23 22:29:46 +04:00
|
|
|
|
*/
|
|
|
|
|
public function testWithoutNormalizer() {
|
2013-05-25 22:36:51 +04:00
|
|
|
|
// folder name "Schön" with U+00F6 (normalized)
|
2013-05-23 22:29:46 +04:00
|
|
|
|
$folderWith00F6 = "\x53\x63\x68\xc3\xb6\x6e";
|
|
|
|
|
|
2013-05-25 22:36:51 +04:00
|
|
|
|
// folder name "Schön" with U+0308 (un-normalized)
|
2013-05-23 22:29:46 +04:00
|
|
|
|
$folderWith0308 = "\x53\x63\x68\x6f\xcc\x88\x6e";
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @var \OC\Files\Cache\Cache | PHPUnit_Framework_MockObject_MockObject $cacheMock
|
|
|
|
|
*/
|
|
|
|
|
$cacheMock = $this->getMock('\OC\Files\Cache\Cache', array('normalize'), array($this->storage), '', true);
|
|
|
|
|
|
|
|
|
|
$cacheMock->expects($this->any())
|
|
|
|
|
->method('normalize')
|
|
|
|
|
->will($this->returnArgument(0));
|
|
|
|
|
|
|
|
|
|
$data = array('size' => 100, 'mtime' => 50, 'mimetype' => 'httpd/unix-directory');
|
|
|
|
|
|
2013-05-25 22:36:51 +04:00
|
|
|
|
// put root folder
|
2013-05-23 22:29:46 +04:00
|
|
|
|
$this->assertFalse($cacheMock->get('folder'));
|
|
|
|
|
$this->assertGreaterThan(0, $cacheMock->put('folder', $data));
|
|
|
|
|
|
2013-05-25 22:36:51 +04:00
|
|
|
|
// put un-normalized folder
|
2013-11-08 15:57:28 +04:00
|
|
|
|
$this->assertFalse($cacheMock->get('folder/' . $folderWith0308));
|
|
|
|
|
$this->assertGreaterThan(0, $cacheMock->put('folder/' . $folderWith0308, $data));
|
2013-05-23 22:29:46 +04:00
|
|
|
|
|
2013-05-25 22:36:51 +04:00
|
|
|
|
// get un-normalized folder by name
|
2013-11-08 15:57:28 +04:00
|
|
|
|
$unNormalizedFolderName = $cacheMock->get('folder/' . $folderWith0308);
|
2013-05-25 22:36:51 +04:00
|
|
|
|
|
|
|
|
|
// check if database layer normalized the folder name (this should not happen)
|
|
|
|
|
$this->assertEquals($folderWith0308, $unNormalizedFolderName['name']);
|
|
|
|
|
|
|
|
|
|
// put normalized folder
|
|
|
|
|
$this->assertFalse($cacheMock->get('folder/' . $folderWith00F6));
|
2013-11-08 15:57:28 +04:00
|
|
|
|
$this->assertGreaterThan(0, $cacheMock->put('folder/' . $folderWith00F6, $data));
|
2013-05-25 22:36:51 +04:00
|
|
|
|
|
2013-05-23 22:29:46 +04:00
|
|
|
|
// this is our bug, we have two different hashes with the same name (Schön)
|
|
|
|
|
$this->assertEquals(2, count($cacheMock->getFolderContents('folder')));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
|
* this test shows that there is no bug if we use the normalizer
|
2013-05-23 22:29:46 +04:00
|
|
|
|
*/
|
|
|
|
|
public function testWithNormalizer() {
|
|
|
|
|
|
2013-11-08 15:57:28 +04:00
|
|
|
|
if (!class_exists('Patchwork\PHP\Shim\Normalizer')) {
|
2013-05-24 22:37:11 +04:00
|
|
|
|
$this->markTestSkipped('The 3rdparty Normalizer extension is not available.');
|
2013-05-23 22:29:46 +04:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2013-05-25 22:36:51 +04:00
|
|
|
|
// folder name "Schön" with U+00F6 (normalized)
|
2013-05-23 22:29:46 +04:00
|
|
|
|
$folderWith00F6 = "\x53\x63\x68\xc3\xb6\x6e";
|
|
|
|
|
|
2013-05-25 22:36:51 +04:00
|
|
|
|
// folder name "Schön" with U+0308 (un-normalized)
|
2013-05-23 22:29:46 +04:00
|
|
|
|
$folderWith0308 = "\x53\x63\x68\x6f\xcc\x88\x6e";
|
|
|
|
|
|
|
|
|
|
$data = array('size' => 100, 'mtime' => 50, 'mimetype' => 'httpd/unix-directory');
|
|
|
|
|
|
2013-05-25 22:36:51 +04:00
|
|
|
|
// put root folder
|
2013-05-23 22:29:46 +04:00
|
|
|
|
$this->assertFalse($this->cache->get('folder'));
|
|
|
|
|
$this->assertGreaterThan(0, $this->cache->put('folder', $data));
|
|
|
|
|
|
2013-05-25 22:36:51 +04:00
|
|
|
|
// put un-normalized folder
|
2013-11-08 15:57:28 +04:00
|
|
|
|
$this->assertFalse($this->cache->get('folder/' . $folderWith0308));
|
|
|
|
|
$this->assertGreaterThan(0, $this->cache->put('folder/' . $folderWith0308, $data));
|
2013-05-23 22:29:46 +04:00
|
|
|
|
|
2013-05-25 22:36:51 +04:00
|
|
|
|
// get un-normalized folder by name
|
2013-11-08 15:57:28 +04:00
|
|
|
|
$unNormalizedFolderName = $this->cache->get('folder/' . $folderWith0308);
|
2013-05-25 22:36:51 +04:00
|
|
|
|
|
|
|
|
|
// check if folder name was normalized
|
|
|
|
|
$this->assertEquals($folderWith00F6, $unNormalizedFolderName['name']);
|
|
|
|
|
|
|
|
|
|
// put normalized folder
|
|
|
|
|
$this->assertTrue(is_array($this->cache->get('folder/' . $folderWith00F6)));
|
2013-11-08 15:57:28 +04:00
|
|
|
|
$this->assertGreaterThan(0, $this->cache->put('folder/' . $folderWith00F6, $data));
|
2013-05-25 22:36:51 +04:00
|
|
|
|
|
2013-05-23 22:29:46 +04:00
|
|
|
|
// at this point we should have only one folder named "Schön"
|
|
|
|
|
$this->assertEquals(1, count($this->cache->getFolderContents('folder')));
|
|
|
|
|
}
|
|
|
|
|
|
2015-01-08 21:43:02 +03:00
|
|
|
|
function bogusPathNamesProvider() {
|
|
|
|
|
return array(
|
|
|
|
|
array('/bogus.txt', 'bogus.txt'),
|
|
|
|
|
array('//bogus.txt', 'bogus.txt'),
|
|
|
|
|
array('bogus/', 'bogus'),
|
|
|
|
|
array('bogus//', 'bogus'),
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Test bogus paths with leading or doubled slashes
|
|
|
|
|
*
|
|
|
|
|
* @dataProvider bogusPathNamesProvider
|
|
|
|
|
*/
|
|
|
|
|
public function testBogusPaths($bogusPath, $fixedBogusPath) {
|
|
|
|
|
$data = array('size' => 100, 'mtime' => 50, 'mimetype' => 'httpd/unix-directory');
|
|
|
|
|
|
|
|
|
|
// put root folder
|
|
|
|
|
$this->assertFalse($this->cache->get(''));
|
|
|
|
|
$parentId = $this->cache->put('', $data);
|
|
|
|
|
$this->assertGreaterThan(0, $parentId);
|
|
|
|
|
|
|
|
|
|
$this->assertGreaterThan(0, $this->cache->put($bogusPath, $data));
|
|
|
|
|
|
|
|
|
|
$newData = $this->cache->get($fixedBogusPath);
|
|
|
|
|
$this->assertNotFalse($newData);
|
|
|
|
|
|
|
|
|
|
$this->assertEquals($fixedBogusPath, $newData['path']);
|
|
|
|
|
// parent is the correct one, resolved properly (they used to not be)
|
|
|
|
|
$this->assertEquals($parentId, $newData['parent']);
|
|
|
|
|
|
|
|
|
|
$newDataFromBogus = $this->cache->get($bogusPath);
|
|
|
|
|
// same entry
|
|
|
|
|
$this->assertEquals($newData, $newDataFromBogus);
|
|
|
|
|
}
|
|
|
|
|
|
2014-11-07 17:23:15 +03:00
|
|
|
|
protected function tearDown() {
|
2013-06-24 14:59:56 +04:00
|
|
|
|
if ($this->cache) {
|
|
|
|
|
$this->cache->clear();
|
|
|
|
|
}
|
2014-11-07 17:23:15 +03:00
|
|
|
|
|
|
|
|
|
parent::tearDown();
|
2012-09-22 17:43:10 +04:00
|
|
|
|
}
|
|
|
|
|
|
2014-11-07 17:23:15 +03:00
|
|
|
|
protected function setUp() {
|
|
|
|
|
parent::setUp();
|
|
|
|
|
|
2012-09-22 17:43:10 +04:00
|
|
|
|
$this->storage = new \OC\Files\Storage\Temporary(array());
|
2013-05-16 19:47:41 +04:00
|
|
|
|
$this->storage2 = new \OC\Files\Storage\Temporary(array());
|
2012-09-26 19:52:02 +04:00
|
|
|
|
$this->cache = new \OC\Files\Cache\Cache($this->storage);
|
2013-05-16 19:47:41 +04:00
|
|
|
|
$this->cache2 = new \OC\Files\Cache\Cache($this->storage2);
|
2012-09-22 17:43:10 +04:00
|
|
|
|
}
|
|
|
|
|
}
|