summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2013-09-13 21:44:31 +0200
committerThomas Müller <thomas.mueller@tmit.eu>2013-09-13 21:44:31 +0200
commit6eeb4d165c5a0eb0c49375aa4141c59d6a63f164 (patch)
treeab368d619ab7614a8a9d7fb0d89f5b613be659bc /tests
parent58ed78aa9eb3c6b7986c7eb84668bdb5e65c0b13 (diff)
downloadnextcloud-server-6eeb4d165c5a0eb0c49375aa4141c59d6a63f164.tar.gz
nextcloud-server-6eeb4d165c5a0eb0c49375aa4141c59d6a63f164.zip
- giving the user a new id for each test run in order to prevent reuse of e.g. permissions data in the database
- setting the current user id because \OC\FilesView relies on \OC_User::getUser()
Diffstat (limited to 'tests')
-rw-r--r--tests/lib/files/node/integration.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/lib/files/node/integration.php b/tests/lib/files/node/integration.php
index bc439c1aa0b..14e1d05853d 100644
--- a/tests/lib/files/node/integration.php
+++ b/tests/lib/files/node/integration.php
@@ -45,7 +45,8 @@ class IntegrationTests extends \PHPUnit_Framework_TestCase {
\OC_Hook::connect('OC_Filesystem', 'post_rename', '\OC\Files\Cache\Updater', 'renameHook');
\OC_Hook::connect('OC_Filesystem', 'post_touch', '\OC\Files\Cache\Updater', 'touchHook');
- $user = new User('', new \OC_User_Dummy);
+ $user = new User(uniqid('user'), new \OC_User_Dummy);
+ \OC_User::setUserId($user->getUID());
$this->view = new View();
$this->root = new Root($manager, $this->view, $user);
$storage = new Temporary(array());