aboutsummaryrefslogtreecommitdiffstats
path: root/tests/lib/files/filesystem.php
diff options
context:
space:
mode:
authorVincent Petry <pvince81@owncloud.com>2015-04-08 12:03:55 +0200
committerVincent Petry <pvince81@owncloud.com>2015-04-08 12:45:38 +0200
commitf8cfc03f36e438f1874e9840ce69811112e15475 (patch)
tree4b09a8e57c2c1492ee023e2adf9efa2a9acc709e /tests/lib/files/filesystem.php
parent6c327f8331617652ef0b268d51edc6a23624e33c (diff)
downloadnextcloud-server-f8cfc03f36e438f1874e9840ce69811112e15475.tar.gz
nextcloud-server-f8cfc03f36e438f1874e9840ce69811112e15475.zip
Replace originalStorage in tests with a proper teardown
The purpose of $originalStorage in unit tests was to remount the old root. However that storage itself is already wrapped by storage wrapper, so remounting it would rewrap the storage several times. This fix makes use of "loginAsUser()" and "logout()" from the TestCase class to properly initialize and cleanup the FS as expected.
Diffstat (limited to 'tests/lib/files/filesystem.php')
-rw-r--r--tests/lib/files/filesystem.php12
1 files changed, 2 insertions, 10 deletions
diff --git a/tests/lib/files/filesystem.php b/tests/lib/files/filesystem.php
index 7bf59315d77..98e96e0cc78 100644
--- a/tests/lib/files/filesystem.php
+++ b/tests/lib/files/filesystem.php
@@ -28,9 +28,6 @@ class Filesystem extends \Test\TestCase {
*/
private $tmpDirs = array();
- /** @var \OC\Files\Storage\Storage */
- private $originalStorage;
-
/**
* @return array
*/
@@ -42,20 +39,15 @@ class Filesystem extends \Test\TestCase {
protected function setUp() {
parent::setUp();
-
- $this->originalStorage = \OC\Files\Filesystem::getStorage('/');
- \OC_User::setUserId('');
- \OC\Files\Filesystem::clearMounts();
+ $this->loginAsUser();
}
protected function tearDown() {
foreach ($this->tmpDirs as $dir) {
\OC_Helper::rmdirr($dir);
}
- \OC\Files\Filesystem::clearMounts();
- \OC\Files\Filesystem::mount($this->originalStorage, array(), '/');
- \OC_User::setUserId('');
+ $this->logout();
parent::tearDown();
}