nextcloud/tests/lib/files/cache/updater.php

250 lines
7.3 KiB
PHP
Raw Normal View History

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;
2014-08-04 16:46:48 +04:00
use OC\Files\Filesystem;
use OC\Files\Storage\Temporary;
2014-08-04 16:46:48 +04:00
use OC\Files\View;
2012-11-09 00:12:40 +04:00
class Updater extends \Test\TestCase {
2012-11-09 00:12:40 +04:00
/**
2014-08-04 16:46:48 +04:00
* @var \OC\Files\Storage\Storage
2012-11-09 00:12:40 +04:00
*/
2014-08-04 16:46:48 +04:00
protected $storage;
2012-11-09 00:12:40 +04:00
/**
2014-08-04 16:46:48 +04:00
* @var \OC\Files\Cache\Cache
2012-11-09 00:12:40 +04:00
*/
2014-08-04 16:46:48 +04:00
protected $cache;
2012-11-09 00:12:40 +04:00
/**
2014-08-04 16:46:48 +04:00
* @var \OC\Files\View
2012-11-09 00:12:40 +04:00
*/
2014-08-04 16:46:48 +04:00
protected $view;
2012-11-09 00:12:40 +04:00
2014-08-04 16:46:48 +04:00
/**
* @var \OC\Files\Cache\Updater
*/
protected $updater;
2012-11-09 00:12:40 +04:00
protected function setUp() {
parent::setUp();
$this->loginAsUser();
2014-08-04 16:46:48 +04:00
$this->storage = new Temporary(array());
Filesystem::mount($this->storage, array(), '/');
$this->view = new View('');
$this->updater = new \OC\Files\Cache\Updater($this->view);
2012-11-09 00:12:40 +04:00
$this->cache = $this->storage->getCache();
2014-08-04 16:46:48 +04:00
}
2012-11-09 00:12:40 +04:00
protected function tearDown() {
Filesystem::clearMounts();
$this->logout();
parent::tearDown();
}
2014-08-04 16:46:48 +04:00
public function testNewFile() {
$this->storage->file_put_contents('foo.txt', 'bar');
$this->assertFalse($this->cache->inCache('foo.txt'));
2014-08-04 16:46:48 +04:00
$this->updater->update('/foo.txt');
2014-08-04 16:46:48 +04:00
$this->assertTrue($this->cache->inCache('foo.txt'));
$cached = $this->cache->get('foo.txt');
$this->assertEquals(3, $cached['size']);
$this->assertEquals('text/plain', $cached['mimetype']);
}
2012-11-09 00:12:40 +04:00
2014-08-04 16:46:48 +04:00
public function testUpdatedFile() {
$this->view->file_put_contents('/foo.txt', 'bar');
$cached = $this->cache->get('foo.txt');
$this->assertEquals(3, $cached['size']);
$this->assertEquals('text/plain', $cached['mimetype']);
2012-11-09 00:12:40 +04:00
2014-08-04 16:46:48 +04:00
$this->storage->file_put_contents('foo.txt', 'qwerty');
2012-11-09 00:12:40 +04:00
2014-08-04 16:46:48 +04:00
$cached = $this->cache->get('foo.txt');
$this->assertEquals(3, $cached['size']);
2012-11-09 00:12:40 +04:00
2014-08-04 16:46:48 +04:00
$this->updater->update('/foo.txt');
2012-11-09 00:12:40 +04:00
2014-08-04 16:46:48 +04:00
$cached = $this->cache->get('foo.txt');
$this->assertEquals(6, $cached['size']);
2012-11-09 00:12:40 +04:00
}
2014-08-04 16:46:48 +04:00
public function testParentSize() {
$this->storage->getScanner()->scan('');
2014-08-04 16:46:48 +04:00
$parentCached = $this->cache->get('');
$this->assertEquals(0, $parentCached['size']);
2012-11-09 00:12:40 +04:00
2014-08-04 16:46:48 +04:00
$this->storage->file_put_contents('foo.txt', 'bar');
$parentCached = $this->cache->get('');
$this->assertEquals(0, $parentCached['size']);
$this->updater->update('foo.txt');
2012-11-09 00:12:40 +04:00
2014-08-04 16:46:48 +04:00
$parentCached = $this->cache->get('');
$this->assertEquals(3, $parentCached['size']);
$this->storage->file_put_contents('foo.txt', 'qwerty');
$parentCached = $this->cache->get('');
$this->assertEquals(3, $parentCached['size']);
$this->updater->update('foo.txt');
$parentCached = $this->cache->get('');
$this->assertEquals(6, $parentCached['size']);
$this->storage->unlink('foo.txt');
$parentCached = $this->cache->get('');
$this->assertEquals(6, $parentCached['size']);
$this->updater->remove('foo.txt');
$parentCached = $this->cache->get('');
$this->assertEquals(0, $parentCached['size']);
}
2014-08-04 16:46:48 +04:00
public function testMove() {
$this->storage->file_put_contents('foo.txt', 'qwerty');
$this->updater->update('foo.txt');
2012-11-09 00:12:40 +04:00
$this->assertTrue($this->cache->inCache('foo.txt'));
$this->assertFalse($this->cache->inCache('bar.txt'));
2014-08-04 16:46:48 +04:00
$cached = $this->cache->get('foo.txt');
2014-08-04 16:46:48 +04:00
$this->storage->rename('foo.txt', 'bar.txt');
2014-08-04 16:46:48 +04:00
$this->assertTrue($this->cache->inCache('foo.txt'));
$this->assertFalse($this->cache->inCache('bar.txt'));
2014-08-04 16:46:48 +04:00
$this->updater->rename('foo.txt', 'bar.txt');
2014-08-04 16:46:48 +04:00
$this->assertFalse($this->cache->inCache('foo.txt'));
$this->assertTrue($this->cache->inCache('bar.txt'));
2014-08-04 16:46:48 +04:00
$cachedTarget = $this->cache->get('bar.txt');
$this->assertEquals($cached['etag'], $cachedTarget['etag']);
$this->assertEquals($cached['mtime'], $cachedTarget['mtime']);
$this->assertEquals($cached['size'], $cachedTarget['size']);
$this->assertEquals($cached['fileid'], $cachedTarget['fileid']);
}
2015-02-27 17:49:17 +03:00
public function testNewFileDisabled() {
$this->storage->file_put_contents('foo.txt', 'bar');
$this->assertFalse($this->cache->inCache('foo.txt'));
$this->updater->disable();
$this->updater->update('/foo.txt');
$this->assertFalse($this->cache->inCache('foo.txt'));
}
public function testMoveDisabled() {
$this->storage->file_put_contents('foo.txt', 'qwerty');
$this->updater->update('foo.txt');
$this->assertTrue($this->cache->inCache('foo.txt'));
$this->assertFalse($this->cache->inCache('bar.txt'));
$cached = $this->cache->get('foo.txt');
$this->storage->rename('foo.txt', 'bar.txt');
$this->assertTrue($this->cache->inCache('foo.txt'));
$this->assertFalse($this->cache->inCache('bar.txt'));
$this->updater->disable();
$this->updater->rename('foo.txt', 'bar.txt');
$this->assertTrue($this->cache->inCache('foo.txt'));
$this->assertFalse($this->cache->inCache('bar.txt'));
}
public function testMoveCrossStorage() {
$storage2 = new Temporary(array());
$cache2 = $storage2->getCache();
Filesystem::mount($storage2, array(), '/bar');
$this->storage->file_put_contents('foo.txt', 'qwerty');
$this->updater->update('foo.txt');
$this->assertTrue($this->cache->inCache('foo.txt'));
$this->assertFalse($cache2->inCache('bar.txt'));
$cached = $this->cache->get('foo.txt');
// "rename"
$storage2->file_put_contents('bar.txt', 'qwerty');
$this->storage->unlink('foo.txt');
$this->assertTrue($this->cache->inCache('foo.txt'));
$this->assertFalse($cache2->inCache('bar.txt'));
$this->updater->rename('foo.txt', 'bar/bar.txt');
$this->assertFalse($this->cache->inCache('foo.txt'));
$this->assertTrue($cache2->inCache('bar.txt'));
$cachedTarget = $cache2->get('bar.txt');
$this->assertEquals($cached['mtime'], $cachedTarget['mtime']);
$this->assertEquals($cached['size'], $cachedTarget['size']);
$this->assertEquals($cached['etag'], $cachedTarget['etag']);
$this->assertEquals($cached['fileid'], $cachedTarget['fileid']);
}
public function testMoveFolderCrossStorage() {
$storage2 = new Temporary(array());
$cache2 = $storage2->getCache();
Filesystem::mount($storage2, array(), '/bar');
$this->storage->mkdir('foo');
$this->storage->mkdir('foo/bar');
$this->storage->file_put_contents('foo/foo.txt', 'qwerty');
$this->storage->file_put_contents('foo/bar.txt', 'foo');
$this->storage->file_put_contents('foo/bar/bar.txt', 'qwertyuiop');
$this->storage->getScanner()->scan('');
$this->assertTrue($this->cache->inCache('foo/foo.txt'));
$this->assertTrue($this->cache->inCache('foo/bar.txt'));
$this->assertTrue($this->cache->inCache('foo/bar/bar.txt'));
$cached = [];
$cached[] = $this->cache->get('foo/foo.txt');
$cached[] = $this->cache->get('foo/bar.txt');
$cached[] = $this->cache->get('foo/bar/bar.txt');
$this->view->rename('/foo', '/bar/foo');
$this->assertFalse($this->cache->inCache('foo/foo.txt'));
$this->assertFalse($this->cache->inCache('foo/bar.txt'));
$this->assertFalse($this->cache->inCache('foo/bar/bar.txt'));
$this->assertTrue($cache2->inCache('foo/foo.txt'));
$this->assertTrue($cache2->inCache('foo/bar.txt'));
$this->assertTrue($cache2->inCache('foo/bar/bar.txt'));
$cachedTarget = [];
$cachedTarget[] = $cache2->get('foo/foo.txt');
$cachedTarget[] = $cache2->get('foo/bar.txt');
$cachedTarget[] = $cache2->get('foo/bar/bar.txt');
foreach ($cached as $i => $old) {
$new = $cachedTarget[$i];
$this->assertEquals($old['mtime'], $new['mtime']);
$this->assertEquals($old['size'], $new['size']);
$this->assertEquals($old['etag'], $new['etag']);
$this->assertEquals($old['fileid'], $new['fileid']);
}
}
2012-11-09 00:12:40 +04:00
}