123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226 |
- <?php
- /**
- * @copyright Copyright (c) 2017 Joas Schilling <coding@schilljs.com>
- *
- * @author Joas Schilling <coding@schilljs.com>
- * @author Roeland Jago Douma <roeland@famdouma.nl>
- *
- * @license GNU AGPL version 3 or any later version
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as
- * published by the Free Software Foundation, either version 3 of the
- * License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- */
- namespace OCA\Files\Tests\Activity;
- use OCA\Files\Activity\Provider;
- use OCP\Activity\IEvent;
- use OCP\Activity\IEventMerger;
- use OCP\Activity\IManager;
- use OCP\Contacts\IManager as IContactsManager;
- use OCP\Federation\ICloudId;
- use OCP\Federation\ICloudIdManager;
- use OCP\Files\IRootFolder;
- use OCP\IURLGenerator;
- use OCP\IUserManager;
- use OCP\L10N\IFactory;
- use PHPUnit\Framework\MockObject\MockObject;
- use Test\TestCase;
- /**
- * Class ProviderTest
- *
- * @package OCA\Files\Tests\Activity
- */
- class ProviderTest extends TestCase {
- /** @var IFactory|MockObject */
- protected $l10nFactory;
- /** @var IURLGenerator|MockObject */
- protected $url;
- /** @var IManager|MockObject */
- protected $activityManager;
- /** @var IUserManager|MockObject */
- protected $userManager;
- /** @var IRootFolder|MockObject */
- protected $rootFolder;
- /** @var ICloudIdManager|MockObject */
- protected $cloudIdManager;
- /** @var IContactsManager|MockObject */
- protected $contactsManager;
- /** @var IEventMerger|MockObject */
- protected $eventMerger;
- protected function setUp(): void {
- parent::setUp();
- $this->l10nFactory = $this->createMock(IFactory::class);
- $this->url = $this->createMock(IURLGenerator::class);
- $this->activityManager = $this->createMock(IManager::class);
- $this->userManager = $this->createMock(IUserManager::class);
- $this->rootFolder = $this->createMock(IRootFolder::class);
- $this->cloudIdManager = $this->createMock(ICloudIdManager::class);
- $this->contactsManager = $this->createMock(IContactsManager::class);
- $this->eventMerger = $this->createMock(IEventMerger::class);
- }
- /**
- * @param string[] $methods
- * @return Provider|MockObject
- */
- protected function getProvider(array $methods = []) {
- if (!empty($methods)) {
- return $this->getMockBuilder(Provider::class)
- ->setConstructorArgs([
- $this->l10nFactory,
- $this->url,
- $this->activityManager,
- $this->userManager,
- $this->rootFolder,
- $this->cloudIdManager,
- $this->contactsManager,
- $this->eventMerger,
- ])
- ->setMethods($methods)
- ->getMock();
- }
- return new Provider(
- $this->l10nFactory,
- $this->url,
- $this->activityManager,
- $this->userManager,
- $this->rootFolder,
- $this->cloudIdManager,
- $this->contactsManager,
- $this->eventMerger
- );
- }
- public function dataGetFile() {
- return [
- [[42 => '/FortyTwo.txt'], null, '42', 'FortyTwo.txt', 'FortyTwo.txt'],
- [['23' => '/Twenty/Three.txt'], null, '23', 'Three.txt', 'Twenty/Three.txt'],
- ['/Foo/Bar.txt', 128, 128, 'Bar.txt', 'Foo/Bar.txt'], // Legacy from ownCloud 8.2 and before
- ];
- }
- /**
- * @dataProvider dataGetFile
- * @param mixed $parameter
- * @param mixed $eventId
- * @param int $id
- * @param string $name
- * @param string $path
- */
- public function testGetFile($parameter, $eventId, $id, $name, $path) {
- $provider = $this->getProvider();
- if ($eventId !== null) {
- $event = $this->createMock(IEvent::class);
- $event->expects($this->once())
- ->method('getObjectId')
- ->willReturn($eventId);
- } else {
- $event = null;
- }
- $this->url->expects($this->once())
- ->method('linkToRouteAbsolute')
- ->with('files.viewcontroller.showFile', ['fileid' => $id])
- ->willReturn('link-' . $id);
- $result = self::invokePrivate($provider, 'getFile', [$parameter, $event]);
- $this->assertSame('file', $result['type']);
- $this->assertSame($id, $result['id']);
- $this->assertSame($name, $result['name']);
- $this->assertSame($path, $result['path']);
- $this->assertSame('link-' . $id, $result['link']);
- }
- public function testGetFileThrows() {
- $this->expectException(\InvalidArgumentException::class);
- $provider = $this->getProvider();
- self::invokePrivate($provider, 'getFile', ['/Foo/Bar.txt', null]);
- }
- public function dataGetUser() {
- return [
- ['test', 'Test user', null, ['type' => 'user', 'id' => 'test', 'name' => 'Test user']],
- ['test@http://localhost', null, ['user' => 'test', 'displayId' => 'test@localhost', 'remote' => 'localhost', 'name' => null], ['type' => 'user', 'id' => 'test', 'name' => 'test@localhost', 'server' => 'localhost']],
- ['test@http://localhost', null, ['user' => 'test', 'displayId' => 'test@localhost', 'remote' => 'localhost', 'name' => 'Remote user'], ['type' => 'user', 'id' => 'test', 'name' => 'Remote user (test@localhost)', 'server' => 'localhost']],
- ['test', null, null, ['type' => 'user', 'id' => 'test', 'name' => 'test']],
- ];
- }
- /**
- * @dataProvider dataGetUser
- * @param string $uid
- * @param string|null $userDisplayName
- * @param array|null $cloudIdData
- * @param array $expected
- */
- public function testGetUser(string $uid, ?string $userDisplayName, ?array $cloudIdData, array $expected): void {
- $provider = $this->getProvider();
- if ($userDisplayName !== null) {
- $this->userManager->expects($this->once())
- ->method('getDisplayName')
- ->with($uid)
- ->willReturn($userDisplayName);
- }
- if ($cloudIdData !== null) {
- $this->cloudIdManager->expects($this->once())
- ->method('isValidCloudId')
- ->willReturn(true);
- $cloudId = $this->createMock(ICloudId::class);
- $cloudId->expects($this->once())
- ->method('getUser')
- ->willReturn($cloudIdData['user']);
- $cloudId->expects($this->once())
- ->method('getDisplayId')
- ->willReturn($cloudIdData['displayId']);
- $cloudId->expects($this->once())
- ->method('getRemote')
- ->willReturn($cloudIdData['remote']);
- $this->cloudIdManager->expects($this->once())
- ->method('resolveCloudId')
- ->with($uid)
- ->willReturn($cloudId);
- if ($cloudIdData['name'] !== null) {
- $this->contactsManager->expects($this->once())
- ->method('search')
- ->with($cloudIdData['displayId'], ['CLOUD'])
- ->willReturn([
- [
- 'CLOUD' => $cloudIdData['displayId'],
- 'FN' => $cloudIdData['name'],
- ]
- ]);
- } else {
- $this->contactsManager->expects($this->once())
- ->method('search')
- ->with($cloudIdData['displayId'], ['CLOUD'])
- ->willReturn([]);
- }
- }
- $result = self::invokePrivate($provider, 'getUser', [$uid]);
- $this->assertEquals($expected, $result);
- }
- }
|