summaryrefslogtreecommitdiffstats
path: root/apps/files/tests/Controller/ViewControllerTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'apps/files/tests/Controller/ViewControllerTest.php')
-rw-r--r--apps/files/tests/Controller/ViewControllerTest.php22
1 files changed, 19 insertions, 3 deletions
diff --git a/apps/files/tests/Controller/ViewControllerTest.php b/apps/files/tests/Controller/ViewControllerTest.php
index eae627fd6a4..8f077645808 100644
--- a/apps/files/tests/Controller/ViewControllerTest.php
+++ b/apps/files/tests/Controller/ViewControllerTest.php
@@ -29,6 +29,7 @@
namespace OCA\Files\Tests\Controller;
+use OCA\Files\Activity\Helper;
use OCA\Files\Controller\ViewController;
use OCP\AppFramework\Http;
use OCP\Files\File;
@@ -71,6 +72,8 @@ class ViewControllerTest extends TestCase {
private $appManager;
/** @var IRootFolder|\PHPUnit_Framework_MockObject_MockObject */
private $rootFolder;
+ /** @var Helper|\PHPUnit_Framework_MockObject_MockObject */
+ private $activityHelper;
public function setUp() {
parent::setUp();
@@ -89,6 +92,7 @@ class ViewControllerTest extends TestCase {
->method('getUser')
->will($this->returnValue($this->user));
$this->rootFolder = $this->getMockBuilder('\OCP\Files\IRootFolder')->getMock();
+ $this->activityHelper = $this->createMock(Helper::class);
$this->viewController = $this->getMockBuilder('\OCA\Files\Controller\ViewController')
->setConstructorArgs([
'files',
@@ -99,7 +103,8 @@ class ViewControllerTest extends TestCase {
$this->eventDispatcher,
$this->userSession,
$this->appManager,
- $this->rootFolder
+ $this->rootFolder,
+ $this->activityHelper,
])
->setMethods([
'getStorageInfo',
@@ -120,7 +125,7 @@ class ViewControllerTest extends TestCase {
'owner' => 'MyName',
'ownerDisplayName' => 'MyDisplayName',
]));
- $this->config->expects($this->exactly(3))
+ $this->config
->method('getUserValue')
->will($this->returnValueMap([
[$this->user->getUID(), 'files', 'file_sorting', 'name', 'name'],
@@ -138,7 +143,7 @@ class ViewControllerTest extends TestCase {
$nav->assign('usage', '123 B');
$nav->assign('quota', 100);
$nav->assign('total_space', '100 B');
- $nav->assign('webdavurl', '');
+ //$nav->assign('webdavurl', '');
$nav->assign('navigationItems', [
[
'id' => 'files',
@@ -172,6 +177,9 @@ class ViewControllerTest extends TestCase {
'icon' => '',
'type' => 'link',
'classes' => '',
+ 'sublist' => [],
+ 'defaultExpandedState' => false,
+ 'enableMenuButton' => 0,
],
[
'id' => 'sharingin',
@@ -299,6 +307,14 @@ class ViewControllerTest extends TestCase {
$policy = new Http\ContentSecurityPolicy();
$policy->addAllowedFrameDomain('\'self\'');
$expected->setContentSecurityPolicy($policy);
+
+ $this->activityHelper->method('getFavoriteFilePaths')
+ ->with($this->user->getUID())
+ ->willReturn([
+ 'item' => [],
+ 'folders' => [],
+ ]);
+
$this->assertEquals($expected, $this->viewController->index('MyDir', 'MyView'));
}