]> source.dussan.org Git - nextcloud-server.git/commitdiff
use loginHelper from base class
authorBjoern Schiessle <schiessle@owncloud.com>
Thu, 2 Apr 2015 09:08:02 +0000 (11:08 +0200)
committerThomas Müller <thomas.mueller@tmit.eu>
Tue, 7 Apr 2015 11:30:30 +0000 (13:30 +0200)
apps/files_sharing/tests/propagation.php

index 25bf0864b6b91111a8e2c8cba15e989b8de142a4..546f67556f2c34b8f441e2fd9bff2edeccf3730a 100644 (file)
  *
  */
 
-namespace OCA\Files_sharing\Tests;
+namespace OCA\Files_Sharing\Tests;
 
 use OC\Files\View;
 
 class Propagation extends TestCase {
 
        public function testSizePropagationWhenOwnerChangesFile() {
-               $this->loginAsUser(self::TEST_FILES_SHARING_API_USER1);
+               $this->loginHelper(self::TEST_FILES_SHARING_API_USER1);
                $recipientView = new View('/' . self::TEST_FILES_SHARING_API_USER1 . '/files');
 
-               $this->loginAsUser(self::TEST_FILES_SHARING_API_USER2);
+               $this->loginHelper(self::TEST_FILES_SHARING_API_USER2);
                $ownerView = new View('/' . self::TEST_FILES_SHARING_API_USER2 . '/files');
                $ownerView->mkdir('/sharedfolder/subfolder');
                $ownerView->file_put_contents('/sharedfolder/subfolder/foo.txt', 'bar');
@@ -38,30 +38,30 @@ class Propagation extends TestCase {
                \OCP\Share::shareItem('folder', $sharedFolderInfo->getId(), \OCP\Share::SHARE_TYPE_USER, self::TEST_FILES_SHARING_API_USER1, 31);
                $ownerRootInfo = $ownerView->getFileInfo('', false);
 
-               $this->loginAsUser(self::TEST_FILES_SHARING_API_USER1);
+               $this->loginHelper(self::TEST_FILES_SHARING_API_USER1);
                $this->assertTrue($recipientView->file_exists('/sharedfolder/subfolder/foo.txt'));
                $recipientRootInfo = $recipientView->getFileInfo('', false);
 
                // when file changed as owner
-               $this->loginAsUser(self::TEST_FILES_SHARING_API_USER2);
+               $this->loginHelper(self::TEST_FILES_SHARING_API_USER2);
                $ownerView->file_put_contents('/sharedfolder/subfolder/foo.txt', 'foobar');
 
                // size of recipient's root stays the same
-               $this->loginAsUser(self::TEST_FILES_SHARING_API_USER1);
+               $this->loginHelper(self::TEST_FILES_SHARING_API_USER1);
                $newRecipientRootInfo = $recipientView->getFileInfo('', false);
                $this->assertEquals($recipientRootInfo->getSize(), $newRecipientRootInfo->getSize());
 
                // size of owner's root increases
-               $this->loginAsUser(self::TEST_FILES_SHARING_API_USER2);
+               $this->loginHelper(self::TEST_FILES_SHARING_API_USER2);
                $newOwnerRootInfo = $ownerView->getFileInfo('', false);
                $this->assertEquals($ownerRootInfo->getSize() + 3, $newOwnerRootInfo->getSize());
        }
 
        public function testSizePropagationWhenRecipientChangesFile() {
-               $this->loginAsUser(self::TEST_FILES_SHARING_API_USER1);
+               $this->loginHelper(self::TEST_FILES_SHARING_API_USER1);
                $recipientView = new View('/' . self::TEST_FILES_SHARING_API_USER1 . '/files');
 
-               $this->loginAsUser(self::TEST_FILES_SHARING_API_USER2);
+               $this->loginHelper(self::TEST_FILES_SHARING_API_USER2);
                $ownerView = new View('/' . self::TEST_FILES_SHARING_API_USER2 . '/files');
                $ownerView->mkdir('/sharedfolder/subfolder');
                $ownerView->file_put_contents('/sharedfolder/subfolder/foo.txt', 'bar');
@@ -70,7 +70,7 @@ class Propagation extends TestCase {
                \OCP\Share::shareItem('folder', $sharedFolderInfo->getId(), \OCP\Share::SHARE_TYPE_USER, self::TEST_FILES_SHARING_API_USER1, 31);
                $ownerRootInfo = $ownerView->getFileInfo('', false);
 
-               $this->loginAsUser(self::TEST_FILES_SHARING_API_USER1);
+               $this->loginHelper(self::TEST_FILES_SHARING_API_USER1);
                $this->assertTrue($recipientView->file_exists('/sharedfolder/subfolder/foo.txt'));
                $recipientRootInfo = $recipientView->getFileInfo('', false);
 
@@ -82,7 +82,7 @@ class Propagation extends TestCase {
                $this->assertEquals($recipientRootInfo->getSize(), $newRecipientRootInfo->getSize());
 
                // size of owner's root increases
-               $this->loginAsUser(self::TEST_FILES_SHARING_API_USER2);
+               $this->loginHelper(self::TEST_FILES_SHARING_API_USER2);
                $newOwnerRootInfo = $ownerView->getFileInfo('', false);
                $this->assertEquals($ownerRootInfo->getSize() + 3, $newOwnerRootInfo->getSize());
        }