2012-11-09 00:12:40 +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;
|
|
|
|
|
|
|
|
use \OC\Files\Filesystem as Filesystem;
|
|
|
|
|
|
|
|
class Updater extends \PHPUnit_Framework_TestCase {
|
|
|
|
/**
|
|
|
|
* @var \OC\Files\Storage\Storage $storage
|
|
|
|
*/
|
|
|
|
private $storage;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var \OC\Files\Cache\Scanner $scanner
|
|
|
|
*/
|
|
|
|
private $scanner;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var \OC\Files\Cache\Cache $cache
|
|
|
|
*/
|
|
|
|
private $cache;
|
|
|
|
|
|
|
|
private static $user;
|
|
|
|
|
|
|
|
public function setUp() {
|
|
|
|
$this->storage = new \OC\Files\Storage\Temporary(array());
|
|
|
|
$textData = "dummy file data\n";
|
|
|
|
$imgData = file_get_contents(\OC::$SERVERROOT . '/core/img/logo.png');
|
|
|
|
$this->storage->mkdir('folder');
|
|
|
|
$this->storage->file_put_contents('foo.txt', $textData);
|
|
|
|
$this->storage->file_put_contents('foo.png', $imgData);
|
|
|
|
$this->storage->file_put_contents('folder/bar.txt', $textData);
|
|
|
|
$this->storage->file_put_contents('folder/bar2.txt', $textData);
|
|
|
|
|
|
|
|
$this->scanner = $this->storage->getScanner();
|
|
|
|
$this->scanner->scan('');
|
|
|
|
$this->cache = $this->storage->getCache();
|
|
|
|
|
2013-04-25 18:56:48 +04:00
|
|
|
\OC\Files\Filesystem::tearDown();
|
2012-11-09 00:12:40 +04:00
|
|
|
if (!self::$user) {
|
2013-04-25 18:56:48 +04:00
|
|
|
self::$user = uniqid();
|
2012-11-09 00:12:40 +04:00
|
|
|
}
|
2013-04-25 18:56:48 +04:00
|
|
|
\OC\Files\Filesystem::init(self::$user, '/' . self::$user . '/files');
|
2012-11-09 00:12:40 +04:00
|
|
|
|
|
|
|
Filesystem::clearMounts();
|
|
|
|
Filesystem::mount($this->storage, array(), '/' . self::$user . '/files');
|
|
|
|
|
2013-03-08 22:08:07 +04:00
|
|
|
\OC_Hook::clear('OC_Filesystem');
|
|
|
|
|
2012-11-09 00:12:40 +04:00
|
|
|
\OC_Hook::connect('OC_Filesystem', 'post_write', '\OC\Files\Cache\Updater', 'writeHook');
|
|
|
|
\OC_Hook::connect('OC_Filesystem', 'post_delete', '\OC\Files\Cache\Updater', 'deleteHook');
|
|
|
|
\OC_Hook::connect('OC_Filesystem', 'post_rename', '\OC\Files\Cache\Updater', 'renameHook');
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public function tearDown() {
|
2013-01-31 02:15:28 +04:00
|
|
|
if ($this->cache) {
|
2012-11-22 16:14:39 +04:00
|
|
|
$this->cache->clear();
|
|
|
|
}
|
2012-11-09 00:12:40 +04:00
|
|
|
Filesystem::tearDown();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testWrite() {
|
|
|
|
$textSize = strlen("dummy file data\n");
|
|
|
|
$imageSize = filesize(\OC::$SERVERROOT . '/core/img/logo.png');
|
2013-01-01 03:16:44 +04:00
|
|
|
$rootCachedData = $this->cache->get('');
|
|
|
|
$this->assertEquals(3 * $textSize + $imageSize, $rootCachedData['size']);
|
2012-11-09 00:12:40 +04:00
|
|
|
|
2013-01-01 03:16:44 +04:00
|
|
|
$fooCachedData = $this->cache->get('foo.txt');
|
2012-11-09 00:12:40 +04:00
|
|
|
Filesystem::file_put_contents('foo.txt', 'asd');
|
|
|
|
$cachedData = $this->cache->get('foo.txt');
|
|
|
|
$this->assertEquals(3, $cachedData['size']);
|
2013-01-01 03:16:44 +04:00
|
|
|
$this->assertNotEquals($fooCachedData['etag'], $cachedData['etag']);
|
2013-01-22 09:43:43 +04:00
|
|
|
$mtime = $cachedData['mtime'];
|
2012-11-09 00:12:40 +04:00
|
|
|
$cachedData = $this->cache->get('');
|
|
|
|
$this->assertEquals(2 * $textSize + $imageSize + 3, $cachedData['size']);
|
2013-01-01 03:16:44 +04:00
|
|
|
$this->assertNotEquals($rootCachedData['etag'], $cachedData['etag']);
|
2013-01-31 02:15:28 +04:00
|
|
|
$this->assertGreaterThanOrEqual($rootCachedData['mtime'], $mtime);
|
2013-01-01 03:16:44 +04:00
|
|
|
$rootCachedData = $cachedData;
|
2012-11-09 00:12:40 +04:00
|
|
|
|
|
|
|
$this->assertFalse($this->cache->inCache('bar.txt'));
|
|
|
|
Filesystem::file_put_contents('bar.txt', 'asd');
|
|
|
|
$this->assertTrue($this->cache->inCache('bar.txt'));
|
|
|
|
$cachedData = $this->cache->get('bar.txt');
|
|
|
|
$this->assertEquals(3, $cachedData['size']);
|
2013-01-22 09:43:43 +04:00
|
|
|
$mtime = $cachedData['mtime'];
|
2012-11-09 00:12:40 +04:00
|
|
|
$cachedData = $this->cache->get('');
|
|
|
|
$this->assertEquals(2 * $textSize + $imageSize + 2 * 3, $cachedData['size']);
|
2013-01-01 03:16:44 +04:00
|
|
|
$this->assertNotEquals($rootCachedData['etag'], $cachedData['etag']);
|
2013-01-31 02:15:28 +04:00
|
|
|
$this->assertGreaterThanOrEqual($rootCachedData['mtime'], $mtime);
|
2012-11-09 00:12:40 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testDelete() {
|
|
|
|
$textSize = strlen("dummy file data\n");
|
|
|
|
$imageSize = filesize(\OC::$SERVERROOT . '/core/img/logo.png');
|
2013-01-01 03:16:44 +04:00
|
|
|
$rootCachedData = $this->cache->get('');
|
|
|
|
$this->assertEquals(3 * $textSize + $imageSize, $rootCachedData['size']);
|
2012-11-09 00:12:40 +04:00
|
|
|
|
|
|
|
$this->assertTrue($this->cache->inCache('foo.txt'));
|
|
|
|
Filesystem::unlink('foo.txt', 'asd');
|
|
|
|
$this->assertFalse($this->cache->inCache('foo.txt'));
|
|
|
|
$cachedData = $this->cache->get('');
|
|
|
|
$this->assertEquals(2 * $textSize + $imageSize, $cachedData['size']);
|
2013-01-01 03:16:44 +04:00
|
|
|
$this->assertNotEquals($rootCachedData['etag'], $cachedData['etag']);
|
2013-01-22 09:43:43 +04:00
|
|
|
$this->assertGreaterThanOrEqual($rootCachedData['mtime'], $cachedData['mtime']);
|
2013-01-01 03:16:44 +04:00
|
|
|
$rootCachedData = $cachedData;
|
2012-12-11 04:25:21 +04:00
|
|
|
|
|
|
|
Filesystem::mkdir('bar_folder');
|
|
|
|
$this->assertTrue($this->cache->inCache('bar_folder'));
|
2013-01-01 03:16:44 +04:00
|
|
|
$cachedData = $this->cache->get('');
|
|
|
|
$this->assertNotEquals($rootCachedData['etag'], $cachedData['etag']);
|
|
|
|
$rootCachedData = $cachedData;
|
2012-12-11 04:25:21 +04:00
|
|
|
Filesystem::rmdir('bar_folder');
|
|
|
|
$this->assertFalse($this->cache->inCache('bar_folder'));
|
2013-01-01 03:16:44 +04:00
|
|
|
$cachedData = $this->cache->get('');
|
|
|
|
$this->assertNotEquals($rootCachedData['etag'], $cachedData['etag']);
|
2013-01-22 09:43:43 +04:00
|
|
|
$this->assertGreaterThanOrEqual($rootCachedData['mtime'], $cachedData['mtime']);
|
2012-11-09 00:12:40 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testRename() {
|
|
|
|
$textSize = strlen("dummy file data\n");
|
|
|
|
$imageSize = filesize(\OC::$SERVERROOT . '/core/img/logo.png');
|
2013-01-01 03:16:44 +04:00
|
|
|
$rootCachedData = $this->cache->get('');
|
|
|
|
$this->assertEquals(3 * $textSize + $imageSize, $rootCachedData['size']);
|
2012-11-09 00:12:40 +04:00
|
|
|
|
|
|
|
$this->assertTrue($this->cache->inCache('foo.txt'));
|
2013-01-01 03:16:44 +04:00
|
|
|
$fooCachedData = $this->cache->get('foo.txt');
|
2012-11-09 00:12:40 +04:00
|
|
|
$this->assertFalse($this->cache->inCache('bar.txt'));
|
|
|
|
Filesystem::rename('foo.txt', 'bar.txt');
|
|
|
|
$this->assertFalse($this->cache->inCache('foo.txt'));
|
|
|
|
$this->assertTrue($this->cache->inCache('bar.txt'));
|
2013-01-22 19:36:03 +04:00
|
|
|
$cachedData = $this->cache->get('bar.txt');
|
2013-03-08 22:08:07 +04:00
|
|
|
$this->assertEquals($fooCachedData['fileid'], $cachedData['fileid']);
|
2013-01-22 09:43:43 +04:00
|
|
|
$mtime = $cachedData['mtime'];
|
2012-11-09 00:12:40 +04:00
|
|
|
$cachedData = $this->cache->get('');
|
|
|
|
$this->assertEquals(3 * $textSize + $imageSize, $cachedData['size']);
|
2013-01-01 03:16:44 +04:00
|
|
|
$this->assertNotEquals($rootCachedData['etag'], $cachedData['etag']);
|
2012-11-09 00:12:40 +04:00
|
|
|
}
|
|
|
|
}
|