Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorRobin Appelman <icewind@owncloud.com>2013-12-05 18:23:34 +0400
committerVincent Petry <pvince81@owncloud.com>2013-12-08 03:15:50 +0400
commit605fa4a444cf2de5deee22e6e298e095eab4c20a (patch)
tree037a251357572519e7305b078610fb21f5d30333 /tests
parentb6ecff93e1b1e79205d30fc471e9d56997861596 (diff)
reuse etags when doing a background scan
Diffstat (limited to 'tests')
-rw-r--r--tests/lib/files/etagtest.php79
1 files changed, 79 insertions, 0 deletions
diff --git a/tests/lib/files/etagtest.php b/tests/lib/files/etagtest.php
new file mode 100644
index 00000000000..b50a96ab5bb
--- /dev/null
+++ b/tests/lib/files/etagtest.php
@@ -0,0 +1,79 @@
+<?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;
+
+use OC\Files\Filesystem;
+use OCP\Share;
+
+class EtagTest extends \PHPUnit_Framework_TestCase {
+ private $datadir;
+
+ private $tmpDir;
+
+ private $uid;
+
+ /**
+ * @var \OC_User_Dummy $userBackend
+ */
+ private $userBackend;
+
+ public function setUp() {
+ \OC_Hook::clear('OC_Filesystem', 'setup');
+ \OCP\Util::connectHook('OC_Filesystem', 'setup', '\OC\Files\Storage\Shared', 'setup');
+ \OCP\Share::registerBackend('file', 'OC_Share_Backend_File');
+ \OCP\Share::registerBackend('folder', 'OC_Share_Backend_Folder', 'file');
+
+ $this->datadir = \OC_Config::getValue('datadirectory');
+ $this->tmpDir = \OC_Helper::tmpFolder();
+ \OC_Config::setValue('datadirectory', $this->tmpDir);
+ $this->uid = \OC_User::getUser();
+ \OC_User::setUserId(null);
+
+ $this->userBackend = new \OC_User_Dummy();
+ \OC_User::useBackend($this->userBackend);
+ \OC_Util::tearDownFS();
+ }
+
+ public function tearDown() {
+ \OC_Config::setValue('datadirectory', $this->datadir);
+ \OC_User::setUserId($this->uid);
+ \OC_Util::setupFS($this->uid);
+ }
+
+ public function testWithSharing() {
+ $user1 = uniqid('user_');
+ $this->userBackend->createUser($user1, '');
+
+ \OC_Util::tearDownFS();
+ \OC_User::setUserId($user1);
+ \OC_Util::setupFS($user1);
+ Filesystem::mkdir('/folder');
+ Filesystem::mkdir('/folder/subfolder');
+ Filesystem::file_put_contents('/foo.txt', 'asd');
+ Filesystem::file_put_contents('/folder/bar.txt', 'fgh');
+ Filesystem::file_put_contents('/folder/subfolder/qwerty.txt', 'jkl');
+
+ $files = array('/folder', '/foo.txt', '/folder/bar.txt', '/folder/subfolder', '/folder/subfolder/qwerty.txt');
+ $originalEtags = $this->getEtags($files);
+
+ $scanner = new \OC\Files\Utils\Scanner($user1);
+ $scanner->backgroundScan('/');
+
+ $this->assertEquals($originalEtags, $this->getEtags($files));
+ }
+
+ private function getEtags($files) {
+ $etags = array();
+ foreach ($files as $file) {
+ $info = Filesystem::getFileInfo($file);
+ $etags[$file] = $info['etag'];
+ }
+ return $etags;
+ }
+}