1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015 |
- <?php
- /**
- * @copyright Copyright (c) 2016, ownCloud, Inc.
- *
- * @author Arthur Schiwon <blizzz@arthur-schiwon.de>
- * @author Bjoern Schiessle <bjoern@schiessle.org>
- * @author Björn Schießle <bjoern@schiessle.org>
- * @author Christoph Wurst <christoph@winzerhof-wurst.at>
- * @author Georg Ehrke <oc.list@georgehrke.com>
- * @author Joas Schilling <coding@schilljs.com>
- * @author Lukas Reschke <lukas@statuscode.ch>
- * @author Morris Jobke <hey@morrisjobke.de>
- * @author Robin Appelman <robin@icewind.nl>
- * @author Roeland Jago Douma <roeland@famdouma.nl>
- * @author Valdnet <47037905+Valdnet@users.noreply.github.com>
- * @author Vincent Petry <vincent@nextcloud.com>
- *
- * @license AGPL-3.0
- *
- * This code is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License, version 3,
- * as published by the Free Software Foundation.
- *
- * 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, version 3,
- * along with this program. If not, see <http://www.gnu.org/licenses/>
- *
- */
- namespace OCA\FederatedFileSharing\Tests;
- use OC\Federation\CloudIdManager;
- use OCA\FederatedFileSharing\AddressHandler;
- use OCA\FederatedFileSharing\FederatedShareProvider;
- use OCA\FederatedFileSharing\Notifications;
- use OCA\FederatedFileSharing\TokenHandler;
- use OCP\Contacts\IManager as IContactsManager;
- use OCP\EventDispatcher\IEventDispatcher;
- use OCP\Federation\ICloudFederationProviderManager;
- use OCP\Federation\ICloudIdManager;
- use OCP\Files\File;
- use OCP\Files\IRootFolder;
- use OCP\ICacheFactory;
- use OCP\IConfig;
- use OCP\IDBConnection;
- use OCP\IL10N;
- use OCP\ILogger;
- use OCP\IURLGenerator;
- use OCP\IUserManager;
- use OCP\Share\IManager;
- use OCP\Share\IShare;
- use PHPUnit\Framework\MockObject\MockObject;
- /**
- * Class FederatedShareProviderTest
- *
- * @package OCA\FederatedFileSharing\Tests
- * @group DB
- */
- class FederatedShareProviderTest extends \Test\TestCase {
- /** @var IDBConnection */
- protected $connection;
- /** @var AddressHandler | \PHPUnit\Framework\MockObject\MockObject */
- protected $addressHandler;
- /** @var Notifications | \PHPUnit\Framework\MockObject\MockObject */
- protected $notifications;
- /** @var TokenHandler|\PHPUnit\Framework\MockObject\MockObject */
- protected $tokenHandler;
- /** @var IL10N */
- protected $l;
- /** @var ILogger */
- protected $logger;
- /** @var IRootFolder | \PHPUnit\Framework\MockObject\MockObject */
- protected $rootFolder;
- /** @var IConfig | \PHPUnit\Framework\MockObject\MockObject */
- protected $config;
- /** @var IUserManager | \PHPUnit\Framework\MockObject\MockObject */
- protected $userManager;
- /** @var \OCP\GlobalScale\IConfig|\PHPUnit\Framework\MockObject\MockObject */
- protected $gsConfig;
- /** @var IManager */
- protected $shareManager;
- /** @var FederatedShareProvider */
- protected $provider;
- /** @var IContactsManager|\PHPUnit\Framework\MockObject\MockObject */
- protected $contactsManager;
- /** @var ICloudIdManager */
- private $cloudIdManager;
- /** @var \PHPUnit\Framework\MockObject\MockObject|ICloudFederationProviderManager */
- private $cloudFederationProviderManager;
- protected function setUp(): void {
- parent::setUp();
- $this->connection = \OC::$server->getDatabaseConnection();
- $this->notifications = $this->getMockBuilder('OCA\FederatedFileSharing\Notifications')
- ->disableOriginalConstructor()
- ->getMock();
- $this->tokenHandler = $this->getMockBuilder('OCA\FederatedFileSharing\TokenHandler')
- ->disableOriginalConstructor()
- ->getMock();
- $this->l = $this->getMockBuilder(IL10N::class)->getMock();
- $this->l->method('t')
- ->willReturnCallback(function ($text, $parameters = []) {
- return vsprintf($text, $parameters);
- });
- $this->logger = $this->getMockBuilder(ILogger::class)->getMock();
- $this->rootFolder = $this->getMockBuilder('OCP\Files\IRootFolder')->getMock();
- $this->config = $this->getMockBuilder(IConfig::class)->getMock();
- $this->userManager = $this->getMockBuilder(IUserManager::class)->getMock();
- //$this->addressHandler = new AddressHandler(\OC::$server->getURLGenerator(), $this->l);
- $this->addressHandler = $this->getMockBuilder('OCA\FederatedFileSharing\AddressHandler')->disableOriginalConstructor()->getMock();
- $this->contactsManager = $this->createMock(IContactsManager::class);
- $this->cloudIdManager = new CloudIdManager(
- $this->contactsManager,
- $this->createMock(IURLGenerator::class),
- $this->userManager,
- $this->createMock(ICacheFactory::class),
- $this->createMock(IEventDispatcher::class)
- );
- $this->gsConfig = $this->createMock(\OCP\GlobalScale\IConfig::class);
- $this->userManager->expects($this->any())->method('userExists')->willReturn(true);
- $this->cloudFederationProviderManager = $this->createMock(ICloudFederationProviderManager::class);
- $this->provider = new FederatedShareProvider(
- $this->connection,
- $this->addressHandler,
- $this->notifications,
- $this->tokenHandler,
- $this->l,
- $this->logger,
- $this->rootFolder,
- $this->config,
- $this->userManager,
- $this->cloudIdManager,
- $this->gsConfig,
- $this->cloudFederationProviderManager
- );
- $this->shareManager = \OC::$server->getShareManager();
- }
- protected function tearDown(): void {
- $this->connection->getQueryBuilder()->delete('share')->execute();
- parent::tearDown();
- }
- public function dataTestCreate() {
- return [
- [null, null],
- [new \DateTime('2020-03-01T01:02:03'), '2020-03-01 01:02:03'],
- ];
- }
- /**
- * @dataProvider dataTestCreate
- */
- public function testCreate($expirationDate, $expectedDataDate) {
- $share = $this->shareManager->newShare();
- /** @var File|MockObject $node */
- $node = $this->getMockBuilder(File::class)->getMock();
- $node->method('getId')->willReturn(42);
- $node->method('getName')->willReturn('myFile');
- $share->setSharedWith('user@server.com')
- ->setSharedBy('sharedBy')
- ->setShareOwner('shareOwner')
- ->setPermissions(19)
- ->setShareType(IShare::TYPE_REMOTE)
- ->setExpirationDate($expirationDate)
- ->setNode($node);
- $this->tokenHandler->method('generateToken')->willReturn('token');
- $this->addressHandler->expects($this->any())->method('generateRemoteURL')
- ->willReturn('http://localhost/');
- $this->addressHandler->expects($this->any())->method('splitUserRemote')
- ->willReturn(['user', 'server.com']);
- $this->notifications->expects($this->once())
- ->method('sendRemoteShare')
- ->with(
- $this->equalTo('token'),
- $this->equalTo('user@server.com'),
- $this->equalTo('myFile'),
- $this->anything(),
- 'shareOwner',
- 'shareOwner@http://localhost/',
- 'sharedBy',
- 'sharedBy@http://localhost/'
- )
- ->willReturn(true);
- $this->rootFolder->expects($this->never())->method($this->anything());
- $this->contactsManager->expects($this->any())
- ->method('search')
- ->willReturn([]);
- $share = $this->provider->create($share);
- $qb = $this->connection->getQueryBuilder();
- $stmt = $qb->select('*')
- ->from('share')
- ->where($qb->expr()->eq('id', $qb->createNamedParameter($share->getId())))
- ->execute();
- $data = $stmt->fetch();
- $stmt->closeCursor();
- $expected = [
- 'share_type' => IShare::TYPE_REMOTE,
- 'share_with' => 'user@server.com',
- 'uid_owner' => 'shareOwner',
- 'uid_initiator' => 'sharedBy',
- 'item_type' => 'file',
- 'item_source' => 42,
- 'file_source' => 42,
- 'permissions' => 19,
- 'accepted' => 0,
- 'token' => 'token',
- 'expiration' => $expectedDataDate,
- ];
- foreach (array_keys($expected) as $key) {
- $this->assertEquals($expected[$key], $data[$key], "Assert that value for key '$key' is the same");
- }
- $this->assertEquals($data['id'], $share->getId());
- $this->assertEquals(IShare::TYPE_REMOTE, $share->getShareType());
- $this->assertEquals('user@server.com', $share->getSharedWith());
- $this->assertEquals('sharedBy', $share->getSharedBy());
- $this->assertEquals('shareOwner', $share->getShareOwner());
- $this->assertEquals('file', $share->getNodeType());
- $this->assertEquals(42, $share->getNodeId());
- $this->assertEquals(19, $share->getPermissions());
- $this->assertEquals('token', $share->getToken());
- $this->assertEquals($expirationDate, $share->getExpirationDate());
- }
- public function testCreateCouldNotFindServer() {
- $share = $this->shareManager->newShare();
- $node = $this->getMockBuilder(File::class)->getMock();
- $node->method('getId')->willReturn(42);
- $node->method('getName')->willReturn('myFile');
- $share->setSharedWith('user@server.com')
- ->setSharedBy('sharedBy')
- ->setShareOwner('shareOwner')
- ->setPermissions(19)
- ->setShareType(IShare::TYPE_REMOTE)
- ->setNode($node);
- $this->tokenHandler->method('generateToken')->willReturn('token');
- $this->addressHandler->expects($this->any())->method('generateRemoteURL')
- ->willReturn('http://localhost/');
- $this->addressHandler->expects($this->any())->method('splitUserRemote')
- ->willReturn(['user', 'server.com']);
- $this->notifications->expects($this->once())
- ->method('sendRemoteShare')
- ->with(
- $this->equalTo('token'),
- $this->equalTo('user@server.com'),
- $this->equalTo('myFile'),
- $this->anything(),
- 'shareOwner',
- 'shareOwner@http://localhost/',
- 'sharedBy',
- 'sharedBy@http://localhost/'
- )->willReturn(false);
- $this->rootFolder->method('getById')
- ->with('42')
- ->willReturn([$node]);
- $this->contactsManager->expects($this->any())
- ->method('search')
- ->willReturn([]);
- try {
- $share = $this->provider->create($share);
- $this->fail();
- } catch (\Exception $e) {
- $this->assertEquals('Sharing myFile failed, could not find user@server.com, maybe the server is currently unreachable or uses a self-signed certificate.', $e->getMessage());
- }
- $qb = $this->connection->getQueryBuilder();
- $stmt = $qb->select('*')
- ->from('share')
- ->where($qb->expr()->eq('id', $qb->createNamedParameter($share->getId())))
- ->execute();
- $data = $stmt->fetch();
- $stmt->closeCursor();
- $this->assertFalse($data);
- }
- public function testCreateException() {
- $share = $this->shareManager->newShare();
- $node = $this->getMockBuilder(File::class)->getMock();
- $node->method('getId')->willReturn(42);
- $node->method('getName')->willReturn('myFile');
- $share->setSharedWith('user@server.com')
- ->setSharedBy('sharedBy')
- ->setShareOwner('shareOwner')
- ->setPermissions(19)
- ->setShareType(IShare::TYPE_REMOTE)
- ->setNode($node);
- $this->tokenHandler->method('generateToken')->willReturn('token');
- $this->addressHandler->expects($this->any())->method('generateRemoteURL')
- ->willReturn('http://localhost/');
- $this->addressHandler->expects($this->any())->method('splitUserRemote')
- ->willReturn(['user', 'server.com']);
- $this->notifications->expects($this->once())
- ->method('sendRemoteShare')
- ->with(
- $this->equalTo('token'),
- $this->equalTo('user@server.com'),
- $this->equalTo('myFile'),
- $this->anything(),
- 'shareOwner',
- 'shareOwner@http://localhost/',
- 'sharedBy',
- 'sharedBy@http://localhost/'
- )->willThrowException(new \Exception('dummy'));
- $this->rootFolder->method('getById')
- ->with('42')
- ->willReturn([$node]);
- $this->contactsManager->expects($this->any())
- ->method('search')
- ->willReturn([]);
- try {
- $share = $this->provider->create($share);
- $this->fail();
- } catch (\Exception $e) {
- $this->assertEquals('Sharing myFile failed, could not find user@server.com, maybe the server is currently unreachable or uses a self-signed certificate.', $e->getMessage());
- }
- $qb = $this->connection->getQueryBuilder();
- $stmt = $qb->select('*')
- ->from('share')
- ->where($qb->expr()->eq('id', $qb->createNamedParameter($share->getId())))
- ->execute();
- $data = $stmt->fetch();
- $stmt->closeCursor();
- $this->assertFalse($data);
- }
- public function testCreateShareWithSelf() {
- $share = $this->shareManager->newShare();
- $node = $this->getMockBuilder(File::class)->getMock();
- $node->method('getId')->willReturn(42);
- $node->method('getName')->willReturn('myFile');
- $this->addressHandler->expects($this->any())->method('compareAddresses')
- ->willReturn(true);
- $shareWith = 'sharedBy@localhost';
- $share->setSharedWith($shareWith)
- ->setSharedBy('sharedBy')
- ->setShareOwner('shareOwner')
- ->setPermissions(19)
- ->setNode($node);
- $this->contactsManager->expects($this->any())
- ->method('search')
- ->willReturn([]);
- $this->rootFolder->expects($this->never())->method($this->anything());
- try {
- $share = $this->provider->create($share);
- $this->fail();
- } catch (\Exception $e) {
- $this->assertEquals('Not allowed to create a federated share with the same user', $e->getMessage());
- }
- $qb = $this->connection->getQueryBuilder();
- $stmt = $qb->select('*')
- ->from('share')
- ->where($qb->expr()->eq('id', $qb->createNamedParameter($share->getId())))
- ->execute();
- $data = $stmt->fetch();
- $stmt->closeCursor();
- $this->assertFalse($data);
- }
- public function testCreateAlreadyShared() {
- $share = $this->shareManager->newShare();
- $node = $this->getMockBuilder(File::class)->getMock();
- $node->method('getId')->willReturn(42);
- $node->method('getName')->willReturn('myFile');
- $this->addressHandler->expects($this->any())->method('splitUserRemote')
- ->willReturn(['user', 'server.com']);
- $share->setSharedWith('user@server.com')
- ->setSharedBy('sharedBy')
- ->setShareOwner('shareOwner')
- ->setPermissions(19)
- ->setShareType(IShare::TYPE_REMOTE)
- ->setNode($node);
- $this->tokenHandler->method('generateToken')->willReturn('token');
- $this->addressHandler->expects($this->any())->method('generateRemoteURL')
- ->willReturn('http://localhost/');
- $this->notifications->expects($this->once())
- ->method('sendRemoteShare')
- ->with(
- $this->equalTo('token'),
- $this->equalTo('user@server.com'),
- $this->equalTo('myFile'),
- $this->anything(),
- 'shareOwner',
- 'shareOwner@http://localhost/',
- 'sharedBy',
- 'sharedBy@http://localhost/'
- )->willReturn(true);
- $this->rootFolder->expects($this->never())->method($this->anything());
- $this->contactsManager->expects($this->any())
- ->method('search')
- ->willReturn([]);
- $this->provider->create($share);
- try {
- $this->provider->create($share);
- } catch (\Exception $e) {
- $this->assertEquals('Sharing myFile failed, because this item is already shared with user user@server.com', $e->getMessage());
- }
- }
- /**
- * @dataProvider dataTestUpdate
- */
- public function testUpdate($owner, $sharedBy, $expirationDate) {
- $this->provider = $this->getMockBuilder('OCA\FederatedFileSharing\FederatedShareProvider')
- ->setConstructorArgs(
- [
- $this->connection,
- $this->addressHandler,
- $this->notifications,
- $this->tokenHandler,
- $this->l,
- $this->logger,
- $this->rootFolder,
- $this->config,
- $this->userManager,
- $this->cloudIdManager,
- $this->gsConfig,
- $this->cloudFederationProviderManager
- ]
- )->setMethods(['sendPermissionUpdate'])->getMock();
- $share = $this->shareManager->newShare();
- $node = $this->getMockBuilder(File::class)->getMock();
- $node->method('getId')->willReturn(42);
- $node->method('getName')->willReturn('myFile');
- $this->addressHandler->expects($this->any())->method('splitUserRemote')
- ->willReturn(['user', 'server.com']);
- $share->setSharedWith('user@server.com')
- ->setSharedBy($sharedBy)
- ->setShareOwner($owner)
- ->setPermissions(19)
- ->setShareType(IShare::TYPE_REMOTE)
- ->setExpirationDate(new \DateTime('2019-02-01T01:02:03'))
- ->setNode($node);
- $this->tokenHandler->method('generateToken')->willReturn('token');
- $this->addressHandler->expects($this->any())->method('generateRemoteURL')
- ->willReturn('http://localhost/');
- $this->notifications->expects($this->once())
- ->method('sendRemoteShare')
- ->with(
- $this->equalTo('token'),
- $this->equalTo('user@server.com'),
- $this->equalTo('myFile'),
- $this->anything(),
- $owner,
- $owner . '@http://localhost/',
- $sharedBy,
- $sharedBy . '@http://localhost/'
- )->willReturn(true);
- if ($owner === $sharedBy) {
- $this->provider->expects($this->never())->method('sendPermissionUpdate');
- } else {
- $this->provider->expects($this->once())->method('sendPermissionUpdate');
- }
- $this->rootFolder->expects($this->never())->method($this->anything());
- $this->contactsManager->expects($this->any())
- ->method('search')
- ->willReturn([]);
- $share = $this->provider->create($share);
- $share->setPermissions(1);
- $share->setExpirationDate($expirationDate);
- $this->provider->update($share);
- $share = $this->provider->getShareById($share->getId());
- $this->assertEquals(1, $share->getPermissions());
- $this->assertEquals($expirationDate, $share->getExpirationDate());
- }
- public function dataTestUpdate() {
- return [
- ['sharedBy', 'shareOwner', new \DateTime('2020-03-01T01:02:03')],
- ['shareOwner', 'shareOwner', null],
- ];
- }
- public function testGetSharedBy() {
- $node = $this->getMockBuilder(File::class)->getMock();
- $node->method('getId')->willReturn(42);
- $node->method('getName')->willReturn('myFile');
- $this->addressHandler->expects($this->never())->method('splitUserRemote');
- $this->addressHandler->method('generateRemoteURL')
- ->willReturn('remoteurl.com');
- $this->tokenHandler->method('generateToken')->willReturn('token');
- $this->notifications
- ->method('sendRemoteShare')
- ->willReturn(true);
- $this->rootFolder->expects($this->never())->method($this->anything());
- $this->contactsManager->expects($this->any())
- ->method('search')
- ->willReturn([]);
- $share = $this->shareManager->newShare();
- $share->setSharedWith('user@server.com')
- ->setSharedBy('sharedBy')
- ->setShareOwner('shareOwner')
- ->setPermissions(19)
- ->setShareType(IShare::TYPE_REMOTE)
- ->setNode($node);
- $this->provider->create($share);
- $share2 = $this->shareManager->newShare();
- $share2->setSharedWith('user2@server.com')
- ->setSharedBy('sharedBy2')
- ->setShareOwner('shareOwner')
- ->setPermissions(19)
- ->setShareType(IShare::TYPE_REMOTE)
- ->setNode($node);
- $this->provider->create($share2);
- $shares = $this->provider->getSharesBy('sharedBy', IShare::TYPE_REMOTE, null, false, -1, 0);
- $this->assertCount(1, $shares);
- $this->assertEquals('user@server.com', $shares[0]->getSharedWith());
- $this->assertEquals('sharedBy', $shares[0]->getSharedBy());
- }
- public function testGetSharedByWithNode() {
- $node = $this->getMockBuilder(File::class)->getMock();
- $node->method('getId')->willReturn(42);
- $node->method('getName')->willReturn('myFile');
- $this->tokenHandler->method('generateToken')->willReturn('token');
- $this->notifications
- ->method('sendRemoteShare')
- ->willReturn(true);
- $this->rootFolder->expects($this->never())->method($this->anything());
- $this->addressHandler->method('generateRemoteURL')
- ->willReturn('remoteurl.com');
- $this->contactsManager->expects($this->any())
- ->method('search')
- ->willReturn([]);
- $share = $this->shareManager->newShare();
- $share->setSharedWith('user@server.com')
- ->setSharedBy('sharedBy')
- ->setShareOwner('shareOwner')
- ->setPermissions(19)
- ->setShareType(IShare::TYPE_REMOTE)
- ->setNode($node);
- $this->provider->create($share);
- $node2 = $this->getMockBuilder(File::class)->getMock();
- $node2->method('getId')->willReturn(43);
- $node2->method('getName')->willReturn('myOtherFile');
- $share2 = $this->shareManager->newShare();
- $share2->setSharedWith('user@server.com')
- ->setSharedBy('sharedBy')
- ->setShareOwner('shareOwner')
- ->setPermissions(19)
- ->setShareType(IShare::TYPE_REMOTE)
- ->setNode($node2);
- $this->provider->create($share2);
- $shares = $this->provider->getSharesBy('sharedBy', IShare::TYPE_REMOTE, $node2, false, -1, 0);
- $this->assertCount(1, $shares);
- $this->assertEquals(43, $shares[0]->getNodeId());
- }
- public function testGetSharedByWithReshares() {
- $node = $this->getMockBuilder(File::class)->getMock();
- $node->method('getId')->willReturn(42);
- $node->method('getName')->willReturn('myFile');
- $this->tokenHandler->method('generateToken')->willReturn('token');
- $this->notifications
- ->method('sendRemoteShare')
- ->willReturn(true);
- $this->rootFolder->expects($this->never())->method($this->anything());
- $this->addressHandler->method('generateRemoteURL')
- ->willReturn('remoteurl.com');
- $this->contactsManager->expects($this->any())
- ->method('search')
- ->willReturn([]);
- $share = $this->shareManager->newShare();
- $share->setSharedWith('user@server.com')
- ->setSharedBy('shareOwner')
- ->setShareOwner('shareOwner')
- ->setPermissions(19)
- ->setShareType(IShare::TYPE_REMOTE)
- ->setNode($node);
- $this->provider->create($share);
- $share2 = $this->shareManager->newShare();
- $share2->setSharedWith('user2@server.com')
- ->setSharedBy('sharedBy')
- ->setShareOwner('shareOwner')
- ->setPermissions(19)
- ->setShareType(IShare::TYPE_REMOTE)
- ->setNode($node);
- $this->provider->create($share2);
- $shares = $this->provider->getSharesBy('shareOwner', IShare::TYPE_REMOTE, null, true, -1, 0);
- $this->assertCount(2, $shares);
- }
- public function testGetSharedByWithLimit() {
- $node = $this->getMockBuilder(File::class)->getMock();
- $node->method('getId')->willReturn(42);
- $node->method('getName')->willReturn('myFile');
- $this->addressHandler->expects($this->any())->method('splitUserRemote')
- ->willReturnCallback(function ($uid) {
- if ($uid === 'user@server.com') {
- return ['user', 'server.com'];
- }
- return ['user2', 'server.com'];
- });
- $this->tokenHandler->method('generateToken')->willReturn('token');
- $this->notifications
- ->method('sendRemoteShare')
- ->willReturn(true);
- $this->rootFolder->expects($this->never())->method($this->anything());
- $this->addressHandler->method('generateRemoteURL')
- ->willReturn('remoteurl.com');
- $this->contactsManager->expects($this->any())
- ->method('search')
- ->willReturn([]);
- $share = $this->shareManager->newShare();
- $share->setSharedWith('user@server.com')
- ->setSharedBy('sharedBy')
- ->setShareOwner('shareOwner')
- ->setPermissions(19)
- ->setShareType(IShare::TYPE_REMOTE)
- ->setNode($node);
- $this->provider->create($share);
- $share2 = $this->shareManager->newShare();
- $share2->setSharedWith('user2@server.com')
- ->setSharedBy('sharedBy')
- ->setShareOwner('shareOwner')
- ->setPermissions(19)
- ->setShareType(IShare::TYPE_REMOTE)
- ->setNode($node);
- $this->provider->create($share2);
- $shares = $this->provider->getSharesBy('shareOwner', IShare::TYPE_REMOTE, null, true, 1, 1);
- $this->assertCount(1, $shares);
- $this->assertEquals('user2@server.com', $shares[0]->getSharedWith());
- }
- public function dataDeleteUser() {
- return [
- ['a', 'b', 'c', 'a', true],
- ['a', 'b', 'c', 'b', false],
- // The recipient is non local.
- ['a', 'b', 'c', 'c', false],
- ['a', 'b', 'c', 'd', false],
- ];
- }
- /**
- * @dataProvider dataDeleteUser
- *
- * @param string $owner The owner of the share (uid)
- * @param string $initiator The initiator of the share (uid)
- * @param string $recipient The recipient of the share (uid/gid/pass)
- * @param string $deletedUser The user that is deleted
- * @param bool $rowDeleted Is the row deleted in this setup
- */
- public function testDeleteUser($owner, $initiator, $recipient, $deletedUser, $rowDeleted) {
- $qb = $this->connection->getQueryBuilder();
- $qb->insert('share')
- ->setValue('share_type', $qb->createNamedParameter(IShare::TYPE_REMOTE))
- ->setValue('uid_owner', $qb->createNamedParameter($owner))
- ->setValue('uid_initiator', $qb->createNamedParameter($initiator))
- ->setValue('share_with', $qb->createNamedParameter($recipient))
- ->setValue('item_type', $qb->createNamedParameter('file'))
- ->setValue('item_source', $qb->createNamedParameter(42))
- ->setValue('file_source', $qb->createNamedParameter(42))
- ->execute();
- $id = $qb->getLastInsertId();
- $this->provider->userDeleted($deletedUser, IShare::TYPE_REMOTE);
- $qb = $this->connection->getQueryBuilder();
- $qb->select('*')
- ->from('share')
- ->where(
- $qb->expr()->eq('id', $qb->createNamedParameter($id))
- );
- $cursor = $qb->execute();
- $data = $cursor->fetchAll();
- $cursor->closeCursor();
- $this->assertCount($rowDeleted ? 0 : 1, $data);
- }
- /**
- * @dataProvider dataTestIsOutgoingServer2serverShareEnabled
- *
- * @param string $isEnabled
- * @param bool $expected
- */
- public function testIsOutgoingServer2serverShareEnabled($internalOnly, $isEnabled, $expected) {
- $this->gsConfig->expects($this->once())->method('onlyInternalFederation')
- ->willReturn($internalOnly);
- $this->config->expects($this->any())->method('getAppValue')
- ->with('files_sharing', 'outgoing_server2server_share_enabled', 'yes')
- ->willReturn($isEnabled);
- $this->assertSame($expected,
- $this->provider->isOutgoingServer2serverShareEnabled()
- );
- }
- public function dataTestIsOutgoingServer2serverShareEnabled() {
- return [
- [false, 'yes', true],
- [false, 'no', false],
- [true, 'yes', false],
- [true, 'no', false],
- ];
- }
- /**
- * @dataProvider dataTestIsIncomingServer2serverShareEnabled
- *
- * @param string $isEnabled
- * @param bool $expected
- */
- public function testIsIncomingServer2serverShareEnabled($onlyInternal, $isEnabled, $expected) {
- $this->gsConfig->expects($this->once())->method('onlyInternalFederation')
- ->willReturn($onlyInternal);
- $this->config->expects($this->any())->method('getAppValue')
- ->with('files_sharing', 'incoming_server2server_share_enabled', 'yes')
- ->willReturn($isEnabled);
- $this->assertSame($expected,
- $this->provider->isIncomingServer2serverShareEnabled()
- );
- }
- public function dataTestIsIncomingServer2serverShareEnabled() {
- return [
- [false, 'yes', true],
- [false, 'no', false],
- [true, 'yes', false],
- [true, 'no', false],
- ];
- }
- /**
- * @dataProvider dataTestIsLookupServerQueriesEnabled
- *
- * @param string $isEnabled
- * @param bool $expected
- */
- public function testIsLookupServerQueriesEnabled($gsEnabled, $isEnabled, $expected) {
- $this->gsConfig->expects($this->once())->method('isGlobalScaleEnabled')
- ->willReturn($gsEnabled);
- $this->config->expects($this->any())->method('getAppValue')
- ->with('files_sharing', 'lookupServerEnabled', 'yes')
- ->willReturn($isEnabled);
- $this->assertSame($expected,
- $this->provider->isLookupServerQueriesEnabled()
- );
- }
- public function dataTestIsLookupServerQueriesEnabled() {
- return [
- [false, 'yes', true],
- [false, 'no', false],
- [true, 'yes', true],
- [true, 'no', true],
- ];
- }
- /**
- * @dataProvider dataTestIsLookupServerUploadEnabled
- *
- * @param string $isEnabled
- * @param bool $expected
- */
- public function testIsLookupServerUploadEnabled($gsEnabled, $isEnabled, $expected) {
- $this->gsConfig->expects($this->once())->method('isGlobalScaleEnabled')
- ->willReturn($gsEnabled);
- $this->config->expects($this->any())->method('getAppValue')
- ->with('files_sharing', 'lookupServerUploadEnabled', 'yes')
- ->willReturn($isEnabled);
- $this->assertSame($expected,
- $this->provider->isLookupServerUploadEnabled()
- );
- }
- public function dataTestIsLookupServerUploadEnabled() {
- return [
- [false, 'yes', true],
- [false, 'no', false],
- [true, 'yes', false],
- [true, 'no', false],
- ];
- }
- public function testGetSharesInFolder() {
- $userManager = \OC::$server->getUserManager();
- $rootFolder = \OC::$server->getRootFolder();
- $u1 = $userManager->createUser('testFed', md5(time()));
- $u2 = $userManager->createUser('testFed2', md5(time()));
- $folder1 = $rootFolder->getUserFolder($u1->getUID())->newFolder('foo');
- $file1 = $folder1->newFile('bar1');
- $file2 = $folder1->newFile('bar2');
- $this->tokenHandler->method('generateToken')->willReturn('token');
- $this->notifications
- ->method('sendRemoteShare')
- ->willReturn(true);
- $this->addressHandler->method('generateRemoteURL')
- ->willReturn('remoteurl.com');
- $this->contactsManager->expects($this->any())
- ->method('search')
- ->willReturn([]);
- $share1 = $this->shareManager->newShare();
- $share1->setSharedWith('user@server.com')
- ->setSharedBy($u1->getUID())
- ->setShareOwner($u1->getUID())
- ->setPermissions(\OCP\Constants::PERMISSION_READ)
- ->setShareType(IShare::TYPE_REMOTE)
- ->setNode($file1);
- $this->provider->create($share1);
- $share2 = $this->shareManager->newShare();
- $share2->setSharedWith('user@server.com')
- ->setSharedBy($u2->getUID())
- ->setShareOwner($u1->getUID())
- ->setPermissions(\OCP\Constants::PERMISSION_READ)
- ->setShareType(IShare::TYPE_REMOTE)
- ->setNode($file2);
- $this->provider->create($share2);
- $result = $this->provider->getSharesInFolder($u1->getUID(), $folder1, false);
- $this->assertCount(1, $result);
- $this->assertCount(1, $result[$file1->getId()]);
- $result = $this->provider->getSharesInFolder($u1->getUID(), $folder1, true);
- $this->assertCount(2, $result);
- $this->assertCount(1, $result[$file1->getId()]);
- $this->assertCount(1, $result[$file2->getId()]);
- $u1->delete();
- $u2->delete();
- }
- public function testGetAccessList() {
- $userManager = \OC::$server->getUserManager();
- $rootFolder = \OC::$server->getRootFolder();
- $u1 = $userManager->createUser('testFed', md5(time()));
- $folder1 = $rootFolder->getUserFolder($u1->getUID())->newFolder('foo');
- $file1 = $folder1->newFile('bar1');
- $this->tokenHandler->expects($this->exactly(2))
- ->method('generateToken')
- ->willReturnOnConsecutiveCalls('token1', 'token2');
- $this->notifications->expects($this->atLeastOnce())
- ->method('sendRemoteShare')
- ->willReturn(true);
- $this->contactsManager->expects($this->any())
- ->method('search')
- ->willReturn([]);
- $result = $this->provider->getAccessList([$file1], true);
- $this->assertEquals(['remote' => []], $result);
- $result = $this->provider->getAccessList([$file1], false);
- $this->assertEquals(['remote' => false], $result);
- $this->addressHandler->method('generateRemoteURL')
- ->willReturn('remoteurl.com');
- $share1 = $this->shareManager->newShare();
- $share1->setSharedWith('user@server.com')
- ->setSharedBy($u1->getUID())
- ->setShareOwner($u1->getUID())
- ->setPermissions(\OCP\Constants::PERMISSION_READ)
- ->setShareType(IShare::TYPE_REMOTE)
- ->setNode($file1);
- $this->provider->create($share1);
- $share2 = $this->shareManager->newShare();
- $share2->setSharedWith('foobar@localhost')
- ->setSharedBy($u1->getUID())
- ->setShareOwner($u1->getUID())
- ->setPermissions(\OCP\Constants::PERMISSION_READ)
- ->setShareType(IShare::TYPE_REMOTE)
- ->setNode($file1);
- $this->provider->create($share2);
- $result = $this->provider->getAccessList([$file1], true);
- $this->assertEquals(['remote' => [
- 'user@server.com' => [
- 'token' => 'token1',
- 'node_id' => $file1->getId(),
- ],
- 'foobar@localhost' => [
- 'token' => 'token2',
- 'node_id' => $file1->getId(),
- ],
- ]], $result);
- $result = $this->provider->getAccessList([$file1], false);
- $this->assertEquals(['remote' => true], $result);
- $u1->delete();
- }
- }
|