2016-10-31 16:19:34 +03:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @copyright Copyright (c) 2016 Bjoern Schiessle <bjoern@schiessle.org>
|
|
|
|
*
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Bjoern Schiessle <bjoern@schiessle.org>
|
2020-03-31 11:49:10 +03:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Daniel Calviño Sánchez <danxuliu@gmail.com>
|
2020-08-24 15:54:25 +03:00
|
|
|
* @author Daniel Kesselberg <mail@danielkesselberg.de>
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
|
|
|
* @author Stephan Müller <mail@stephanmueller.eu>
|
|
|
|
*
|
2016-10-31 16:19:34 +03:00
|
|
|
* @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
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2016-10-31 16:19:34 +03:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OCA\ShareByMail\Tests;
|
|
|
|
|
2017-04-18 23:23:07 +03:00
|
|
|
use OC\Mail\Message;
|
2017-03-30 16:23:44 +03:00
|
|
|
use OCA\ShareByMail\Settings\SettingsManager;
|
2016-10-31 16:19:34 +03:00
|
|
|
use OCA\ShareByMail\ShareByMailProvider;
|
2017-04-18 23:23:07 +03:00
|
|
|
use OCP\Defaults;
|
2020-08-09 19:13:14 +03:00
|
|
|
use OCP\EventDispatcher\IEventDispatcher;
|
2017-04-10 19:36:23 +03:00
|
|
|
use OCP\Files\File;
|
2016-10-31 16:19:34 +03:00
|
|
|
use OCP\Files\IRootFolder;
|
|
|
|
use OCP\IDBConnection;
|
|
|
|
use OCP\IL10N;
|
|
|
|
use OCP\ILogger;
|
|
|
|
use OCP\IURLGenerator;
|
2017-04-18 23:23:07 +03:00
|
|
|
use OCP\IUser;
|
2016-10-31 16:19:34 +03:00
|
|
|
use OCP\IUserManager;
|
2017-04-18 23:23:07 +03:00
|
|
|
use OCP\Mail\IEMailTemplate;
|
2016-10-31 16:19:34 +03:00
|
|
|
use OCP\Mail\IMailer;
|
2018-07-10 13:36:28 +03:00
|
|
|
use OCP\Mail\IMessage;
|
2020-08-09 19:13:14 +03:00
|
|
|
use OCP\Security\Events\GenerateSecurePasswordEvent;
|
2017-04-10 19:36:23 +03:00
|
|
|
use OCP\Security\IHasher;
|
2016-10-31 16:19:34 +03:00
|
|
|
use OCP\Security\ISecureRandom;
|
|
|
|
use OCP\Share\IManager;
|
|
|
|
use OCP\Share\IShare;
|
|
|
|
use Test\TestCase;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class ShareByMailProviderTest
|
|
|
|
*
|
|
|
|
* @package OCA\ShareByMail\Tests
|
|
|
|
* @group DB
|
|
|
|
*/
|
|
|
|
class ShareByMailProviderTest extends TestCase {
|
|
|
|
|
|
|
|
/** @var IDBConnection */
|
|
|
|
private $connection;
|
|
|
|
|
|
|
|
/** @var IManager */
|
|
|
|
private $shareManager;
|
|
|
|
|
2020-08-11 22:32:18 +03:00
|
|
|
/** @var IL10N | \PHPUnit\Framework\MockObject\MockObject */
|
2016-10-31 16:19:34 +03:00
|
|
|
private $l;
|
|
|
|
|
2020-08-11 22:32:18 +03:00
|
|
|
/** @var ILogger | \PHPUnit\Framework\MockObject\MockObject */
|
2016-10-31 16:19:34 +03:00
|
|
|
private $logger;
|
|
|
|
|
2020-08-11 22:32:18 +03:00
|
|
|
/** @var IRootFolder | \PHPUnit\Framework\MockObject\MockObject */
|
2016-10-31 16:19:34 +03:00
|
|
|
private $rootFolder;
|
|
|
|
|
2020-08-11 22:32:18 +03:00
|
|
|
/** @var IUserManager | \PHPUnit\Framework\MockObject\MockObject */
|
2016-10-31 16:19:34 +03:00
|
|
|
private $userManager;
|
|
|
|
|
2020-08-11 22:32:18 +03:00
|
|
|
/** @var ISecureRandom | \PHPUnit\Framework\MockObject\MockObject */
|
2016-10-31 16:19:34 +03:00
|
|
|
private $secureRandom;
|
|
|
|
|
2020-08-11 22:32:18 +03:00
|
|
|
/** @var IMailer | \PHPUnit\Framework\MockObject\MockObject */
|
2016-10-31 16:19:34 +03:00
|
|
|
private $mailer;
|
|
|
|
|
2020-08-11 22:32:18 +03:00
|
|
|
/** @var IURLGenerator | \PHPUnit\Framework\MockObject\MockObject */
|
2016-10-31 16:19:34 +03:00
|
|
|
private $urlGenerator;
|
|
|
|
|
2020-08-11 22:32:18 +03:00
|
|
|
/** @var IShare | \PHPUnit\Framework\MockObject\MockObject */
|
2016-10-31 16:19:34 +03:00
|
|
|
private $share;
|
|
|
|
|
2020-08-11 22:32:18 +03:00
|
|
|
/** @var \OCP\Activity\IManager | \PHPUnit\Framework\MockObject\MockObject */
|
2016-11-07 17:08:56 +03:00
|
|
|
private $activityManager;
|
|
|
|
|
2020-08-11 22:32:18 +03:00
|
|
|
/** @var SettingsManager | \PHPUnit\Framework\MockObject\MockObject */
|
2017-03-30 16:23:44 +03:00
|
|
|
private $settingsManager;
|
|
|
|
|
2020-08-11 22:32:18 +03:00
|
|
|
/** @var Defaults|\PHPUnit\Framework\MockObject\MockObject */
|
2017-04-18 23:23:07 +03:00
|
|
|
private $defaults;
|
|
|
|
|
2020-08-11 22:32:18 +03:00
|
|
|
/** @var IHasher | \PHPUnit\Framework\MockObject\MockObject */
|
2017-04-10 19:36:23 +03:00
|
|
|
private $hasher;
|
|
|
|
|
2020-08-09 19:13:14 +03:00
|
|
|
/** @var IEventDispatcher */
|
|
|
|
private $eventDispatcher;
|
2017-04-19 17:56:34 +03:00
|
|
|
|
2019-11-27 17:27:18 +03:00
|
|
|
protected function setUp(): void {
|
2016-10-31 16:19:34 +03:00
|
|
|
parent::setUp();
|
|
|
|
|
|
|
|
$this->shareManager = \OC::$server->getShareManager();
|
|
|
|
$this->connection = \OC::$server->getDatabaseConnection();
|
|
|
|
|
2017-10-24 16:26:53 +03:00
|
|
|
$this->l = $this->getMockBuilder(IL10N::class)->getMock();
|
2016-10-31 16:19:34 +03:00
|
|
|
$this->l->method('t')
|
2020-04-09 14:53:40 +03:00
|
|
|
->willReturnCallback(function ($text, $parameters = []) {
|
2016-10-31 16:19:34 +03:00
|
|
|
return vsprintf($text, $parameters);
|
2020-03-26 00:21:27 +03:00
|
|
|
});
|
2017-10-24 16:26:53 +03:00
|
|
|
$this->logger = $this->getMockBuilder(ILogger::class)->getMock();
|
2016-10-31 16:19:34 +03:00
|
|
|
$this->rootFolder = $this->getMockBuilder('OCP\Files\IRootFolder')->getMock();
|
2017-10-24 16:26:53 +03:00
|
|
|
$this->userManager = $this->getMockBuilder(IUserManager::class)->getMock();
|
2016-10-31 16:19:34 +03:00
|
|
|
$this->secureRandom = $this->getMockBuilder('\OCP\Security\ISecureRandom')->getMock();
|
|
|
|
$this->mailer = $this->getMockBuilder('\OCP\Mail\IMailer')->getMock();
|
2017-10-24 16:26:53 +03:00
|
|
|
$this->urlGenerator = $this->getMockBuilder(IURLGenerator::class)->getMock();
|
2017-10-25 01:03:28 +03:00
|
|
|
$this->share = $this->getMockBuilder(IShare::class)->getMock();
|
2016-11-07 17:08:56 +03:00
|
|
|
$this->activityManager = $this->getMockBuilder('OCP\Activity\IManager')->getMock();
|
2017-03-30 16:23:44 +03:00
|
|
|
$this->settingsManager = $this->getMockBuilder(SettingsManager::class)->disableOriginalConstructor()->getMock();
|
2017-04-18 23:23:07 +03:00
|
|
|
$this->defaults = $this->createMock(Defaults::class);
|
2017-04-10 19:36:23 +03:00
|
|
|
$this->hasher = $this->getMockBuilder(IHasher::class)->getMock();
|
2020-08-09 19:13:14 +03:00
|
|
|
$this->eventDispatcher = $this->getMockBuilder(IEventDispatcher::class)->getMock();
|
2016-10-31 16:19:34 +03:00
|
|
|
|
|
|
|
$this->userManager->expects($this->any())->method('userExists')->willReturn(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* get instance of Mocked ShareByMailProvider
|
|
|
|
*
|
|
|
|
* @param array $mockedMethods internal methods which should be mocked
|
2020-08-11 22:32:18 +03:00
|
|
|
* @return \PHPUnit\Framework\MockObject\MockObject | ShareByMailProvider
|
2016-10-31 16:19:34 +03:00
|
|
|
*/
|
|
|
|
private function getInstance(array $mockedMethods = []) {
|
|
|
|
$instance = $this->getMockBuilder('OCA\ShareByMail\ShareByMailProvider')
|
|
|
|
->setConstructorArgs(
|
|
|
|
[
|
|
|
|
$this->connection,
|
|
|
|
$this->secureRandom,
|
|
|
|
$this->userManager,
|
|
|
|
$this->rootFolder,
|
|
|
|
$this->l,
|
|
|
|
$this->logger,
|
|
|
|
$this->mailer,
|
2016-11-07 17:08:56 +03:00
|
|
|
$this->urlGenerator,
|
2017-03-30 18:03:04 +03:00
|
|
|
$this->activityManager,
|
2017-04-18 23:23:07 +03:00
|
|
|
$this->settingsManager,
|
2017-04-10 19:36:23 +03:00
|
|
|
$this->defaults,
|
2017-04-19 17:56:34 +03:00
|
|
|
$this->hasher,
|
2020-08-09 19:13:14 +03:00
|
|
|
$this->eventDispatcher
|
2016-10-31 16:19:34 +03:00
|
|
|
]
|
|
|
|
);
|
|
|
|
|
|
|
|
if (!empty($mockedMethods)) {
|
|
|
|
$instance->setMethods($mockedMethods);
|
|
|
|
return $instance->getMock();
|
|
|
|
}
|
|
|
|
|
|
|
|
return new ShareByMailProvider(
|
|
|
|
$this->connection,
|
|
|
|
$this->secureRandom,
|
|
|
|
$this->userManager,
|
|
|
|
$this->rootFolder,
|
|
|
|
$this->l,
|
|
|
|
$this->logger,
|
|
|
|
$this->mailer,
|
2016-11-07 17:08:56 +03:00
|
|
|
$this->urlGenerator,
|
2017-03-30 16:23:44 +03:00
|
|
|
$this->activityManager,
|
2017-04-18 23:23:07 +03:00
|
|
|
$this->settingsManager,
|
2017-04-10 19:36:23 +03:00
|
|
|
$this->defaults,
|
2017-04-19 17:56:34 +03:00
|
|
|
$this->hasher,
|
2020-08-09 19:13:14 +03:00
|
|
|
$this->eventDispatcher
|
2016-10-31 16:19:34 +03:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-11-27 17:27:18 +03:00
|
|
|
protected function tearDown(): void {
|
2016-10-31 16:19:34 +03:00
|
|
|
$this->connection->getQueryBuilder()->delete('share')->execute();
|
|
|
|
|
2019-11-21 18:40:38 +03:00
|
|
|
parent::tearDown();
|
2016-10-31 16:19:34 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testCreate() {
|
2017-10-25 01:03:28 +03:00
|
|
|
$share = $this->getMockBuilder(IShare::class)->getMock();
|
2017-04-10 19:36:23 +03:00
|
|
|
$share->expects($this->any())->method('getSharedWith')->willReturn('user1');
|
|
|
|
|
|
|
|
$node = $this->getMockBuilder(File::class)->getMock();
|
|
|
|
$node->expects($this->any())->method('getName')->willReturn('filename');
|
2016-10-31 16:19:34 +03:00
|
|
|
|
2017-04-19 18:08:52 +03:00
|
|
|
$instance = $this->getInstance(['getSharedWith', 'createMailShare', 'getRawShare', 'createShareObject', 'createShareActivity', 'sendPassword']);
|
2016-10-31 16:19:34 +03:00
|
|
|
|
|
|
|
$instance->expects($this->once())->method('getSharedWith')->willReturn([]);
|
|
|
|
$instance->expects($this->once())->method('createMailShare')->with($share)->willReturn(42);
|
2017-04-19 18:08:52 +03:00
|
|
|
$instance->expects($this->once())->method('createShareActivity')->with($share);
|
2016-10-31 16:19:34 +03:00
|
|
|
$instance->expects($this->once())->method('getRawShare')->with(42)->willReturn('rawShare');
|
|
|
|
$instance->expects($this->once())->method('createShareObject')->with('rawShare')->willReturn('shareObject');
|
2017-04-10 19:36:23 +03:00
|
|
|
$instance->expects($this->any())->method('sendPassword')->willReturn(true);
|
|
|
|
$share->expects($this->any())->method('getNode')->willReturn($node);
|
|
|
|
$this->settingsManager->expects($this->any())->method('enforcePasswordProtection')->willReturn(false);
|
|
|
|
$this->settingsManager->expects($this->any())->method('sendPasswordByMail')->willReturn(true);
|
2016-10-31 16:19:34 +03:00
|
|
|
|
|
|
|
$this->assertSame('shareObject',
|
|
|
|
$instance->create($share)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2018-07-10 13:36:28 +03:00
|
|
|
public function testCreateSendPasswordByMailWithoutEnforcedPasswordProtection() {
|
|
|
|
$share = $this->getMockBuilder(IShare::class)->getMock();
|
|
|
|
$share->expects($this->any())->method('getSharedWith')->willReturn('receiver@example.com');
|
|
|
|
$share->expects($this->any())->method('getSendPasswordByTalk')->willReturn(false);
|
|
|
|
$share->expects($this->any())->method('getSharedBy')->willReturn('owner');
|
|
|
|
|
|
|
|
$node = $this->getMockBuilder(File::class)->getMock();
|
|
|
|
$node->expects($this->any())->method('getName')->willReturn('filename');
|
|
|
|
|
|
|
|
$instance = $this->getInstance(['getSharedWith', 'createMailShare', 'getRawShare', 'createShareObject', 'createShareActivity', 'autoGeneratePassword', 'createPasswordSendActivity']);
|
|
|
|
|
|
|
|
$instance->expects($this->once())->method('getSharedWith')->willReturn([]);
|
|
|
|
$instance->expects($this->once())->method('createMailShare')->with($share)->willReturn(42);
|
|
|
|
$instance->expects($this->once())->method('createShareActivity')->with($share);
|
|
|
|
$instance->expects($this->once())->method('getRawShare')->with(42)->willReturn('rawShare');
|
|
|
|
$instance->expects($this->once())->method('createShareObject')->with('rawShare')->willReturn('shareObject');
|
|
|
|
$share->expects($this->any())->method('getNode')->willReturn($node);
|
|
|
|
|
|
|
|
// The autogenerated password should not be mailed.
|
|
|
|
$this->settingsManager->expects($this->any())->method('enforcePasswordProtection')->willReturn(false);
|
|
|
|
$this->settingsManager->expects($this->any())->method('sendPasswordByMail')->willReturn(true);
|
|
|
|
$instance->expects($this->never())->method('autoGeneratePassword');
|
|
|
|
|
|
|
|
$this->mailer->expects($this->never())->method('send');
|
|
|
|
|
|
|
|
$this->assertSame('shareObject',
|
|
|
|
$instance->create($share)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-05-28 21:27:33 +03:00
|
|
|
public function testCreateSendPasswordByMailWithPasswordAndWithoutEnforcedPasswordProtection() {
|
|
|
|
$share = $this->getMockBuilder(IShare::class)->getMock();
|
|
|
|
$share->expects($this->any())->method('getSharedWith')->willReturn('receiver@example.com');
|
|
|
|
$share->expects($this->any())->method('getSendPasswordByTalk')->willReturn(false);
|
|
|
|
$share->expects($this->any())->method('getSharedBy')->willReturn('owner');
|
|
|
|
|
|
|
|
$node = $this->getMockBuilder(File::class)->getMock();
|
|
|
|
$node->expects($this->any())->method('getName')->willReturn('filename');
|
|
|
|
|
|
|
|
$instance = $this->getInstance(['getSharedWith', 'createMailShare', 'getRawShare', 'createShareObject', 'createShareActivity', 'autoGeneratePassword', 'createPasswordSendActivity']);
|
|
|
|
|
|
|
|
$instance->expects($this->once())->method('getSharedWith')->willReturn([]);
|
|
|
|
$instance->expects($this->once())->method('createMailShare')->with($share)->willReturn(42);
|
|
|
|
$instance->expects($this->once())->method('createShareActivity')->with($share);
|
|
|
|
$instance->expects($this->once())->method('getRawShare')->with(42)->willReturn('rawShare');
|
|
|
|
$instance->expects($this->once())->method('createShareObject')->with('rawShare')->willReturn('shareObject');
|
|
|
|
$share->expects($this->any())->method('getNode')->willReturn($node);
|
|
|
|
|
|
|
|
$share->expects($this->once())->method('getPassword')->willReturn('password');
|
|
|
|
$this->hasher->expects($this->once())->method('hash')->with('password')->willReturn('passwordHashed');
|
|
|
|
$share->expects($this->once())->method('setPassword')->with('passwordHashed');
|
|
|
|
|
|
|
|
// The given password (but not the autogenerated password) should be
|
|
|
|
// mailed to the receiver of the share.
|
|
|
|
$this->settingsManager->expects($this->any())->method('enforcePasswordProtection')->willReturn(false);
|
|
|
|
$this->settingsManager->expects($this->any())->method('sendPasswordByMail')->willReturn(true);
|
|
|
|
$instance->expects($this->never())->method('autoGeneratePassword');
|
|
|
|
|
|
|
|
$message = $this->createMock(IMessage::class);
|
|
|
|
$message->expects($this->once())->method('setTo')->with(['receiver@example.com']);
|
|
|
|
$this->mailer->expects($this->once())->method('createMessage')->willReturn($message);
|
|
|
|
$this->mailer->expects($this->once())->method('createEMailTemplate')->with('sharebymail.RecipientPasswordNotification', [
|
|
|
|
'filename' => 'filename',
|
|
|
|
'password' => 'password',
|
|
|
|
'initiator' => 'owner',
|
|
|
|
'initiatorEmail' => null,
|
|
|
|
'shareWith' => 'receiver@example.com',
|
|
|
|
]);
|
|
|
|
$this->mailer->expects($this->once())->method('send');
|
|
|
|
|
|
|
|
$this->assertSame('shareObject',
|
|
|
|
$instance->create($share)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2018-07-10 13:36:28 +03:00
|
|
|
public function testCreateSendPasswordByMailWithEnforcedPasswordProtection() {
|
|
|
|
$share = $this->getMockBuilder(IShare::class)->getMock();
|
|
|
|
$share->expects($this->any())->method('getSharedWith')->willReturn('receiver@example.com');
|
|
|
|
$share->expects($this->any())->method('getSendPasswordByTalk')->willReturn(false);
|
|
|
|
$share->expects($this->any())->method('getSharedBy')->willReturn('owner');
|
|
|
|
|
|
|
|
$node = $this->getMockBuilder(File::class)->getMock();
|
|
|
|
$node->expects($this->any())->method('getName')->willReturn('filename');
|
|
|
|
|
2020-08-09 19:13:14 +03:00
|
|
|
$this->secureRandom->expects($this->once())
|
|
|
|
->method('generate')
|
|
|
|
->with(8, ISecureRandom::CHAR_LOWER . ISecureRandom::CHAR_UPPER . ISecureRandom::CHAR_DIGITS)
|
|
|
|
->willReturn('autogeneratedPassword');
|
|
|
|
$this->eventDispatcher->expects($this->once())
|
|
|
|
->method('dispatchTyped')
|
|
|
|
->with(new GenerateSecurePasswordEvent());
|
|
|
|
|
|
|
|
$instance = $this->getInstance(['getSharedWith', 'createMailShare', 'getRawShare', 'createShareObject', 'createShareActivity', 'createPasswordSendActivity']);
|
2018-07-10 13:36:28 +03:00
|
|
|
|
|
|
|
$instance->expects($this->once())->method('getSharedWith')->willReturn([]);
|
|
|
|
$instance->expects($this->once())->method('createMailShare')->with($share)->willReturn(42);
|
|
|
|
$instance->expects($this->once())->method('createShareActivity')->with($share);
|
|
|
|
$instance->expects($this->once())->method('getRawShare')->with(42)->willReturn('rawShare');
|
|
|
|
$instance->expects($this->once())->method('createShareObject')->with('rawShare')->willReturn('shareObject');
|
|
|
|
$share->expects($this->any())->method('getNode')->willReturn($node);
|
|
|
|
|
2020-05-28 21:27:33 +03:00
|
|
|
$share->expects($this->once())->method('getPassword')->willReturn(null);
|
|
|
|
$this->hasher->expects($this->once())->method('hash')->with('autogeneratedPassword')->willReturn('autogeneratedPasswordHashed');
|
|
|
|
$share->expects($this->once())->method('setPassword')->with('autogeneratedPasswordHashed');
|
|
|
|
|
2018-07-10 13:36:28 +03:00
|
|
|
// The autogenerated password should be mailed to the receiver of the share.
|
|
|
|
$this->settingsManager->expects($this->any())->method('enforcePasswordProtection')->willReturn(true);
|
|
|
|
$this->settingsManager->expects($this->any())->method('sendPasswordByMail')->willReturn(true);
|
|
|
|
|
|
|
|
$message = $this->createMock(IMessage::class);
|
|
|
|
$message->expects($this->once())->method('setTo')->with(['receiver@example.com']);
|
|
|
|
$this->mailer->expects($this->once())->method('createMessage')->willReturn($message);
|
2020-05-28 21:26:00 +03:00
|
|
|
$this->mailer->expects($this->once())->method('createEMailTemplate')->with('sharebymail.RecipientPasswordNotification', [
|
|
|
|
'filename' => 'filename',
|
|
|
|
'password' => 'autogeneratedPassword',
|
|
|
|
'initiator' => 'owner',
|
|
|
|
'initiatorEmail' => null,
|
|
|
|
'shareWith' => 'receiver@example.com',
|
|
|
|
]);
|
2018-07-10 13:36:28 +03:00
|
|
|
$this->mailer->expects($this->once())->method('send');
|
|
|
|
|
|
|
|
$this->assertSame('shareObject',
|
|
|
|
$instance->create($share)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-05-28 21:27:33 +03:00
|
|
|
public function testCreateSendPasswordByMailWithPasswordAndWithEnforcedPasswordProtection() {
|
|
|
|
$share = $this->getMockBuilder(IShare::class)->getMock();
|
|
|
|
$share->expects($this->any())->method('getSharedWith')->willReturn('receiver@example.com');
|
|
|
|
$share->expects($this->any())->method('getSendPasswordByTalk')->willReturn(false);
|
|
|
|
$share->expects($this->any())->method('getSharedBy')->willReturn('owner');
|
|
|
|
|
|
|
|
$node = $this->getMockBuilder(File::class)->getMock();
|
|
|
|
$node->expects($this->any())->method('getName')->willReturn('filename');
|
|
|
|
|
|
|
|
$instance = $this->getInstance(['getSharedWith', 'createMailShare', 'getRawShare', 'createShareObject', 'createShareActivity', 'autoGeneratePassword', 'createPasswordSendActivity']);
|
|
|
|
|
|
|
|
$instance->expects($this->once())->method('getSharedWith')->willReturn([]);
|
|
|
|
$instance->expects($this->once())->method('createMailShare')->with($share)->willReturn(42);
|
|
|
|
$instance->expects($this->once())->method('createShareActivity')->with($share);
|
|
|
|
$instance->expects($this->once())->method('getRawShare')->with(42)->willReturn('rawShare');
|
|
|
|
$instance->expects($this->once())->method('createShareObject')->with('rawShare')->willReturn('shareObject');
|
|
|
|
$share->expects($this->any())->method('getNode')->willReturn($node);
|
|
|
|
|
|
|
|
$share->expects($this->once())->method('getPassword')->willReturn('password');
|
|
|
|
$this->hasher->expects($this->once())->method('hash')->with('password')->willReturn('passwordHashed');
|
|
|
|
$share->expects($this->once())->method('setPassword')->with('passwordHashed');
|
|
|
|
|
|
|
|
// The given password (but not the autogenerated password) should be
|
|
|
|
// mailed to the receiver of the share.
|
|
|
|
$this->settingsManager->expects($this->any())->method('enforcePasswordProtection')->willReturn(true);
|
|
|
|
$this->settingsManager->expects($this->any())->method('sendPasswordByMail')->willReturn(true);
|
|
|
|
$instance->expects($this->never())->method('autoGeneratePassword');
|
|
|
|
|
|
|
|
$message = $this->createMock(IMessage::class);
|
|
|
|
$message->expects($this->once())->method('setTo')->with(['receiver@example.com']);
|
|
|
|
$this->mailer->expects($this->once())->method('createMessage')->willReturn($message);
|
|
|
|
$this->mailer->expects($this->once())->method('createEMailTemplate')->with('sharebymail.RecipientPasswordNotification', [
|
|
|
|
'filename' => 'filename',
|
|
|
|
'password' => 'password',
|
|
|
|
'initiator' => 'owner',
|
|
|
|
'initiatorEmail' => null,
|
|
|
|
'shareWith' => 'receiver@example.com',
|
|
|
|
]);
|
|
|
|
$this->mailer->expects($this->once())->method('send');
|
|
|
|
|
|
|
|
$this->assertSame('shareObject',
|
|
|
|
$instance->create($share)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2018-07-10 13:36:28 +03:00
|
|
|
public function testCreateSendPasswordByTalkWithEnforcedPasswordProtection() {
|
|
|
|
$share = $this->getMockBuilder(IShare::class)->getMock();
|
|
|
|
$share->expects($this->any())->method('getSharedWith')->willReturn('receiver@example.com');
|
|
|
|
$share->expects($this->any())->method('getSendPasswordByTalk')->willReturn(true);
|
|
|
|
$share->expects($this->any())->method('getSharedBy')->willReturn('owner');
|
|
|
|
|
|
|
|
$node = $this->getMockBuilder(File::class)->getMock();
|
|
|
|
$node->expects($this->any())->method('getName')->willReturn('filename');
|
|
|
|
|
|
|
|
$instance = $this->getInstance(['getSharedWith', 'createMailShare', 'getRawShare', 'createShareObject', 'createShareActivity', 'autoGeneratePassword', 'createPasswordSendActivity']);
|
|
|
|
|
|
|
|
$instance->expects($this->once())->method('getSharedWith')->willReturn([]);
|
|
|
|
$instance->expects($this->once())->method('createMailShare')->with($share)->willReturn(42);
|
|
|
|
$instance->expects($this->once())->method('createShareActivity')->with($share);
|
|
|
|
$instance->expects($this->once())->method('getRawShare')->with(42)->willReturn('rawShare');
|
|
|
|
$instance->expects($this->once())->method('createShareObject')->with('rawShare')->willReturn('shareObject');
|
|
|
|
$share->expects($this->any())->method('getNode')->willReturn($node);
|
|
|
|
|
2020-05-28 21:27:33 +03:00
|
|
|
$share->expects($this->once())->method('getPassword')->willReturn(null);
|
|
|
|
$this->hasher->expects($this->once())->method('hash')->with('autogeneratedPassword')->willReturn('autogeneratedPasswordHashed');
|
|
|
|
$share->expects($this->once())->method('setPassword')->with('autogeneratedPasswordHashed');
|
|
|
|
|
2018-07-10 13:36:28 +03:00
|
|
|
// The autogenerated password should be mailed to the owner of the share.
|
|
|
|
$this->settingsManager->expects($this->any())->method('enforcePasswordProtection')->willReturn(true);
|
|
|
|
$this->settingsManager->expects($this->any())->method('sendPasswordByMail')->willReturn(true);
|
2020-05-28 21:26:00 +03:00
|
|
|
$instance->expects($this->once())->method('autoGeneratePassword')->with($share)->willReturn('autogeneratedPassword');
|
2018-07-10 13:36:28 +03:00
|
|
|
|
|
|
|
$message = $this->createMock(IMessage::class);
|
|
|
|
$message->expects($this->once())->method('setTo')->with(['owner@example.com' => 'Owner display name']);
|
|
|
|
$this->mailer->expects($this->once())->method('createMessage')->willReturn($message);
|
2020-05-28 21:26:00 +03:00
|
|
|
$this->mailer->expects($this->once())->method('createEMailTemplate')->with('sharebymail.OwnerPasswordNotification', [
|
|
|
|
'filename' => 'filename',
|
|
|
|
'password' => 'autogeneratedPassword',
|
|
|
|
'initiator' => 'Owner display name',
|
|
|
|
'initiatorEmail' => 'owner@example.com',
|
|
|
|
'shareWith' => 'receiver@example.com',
|
|
|
|
]);
|
2018-07-10 13:36:28 +03:00
|
|
|
$this->mailer->expects($this->once())->method('send');
|
|
|
|
|
|
|
|
$user = $this->createMock(IUser::class);
|
|
|
|
$this->userManager->expects($this->once())->method('get')->with('owner')->willReturn($user);
|
|
|
|
$user->expects($this->once())->method('getDisplayName')->willReturn('Owner display name');
|
|
|
|
$user->expects($this->once())->method('getEMailAddress')->willReturn('owner@example.com');
|
|
|
|
|
|
|
|
$this->assertSame('shareObject',
|
|
|
|
$instance->create($share)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-03-12 16:43:27 +03:00
|
|
|
|
2016-10-31 16:19:34 +03:00
|
|
|
public function testCreateFailed() {
|
2019-11-27 17:27:18 +03:00
|
|
|
$this->expectException(\Exception::class);
|
|
|
|
|
2016-10-31 16:19:34 +03:00
|
|
|
$this->share->expects($this->once())->method('getSharedWith')->willReturn('user1');
|
|
|
|
$node = $this->getMockBuilder('OCP\Files\Node')->getMock();
|
|
|
|
$node->expects($this->any())->method('getName')->willReturn('fileName');
|
|
|
|
$this->share->expects($this->any())->method('getNode')->willReturn($node);
|
|
|
|
|
|
|
|
$instance = $this->getInstance(['getSharedWith', 'createMailShare', 'getRawShare', 'createShareObject']);
|
|
|
|
|
|
|
|
$instance->expects($this->once())->method('getSharedWith')->willReturn(['found']);
|
|
|
|
$instance->expects($this->never())->method('createMailShare');
|
|
|
|
$instance->expects($this->never())->method('getRawShare');
|
|
|
|
$instance->expects($this->never())->method('createShareObject');
|
|
|
|
|
|
|
|
$this->assertSame('shareObject',
|
|
|
|
$instance->create($this->share)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testCreateMailShare() {
|
|
|
|
$this->share->expects($this->any())->method('getToken')->willReturn('token');
|
|
|
|
$this->share->expects($this->once())->method('setToken')->with('token');
|
|
|
|
$node = $this->getMockBuilder('OCP\Files\Node')->getMock();
|
|
|
|
$node->expects($this->any())->method('getName')->willReturn('fileName');
|
|
|
|
$this->share->expects($this->any())->method('getNode')->willReturn($node);
|
|
|
|
|
|
|
|
$instance = $this->getInstance(['generateToken', 'addShareToDB', 'sendMailNotification']);
|
|
|
|
|
|
|
|
$instance->expects($this->once())->method('generateToken')->willReturn('token');
|
|
|
|
$instance->expects($this->once())->method('addShareToDB')->willReturn(42);
|
|
|
|
$instance->expects($this->once())->method('sendMailNotification');
|
|
|
|
$this->urlGenerator->expects($this->once())->method('linkToRouteAbsolute')
|
|
|
|
->with('files_sharing.sharecontroller.showShare', ['token' => 'token']);
|
|
|
|
$instance->expects($this->once())->method('sendMailNotification');
|
|
|
|
|
|
|
|
$this->assertSame(42,
|
|
|
|
$this->invokePrivate($instance, 'createMailShare', [$this->share])
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-03-12 16:43:27 +03:00
|
|
|
|
2016-10-31 16:19:34 +03:00
|
|
|
public function testCreateMailShareFailed() {
|
2019-11-27 17:27:18 +03:00
|
|
|
$this->expectException(\OC\HintException::class);
|
|
|
|
|
2016-10-31 16:19:34 +03:00
|
|
|
$this->share->expects($this->any())->method('getToken')->willReturn('token');
|
|
|
|
$this->share->expects($this->once())->method('setToken')->with('token');
|
|
|
|
$node = $this->getMockBuilder('OCP\Files\Node')->getMock();
|
|
|
|
$node->expects($this->any())->method('getName')->willReturn('fileName');
|
|
|
|
$this->share->expects($this->any())->method('getNode')->willReturn($node);
|
|
|
|
|
|
|
|
$instance = $this->getInstance(['generateToken', 'addShareToDB', 'sendMailNotification']);
|
|
|
|
|
|
|
|
$instance->expects($this->once())->method('generateToken')->willReturn('token');
|
|
|
|
$instance->expects($this->once())->method('addShareToDB')->willReturn(42);
|
|
|
|
$instance->expects($this->once())->method('sendMailNotification');
|
|
|
|
$this->urlGenerator->expects($this->once())->method('linkToRouteAbsolute')
|
|
|
|
->with('files_sharing.sharecontroller.showShare', ['token' => 'token']);
|
|
|
|
$instance->expects($this->once())->method('sendMailNotification')
|
|
|
|
->willReturnCallback(
|
2020-04-09 14:53:40 +03:00
|
|
|
function () {
|
2016-10-31 16:19:34 +03:00
|
|
|
throw new \Exception('should be converted to a hint exception');
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->assertSame(42,
|
|
|
|
$this->invokePrivate($instance, 'createMailShare', [$this->share])
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testGenerateToken() {
|
|
|
|
$instance = $this->getInstance();
|
|
|
|
|
|
|
|
$this->secureRandom->expects($this->once())->method('generate')->willReturn('token');
|
|
|
|
|
|
|
|
$this->assertSame('token',
|
|
|
|
$this->invokePrivate($instance, 'generateToken')
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testAddShareToDB() {
|
|
|
|
$itemSource = 11;
|
|
|
|
$itemType = 'file';
|
|
|
|
$shareWith = 'user@server.com';
|
|
|
|
$sharedBy = 'user1';
|
|
|
|
$uidOwner = 'user2';
|
|
|
|
$permissions = 1;
|
|
|
|
$token = 'token';
|
2017-04-10 19:36:23 +03:00
|
|
|
$password = 'password';
|
2018-07-10 13:33:25 +03:00
|
|
|
$sendPasswordByTalk = true;
|
2020-03-12 16:43:27 +03:00
|
|
|
$hideDownload = true;
|
2016-10-31 16:19:34 +03:00
|
|
|
|
|
|
|
|
|
|
|
$instance = $this->getInstance();
|
|
|
|
$id = $this->invokePrivate(
|
|
|
|
$instance,
|
|
|
|
'addShareToDB',
|
|
|
|
[
|
|
|
|
$itemSource,
|
|
|
|
$itemType,
|
|
|
|
$shareWith,
|
|
|
|
$sharedBy,
|
|
|
|
$uidOwner,
|
|
|
|
$permissions,
|
2017-04-10 19:36:23 +03:00
|
|
|
$token,
|
2018-07-10 13:33:25 +03:00
|
|
|
$password,
|
2020-03-12 16:43:27 +03:00
|
|
|
$sendPasswordByTalk,
|
|
|
|
$hideDownload
|
2016-10-31 16:19:34 +03:00
|
|
|
]
|
|
|
|
);
|
|
|
|
|
|
|
|
$qb = $this->connection->getQueryBuilder();
|
|
|
|
$result = $qb->select('*')
|
|
|
|
->from('share')
|
|
|
|
->where($qb->expr()->eq('id', $qb->createNamedParameter($id)))
|
|
|
|
->execute()->fetchAll();
|
|
|
|
|
|
|
|
$this->assertSame(1, count($result));
|
|
|
|
|
|
|
|
$this->assertSame($itemSource, (int)$result[0]['item_source']);
|
|
|
|
$this->assertSame($itemType, $result[0]['item_type']);
|
|
|
|
$this->assertSame($shareWith, $result[0]['share_with']);
|
|
|
|
$this->assertSame($sharedBy, $result[0]['uid_initiator']);
|
|
|
|
$this->assertSame($uidOwner, $result[0]['uid_owner']);
|
|
|
|
$this->assertSame($permissions, (int)$result[0]['permissions']);
|
|
|
|
$this->assertSame($token, $result[0]['token']);
|
2017-04-10 19:36:23 +03:00
|
|
|
$this->assertSame($password, $result[0]['password']);
|
2018-07-10 13:33:25 +03:00
|
|
|
$this->assertSame($sendPasswordByTalk, (bool)$result[0]['password_by_talk']);
|
2020-03-12 16:43:27 +03:00
|
|
|
$this->assertSame($hideDownload, (bool)$result[0]['hide_download']);
|
2016-10-31 16:19:34 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testUpdate() {
|
|
|
|
$itemSource = 11;
|
|
|
|
$itemType = 'file';
|
|
|
|
$shareWith = 'user@server.com';
|
|
|
|
$sharedBy = 'user1';
|
|
|
|
$uidOwner = 'user2';
|
|
|
|
$permissions = 1;
|
|
|
|
$token = 'token';
|
2018-07-13 11:51:22 +03:00
|
|
|
$note = 'personal note';
|
2016-10-31 16:19:34 +03:00
|
|
|
|
|
|
|
|
|
|
|
$instance = $this->getInstance();
|
|
|
|
|
2018-07-13 11:51:22 +03:00
|
|
|
$id = $this->createDummyShare($itemType, $itemSource, $shareWith, $sharedBy, $uidOwner, $permissions, $token, $note);
|
2016-10-31 16:19:34 +03:00
|
|
|
|
|
|
|
$this->share->expects($this->once())->method('getPermissions')->willReturn($permissions + 1);
|
|
|
|
$this->share->expects($this->once())->method('getShareOwner')->willReturn($uidOwner);
|
|
|
|
$this->share->expects($this->once())->method('getSharedBy')->willReturn($sharedBy);
|
2018-07-13 11:51:22 +03:00
|
|
|
$this->share->expects($this->any())->method('getNote')->willReturn($note);
|
2017-03-30 18:03:04 +03:00
|
|
|
$this->share->expects($this->atLeastOnce())->method('getId')->willReturn($id);
|
2016-10-31 16:19:34 +03:00
|
|
|
|
|
|
|
$this->assertSame($this->share,
|
|
|
|
$instance->update($this->share)
|
|
|
|
);
|
|
|
|
|
|
|
|
$qb = $this->connection->getQueryBuilder();
|
|
|
|
$result = $qb->select('*')
|
|
|
|
->from('share')
|
|
|
|
->where($qb->expr()->eq('id', $qb->createNamedParameter($id)))
|
|
|
|
->execute()->fetchAll();
|
|
|
|
|
|
|
|
$this->assertSame(1, count($result));
|
|
|
|
|
|
|
|
$this->assertSame($itemSource, (int)$result[0]['item_source']);
|
|
|
|
$this->assertSame($itemType, $result[0]['item_type']);
|
|
|
|
$this->assertSame($shareWith, $result[0]['share_with']);
|
|
|
|
$this->assertSame($sharedBy, $result[0]['uid_initiator']);
|
|
|
|
$this->assertSame($uidOwner, $result[0]['uid_owner']);
|
|
|
|
$this->assertSame($permissions + 1, (int)$result[0]['permissions']);
|
|
|
|
$this->assertSame($token, $result[0]['token']);
|
2018-07-13 11:51:22 +03:00
|
|
|
$this->assertSame($note, $result[0]['note']);
|
2016-10-31 16:19:34 +03:00
|
|
|
}
|
|
|
|
|
2018-07-10 13:36:28 +03:00
|
|
|
public function dataUpdateSendPassword() {
|
|
|
|
return [
|
|
|
|
['password', 'hashed', 'hashed new', false, false, true],
|
|
|
|
['', 'hashed', 'hashed new', false, false, false],
|
|
|
|
[null, 'hashed', 'hashed new', false, false, false],
|
|
|
|
['password', 'hashed', 'hashed', false, false, false],
|
|
|
|
['password', 'hashed', 'hashed new', false, true, false],
|
|
|
|
['password', 'hashed', 'hashed new', true, false, true],
|
|
|
|
['password', 'hashed', 'hashed', true, false, true],
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider dataUpdateSendPassword
|
|
|
|
*
|
|
|
|
* @param string|null plainTextPassword
|
|
|
|
* @param string originalPassword
|
|
|
|
* @param string newPassword
|
|
|
|
* @param string originalSendPasswordByTalk
|
|
|
|
* @param string newSendPasswordByTalk
|
|
|
|
* @param bool sendMail
|
|
|
|
*/
|
2019-11-22 15:23:56 +03:00
|
|
|
public function testUpdateSendPassword($plainTextPassword, string $originalPassword, string $newPassword, $originalSendPasswordByTalk, $newSendPasswordByTalk, bool $sendMail) {
|
2018-07-10 13:36:28 +03:00
|
|
|
$node = $this->getMockBuilder(File::class)->getMock();
|
|
|
|
$node->expects($this->any())->method('getName')->willReturn('filename');
|
|
|
|
|
2020-07-06 17:08:05 +03:00
|
|
|
$this->settingsManager->method('sendPasswordByMail')->willReturn(true);
|
|
|
|
|
2018-07-10 13:36:28 +03:00
|
|
|
$originalShare = $this->getMockBuilder(IShare::class)->getMock();
|
|
|
|
$originalShare->expects($this->any())->method('getSharedWith')->willReturn('receiver@example.com');
|
|
|
|
$originalShare->expects($this->any())->method('getNode')->willReturn($node);
|
|
|
|
$originalShare->expects($this->any())->method('getId')->willReturn(42);
|
|
|
|
$originalShare->expects($this->any())->method('getPassword')->willReturn($originalPassword);
|
|
|
|
$originalShare->expects($this->any())->method('getSendPasswordByTalk')->willReturn($originalSendPasswordByTalk);
|
|
|
|
|
|
|
|
$share = $this->getMockBuilder(IShare::class)->getMock();
|
|
|
|
$share->expects($this->any())->method('getSharedWith')->willReturn('receiver@example.com');
|
|
|
|
$share->expects($this->any())->method('getNode')->willReturn($node);
|
|
|
|
$share->expects($this->any())->method('getId')->willReturn(42);
|
|
|
|
$share->expects($this->any())->method('getPassword')->willReturn($newPassword);
|
|
|
|
$share->expects($this->any())->method('getSendPasswordByTalk')->willReturn($newSendPasswordByTalk);
|
|
|
|
|
|
|
|
if ($sendMail) {
|
2020-05-28 21:26:00 +03:00
|
|
|
$this->mailer->expects($this->once())->method('createEMailTemplate')->with('sharebymail.RecipientPasswordNotification', [
|
|
|
|
'filename' => 'filename',
|
|
|
|
'password' => $plainTextPassword,
|
|
|
|
'initiator' => null,
|
|
|
|
'initiatorEmail' => null,
|
|
|
|
'shareWith' => 'receiver@example.com',
|
|
|
|
]);
|
2018-07-10 13:36:28 +03:00
|
|
|
$this->mailer->expects($this->once())->method('send');
|
|
|
|
} else {
|
|
|
|
$this->mailer->expects($this->never())->method('send');
|
|
|
|
}
|
|
|
|
|
|
|
|
$instance = $this->getInstance(['getShareById', 'createPasswordSendActivity']);
|
|
|
|
$instance->expects($this->once())->method('getShareById')->willReturn($originalShare);
|
|
|
|
|
|
|
|
$this->assertSame($share,
|
|
|
|
$instance->update($share, $plainTextPassword)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2016-10-31 16:19:34 +03:00
|
|
|
public function testDelete() {
|
2018-11-23 15:04:16 +03:00
|
|
|
$instance = $this->getInstance(['removeShareFromTable', 'createShareActivity']);
|
2016-10-31 16:19:34 +03:00
|
|
|
$this->share->expects($this->once())->method('getId')->willReturn(42);
|
|
|
|
$instance->expects($this->once())->method('removeShareFromTable')->with(42);
|
2018-11-23 15:04:16 +03:00
|
|
|
$instance->expects($this->once())->method('createShareActivity')->with($this->share, 'unshare');
|
2016-10-31 16:19:34 +03:00
|
|
|
$instance->delete($this->share);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testGetShareById() {
|
|
|
|
$instance = $this->getInstance(['createShareObject']);
|
|
|
|
|
|
|
|
$itemSource = 11;
|
|
|
|
$itemType = 'file';
|
|
|
|
$shareWith = 'user@server.com';
|
|
|
|
$sharedBy = 'user1';
|
|
|
|
$uidOwner = 'user2';
|
|
|
|
$permissions = 1;
|
|
|
|
$token = 'token';
|
|
|
|
|
|
|
|
$this->createDummyShare($itemType, $itemSource, $shareWith, "user1wrong", "user2wrong", $permissions, $token);
|
|
|
|
$id2 = $this->createDummyShare($itemType, $itemSource, $shareWith, $sharedBy, $uidOwner, $permissions, $token);
|
|
|
|
|
|
|
|
$instance->expects($this->once())->method('createShareObject')
|
|
|
|
->willReturnCallback(
|
|
|
|
function ($data) use ($uidOwner, $sharedBy, $id2) {
|
|
|
|
$this->assertSame($uidOwner, $data['uid_owner']);
|
|
|
|
$this->assertSame($sharedBy, $data['uid_initiator']);
|
|
|
|
$this->assertSame($id2, (int)$data['id']);
|
|
|
|
return $this->share;
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
$result = $instance->getShareById($id2);
|
|
|
|
|
|
|
|
$this->assertInstanceOf('OCP\Share\IShare', $result);
|
|
|
|
}
|
|
|
|
|
2020-03-12 16:43:27 +03:00
|
|
|
|
2016-10-31 16:19:34 +03:00
|
|
|
public function testGetShareByIdFailed() {
|
2019-11-27 17:27:18 +03:00
|
|
|
$this->expectException(\OCP\Share\Exceptions\ShareNotFound::class);
|
|
|
|
|
2016-10-31 16:19:34 +03:00
|
|
|
$instance = $this->getInstance(['createShareObject']);
|
|
|
|
|
|
|
|
$itemSource = 11;
|
|
|
|
$itemType = 'file';
|
|
|
|
$shareWith = 'user@server.com';
|
|
|
|
$sharedBy = 'user1';
|
|
|
|
$uidOwner = 'user2';
|
|
|
|
$permissions = 1;
|
|
|
|
$token = 'token';
|
|
|
|
|
|
|
|
$id = $this->createDummyShare($itemType, $itemSource, $shareWith, $sharedBy, $uidOwner, $permissions, $token);
|
|
|
|
|
|
|
|
$instance->getShareById($id+1);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testGetShareByPath() {
|
|
|
|
$itemSource = 11;
|
|
|
|
$itemType = 'file';
|
|
|
|
$shareWith = 'user@server.com';
|
|
|
|
$sharedBy = 'user1';
|
|
|
|
$uidOwner = 'user2';
|
|
|
|
$permissions = 1;
|
|
|
|
$token = 'token';
|
|
|
|
|
|
|
|
$node = $this->getMockBuilder('OCP\Files\Node')->getMock();
|
|
|
|
$node->expects($this->once())->method('getId')->willReturn($itemSource);
|
|
|
|
|
|
|
|
|
|
|
|
$instance = $this->getInstance(['createShareObject']);
|
|
|
|
|
|
|
|
$this->createDummyShare($itemType, 111, $shareWith, $sharedBy, $uidOwner, $permissions, $token);
|
|
|
|
$id = $this->createDummyShare($itemType, $itemSource, $shareWith, $sharedBy, $uidOwner, $permissions, $token);
|
|
|
|
|
|
|
|
$instance->expects($this->once())->method('createShareObject')
|
|
|
|
->willReturnCallback(
|
|
|
|
function ($data) use ($uidOwner, $sharedBy, $id) {
|
|
|
|
$this->assertSame($uidOwner, $data['uid_owner']);
|
|
|
|
$this->assertSame($sharedBy, $data['uid_initiator']);
|
|
|
|
$this->assertSame($id, (int)$data['id']);
|
|
|
|
return $this->share;
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
$result = $instance->getSharesByPath($node);
|
|
|
|
|
|
|
|
$this->assertTrue(is_array($result));
|
|
|
|
$this->assertSame(1, count($result));
|
|
|
|
$this->assertInstanceOf('OCP\Share\IShare', $result[0]);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testGetShareByToken() {
|
|
|
|
$itemSource = 11;
|
|
|
|
$itemType = 'file';
|
|
|
|
$shareWith = 'user@server.com';
|
|
|
|
$sharedBy = 'user1';
|
|
|
|
$uidOwner = 'user2';
|
|
|
|
$permissions = 1;
|
|
|
|
$token = 'token';
|
|
|
|
|
|
|
|
$instance = $this->getInstance(['createShareObject']);
|
|
|
|
|
|
|
|
$idMail = $this->createDummyShare($itemType, $itemSource, $shareWith, $sharedBy, $uidOwner, $permissions, $token);
|
2020-06-24 17:49:16 +03:00
|
|
|
$idPublic = $this->createDummyShare($itemType, $itemSource, $shareWith, $sharedBy, $uidOwner, $permissions, $token, '', IShare::TYPE_LINK);
|
2016-10-31 16:19:34 +03:00
|
|
|
|
|
|
|
$this->assertTrue($idMail !== $idPublic);
|
|
|
|
|
|
|
|
$instance->expects($this->once())->method('createShareObject')
|
|
|
|
->willReturnCallback(
|
|
|
|
function ($data) use ($idMail) {
|
|
|
|
$this->assertSame($idMail, (int)$data['id']);
|
|
|
|
return $this->share;
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
2018-07-13 11:51:22 +03:00
|
|
|
$result = $instance->getShareByToken('token');
|
|
|
|
|
|
|
|
$this->assertInstanceOf('OCP\Share\IShare', $result);
|
2016-10-31 16:19:34 +03:00
|
|
|
}
|
|
|
|
|
2020-03-12 16:43:27 +03:00
|
|
|
|
2016-10-31 16:19:34 +03:00
|
|
|
public function testGetShareByTokenFailed() {
|
2019-11-27 17:27:18 +03:00
|
|
|
$this->expectException(\OCP\Share\Exceptions\ShareNotFound::class);
|
|
|
|
|
2016-10-31 16:19:34 +03:00
|
|
|
|
|
|
|
$itemSource = 11;
|
|
|
|
$itemType = 'file';
|
|
|
|
$shareWith = 'user@server.com';
|
|
|
|
$sharedBy = 'user1';
|
|
|
|
$uidOwner = 'user2';
|
|
|
|
$permissions = 1;
|
|
|
|
$token = 'token';
|
|
|
|
|
|
|
|
$instance = $this->getInstance(['createShareObject']);
|
|
|
|
|
|
|
|
$idMail = $this->createDummyShare($itemType, $itemSource, $shareWith, $sharedBy, $uidOwner, $permissions, $token);
|
2020-06-24 17:49:16 +03:00
|
|
|
$idPublic = $this->createDummyShare($itemType, $itemSource, $shareWith, $sharedBy, $uidOwner, $permissions, "token2", '', IShare::TYPE_LINK);
|
2016-10-31 16:19:34 +03:00
|
|
|
|
|
|
|
$this->assertTrue($idMail !== $idPublic);
|
|
|
|
|
|
|
|
$this->assertInstanceOf('OCP\Share\IShare',
|
|
|
|
$instance->getShareByToken('token2')
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testRemoveShareFromTable() {
|
|
|
|
$itemSource = 11;
|
|
|
|
$itemType = 'file';
|
|
|
|
$shareWith = 'user@server.com';
|
|
|
|
$sharedBy = 'user1';
|
|
|
|
$uidOwner = 'user2';
|
|
|
|
$permissions = 1;
|
|
|
|
$token = 'token';
|
|
|
|
|
|
|
|
$instance = $this->getInstance();
|
|
|
|
|
|
|
|
$id = $this->createDummyShare($itemType, $itemSource, $shareWith, $sharedBy, $uidOwner, $permissions, $token);
|
|
|
|
|
|
|
|
$query = $this->connection->getQueryBuilder();
|
|
|
|
$query->select('*')->from('share')
|
|
|
|
->where($query->expr()->eq('id', $query->createNamedParameter($id)));
|
|
|
|
$before = $query->execute()->fetchAll();
|
|
|
|
|
|
|
|
$this->assertTrue(is_array($before));
|
|
|
|
$this->assertSame(1, count($before));
|
|
|
|
|
|
|
|
$this->invokePrivate($instance, 'removeShareFromTable', [$id]);
|
|
|
|
|
|
|
|
$query = $this->connection->getQueryBuilder();
|
|
|
|
$query->select('*')->from('share')
|
|
|
|
->where($query->expr()->eq('id', $query->createNamedParameter($id)));
|
|
|
|
$after = $query->execute()->fetchAll();
|
|
|
|
|
|
|
|
$this->assertTrue(is_array($after));
|
|
|
|
$this->assertEmpty($after);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testUserDeleted() {
|
|
|
|
$itemSource = 11;
|
|
|
|
$itemType = 'file';
|
|
|
|
$shareWith = 'user@server.com';
|
|
|
|
$sharedBy = 'user1';
|
|
|
|
$uidOwner = 'user2';
|
|
|
|
$permissions = 1;
|
|
|
|
$token = 'token';
|
|
|
|
|
|
|
|
$this->createDummyShare($itemType, $itemSource, $shareWith, $sharedBy, $uidOwner, $permissions, $token);
|
|
|
|
$id = $this->createDummyShare($itemType, $itemSource, $shareWith, $sharedBy, 'user2Wrong', $permissions, $token);
|
|
|
|
|
|
|
|
$query = $this->connection->getQueryBuilder();
|
|
|
|
$query->select('*')->from('share');
|
|
|
|
$before = $query->execute()->fetchAll();
|
|
|
|
|
|
|
|
$this->assertTrue(is_array($before));
|
|
|
|
$this->assertSame(2, count($before));
|
|
|
|
|
|
|
|
|
|
|
|
$instance = $this->getInstance();
|
|
|
|
|
2020-06-24 17:49:16 +03:00
|
|
|
$instance->userDeleted($uidOwner, IShare::TYPE_EMAIL);
|
2016-10-31 16:19:34 +03:00
|
|
|
|
|
|
|
$query = $this->connection->getQueryBuilder();
|
|
|
|
$query->select('*')->from('share');
|
|
|
|
$after = $query->execute()->fetchAll();
|
|
|
|
|
|
|
|
$this->assertTrue(is_array($after));
|
|
|
|
$this->assertSame(1, count($after));
|
|
|
|
$this->assertSame($id, (int)$after[0]['id']);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testGetRawShare() {
|
|
|
|
$itemSource = 11;
|
|
|
|
$itemType = 'file';
|
|
|
|
$shareWith = 'user@server.com';
|
|
|
|
$sharedBy = 'user1';
|
|
|
|
$uidOwner = 'user2';
|
|
|
|
$permissions = 1;
|
|
|
|
$token = 'token';
|
|
|
|
|
|
|
|
$instance = $this->getInstance();
|
|
|
|
|
|
|
|
$id = $this->createDummyShare($itemType, $itemSource, $shareWith, $sharedBy, $uidOwner, $permissions, $token);
|
|
|
|
|
|
|
|
$result = $this->invokePrivate($instance, 'getRawShare', [$id]);
|
|
|
|
|
|
|
|
$this->assertTrue(is_array($result));
|
|
|
|
$this->assertSame($itemSource, (int)$result['item_source']);
|
|
|
|
$this->assertSame($itemType, $result['item_type']);
|
|
|
|
$this->assertSame($shareWith, $result['share_with']);
|
|
|
|
$this->assertSame($sharedBy, $result['uid_initiator']);
|
|
|
|
$this->assertSame($uidOwner, $result['uid_owner']);
|
|
|
|
$this->assertSame($permissions, (int)$result['permissions']);
|
|
|
|
$this->assertSame($token, $result['token']);
|
|
|
|
}
|
|
|
|
|
2020-03-12 16:43:27 +03:00
|
|
|
|
2016-10-31 16:19:34 +03:00
|
|
|
public function testGetRawShareFailed() {
|
2019-11-27 17:27:18 +03:00
|
|
|
$this->expectException(\OCP\Share\Exceptions\ShareNotFound::class);
|
|
|
|
|
2016-10-31 16:19:34 +03:00
|
|
|
$itemSource = 11;
|
|
|
|
$itemType = 'file';
|
|
|
|
$shareWith = 'user@server.com';
|
|
|
|
$sharedBy = 'user1';
|
|
|
|
$uidOwner = 'user2';
|
|
|
|
$permissions = 1;
|
|
|
|
$token = 'token';
|
|
|
|
|
|
|
|
$instance = $this->getInstance();
|
|
|
|
|
|
|
|
$id = $this->createDummyShare($itemType, $itemSource, $shareWith, $sharedBy, $uidOwner, $permissions, $token);
|
|
|
|
|
|
|
|
$this->invokePrivate($instance, 'getRawShare', [$id+1]);
|
|
|
|
}
|
|
|
|
|
2020-06-24 17:49:16 +03:00
|
|
|
private function createDummyShare($itemType, $itemSource, $shareWith, $sharedBy, $uidOwner, $permissions, $token, $note='', $shareType = IShare::TYPE_EMAIL) {
|
2016-10-31 16:19:34 +03:00
|
|
|
$qb = $this->connection->getQueryBuilder();
|
|
|
|
$qb->insert('share')
|
|
|
|
->setValue('share_type', $qb->createNamedParameter($shareType))
|
|
|
|
->setValue('item_type', $qb->createNamedParameter($itemType))
|
|
|
|
->setValue('item_source', $qb->createNamedParameter($itemSource))
|
|
|
|
->setValue('file_source', $qb->createNamedParameter($itemSource))
|
|
|
|
->setValue('share_with', $qb->createNamedParameter($shareWith))
|
|
|
|
->setValue('uid_owner', $qb->createNamedParameter($uidOwner))
|
|
|
|
->setValue('uid_initiator', $qb->createNamedParameter($sharedBy))
|
|
|
|
->setValue('permissions', $qb->createNamedParameter($permissions))
|
|
|
|
->setValue('token', $qb->createNamedParameter($token))
|
2018-07-13 11:51:22 +03:00
|
|
|
->setValue('note', $qb->createNamedParameter($note))
|
2016-10-31 16:19:34 +03:00
|
|
|
->setValue('stime', $qb->createNamedParameter(time()));
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Added to fix https://github.com/owncloud/core/issues/22215
|
|
|
|
* Can be removed once we get rid of ajax/share.php
|
|
|
|
*/
|
|
|
|
$qb->setValue('file_target', $qb->createNamedParameter(''));
|
|
|
|
|
|
|
|
$qb->execute();
|
|
|
|
$id = $qb->getLastInsertId();
|
|
|
|
|
|
|
|
return (int)$id;
|
|
|
|
}
|
|
|
|
|
2016-11-01 22:05:09 +03:00
|
|
|
public function testGetSharesInFolder() {
|
|
|
|
$userManager = \OC::$server->getUserManager();
|
|
|
|
$rootFolder = \OC::$server->getRootFolder();
|
|
|
|
|
2017-04-19 18:08:52 +03:00
|
|
|
$provider = $this->getInstance(['sendMailNotification', 'createShareActivity']);
|
2016-11-01 22:05:09 +03:00
|
|
|
|
|
|
|
$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');
|
|
|
|
|
|
|
|
$share1 = $this->shareManager->newShare();
|
|
|
|
$share1->setSharedWith('user@server.com')
|
|
|
|
->setSharedBy($u1->getUID())
|
|
|
|
->setShareOwner($u1->getUID())
|
|
|
|
->setPermissions(\OCP\Constants::PERMISSION_READ)
|
|
|
|
->setNode($file1);
|
|
|
|
$provider->create($share1);
|
|
|
|
|
|
|
|
$share2 = $this->shareManager->newShare();
|
|
|
|
$share2->setSharedWith('user@server.com')
|
|
|
|
->setSharedBy($u2->getUID())
|
|
|
|
->setShareOwner($u1->getUID())
|
|
|
|
->setPermissions(\OCP\Constants::PERMISSION_READ)
|
|
|
|
->setNode($file2);
|
|
|
|
$provider->create($share2);
|
|
|
|
|
|
|
|
$result = $provider->getSharesInFolder($u1->getUID(), $folder1, false);
|
|
|
|
$this->assertCount(1, $result);
|
|
|
|
$this->assertCount(1, $result[$file1->getId()]);
|
|
|
|
|
|
|
|
$result = $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();
|
|
|
|
}
|
2016-11-07 17:08:56 +03:00
|
|
|
|
2017-04-11 13:16:10 +03:00
|
|
|
public function testGetAccessList() {
|
|
|
|
$userManager = \OC::$server->getUserManager();
|
|
|
|
$rootFolder = \OC::$server->getRootFolder();
|
|
|
|
|
2017-04-19 18:08:52 +03:00
|
|
|
$provider = $this->getInstance(['sendMailNotification', 'createShareActivity']);
|
2017-04-11 13:16:10 +03:00
|
|
|
|
|
|
|
$u1 = $userManager->createUser('testFed', md5(time()));
|
|
|
|
$u2 = $userManager->createUser('testFed2', md5(time()));
|
|
|
|
|
|
|
|
$folder = $rootFolder->getUserFolder($u1->getUID())->newFolder('foo');
|
|
|
|
|
2017-04-11 13:40:36 +03:00
|
|
|
$accessList = $provider->getAccessList([$folder], true);
|
2017-04-13 16:14:30 +03:00
|
|
|
$this->assertArrayHasKey('public', $accessList);
|
|
|
|
$this->assertFalse($accessList['public']);
|
2017-04-11 13:40:36 +03:00
|
|
|
$accessList = $provider->getAccessList([$folder], false);
|
2017-04-13 16:14:30 +03:00
|
|
|
$this->assertArrayHasKey('public', $accessList);
|
|
|
|
$this->assertFalse($accessList['public']);
|
2017-04-11 13:40:36 +03:00
|
|
|
|
2017-04-11 13:16:10 +03:00
|
|
|
$share1 = $this->shareManager->newShare();
|
|
|
|
$share1->setSharedWith('user@server.com')
|
|
|
|
->setSharedBy($u1->getUID())
|
|
|
|
->setShareOwner($u1->getUID())
|
|
|
|
->setPermissions(\OCP\Constants::PERMISSION_READ)
|
|
|
|
->setNode($folder);
|
|
|
|
$share1 = $provider->create($share1);
|
|
|
|
|
|
|
|
$share2 = $this->shareManager->newShare();
|
|
|
|
$share2->setSharedWith('user2@server.com')
|
|
|
|
->setSharedBy($u2->getUID())
|
|
|
|
->setShareOwner($u1->getUID())
|
|
|
|
->setPermissions(\OCP\Constants::PERMISSION_READ)
|
|
|
|
->setNode($folder);
|
|
|
|
$share2 = $provider->create($share2);
|
|
|
|
|
|
|
|
$accessList = $provider->getAccessList([$folder], true);
|
2017-04-13 16:14:30 +03:00
|
|
|
$this->assertArrayHasKey('public', $accessList);
|
|
|
|
$this->assertTrue($accessList['public']);
|
2017-04-11 13:16:10 +03:00
|
|
|
$accessList = $provider->getAccessList([$folder], false);
|
2017-04-13 16:14:30 +03:00
|
|
|
$this->assertArrayHasKey('public', $accessList);
|
|
|
|
$this->assertTrue($accessList['public']);
|
2017-04-11 13:16:10 +03:00
|
|
|
|
|
|
|
$provider->delete($share2);
|
|
|
|
|
|
|
|
$accessList = $provider->getAccessList([$folder], true);
|
2017-04-13 16:14:30 +03:00
|
|
|
$this->assertArrayHasKey('public', $accessList);
|
|
|
|
$this->assertTrue($accessList['public']);
|
2017-04-11 13:16:10 +03:00
|
|
|
$accessList = $provider->getAccessList([$folder], false);
|
2017-04-13 16:14:30 +03:00
|
|
|
$this->assertArrayHasKey('public', $accessList);
|
|
|
|
$this->assertTrue($accessList['public']);
|
2017-04-11 13:16:10 +03:00
|
|
|
|
|
|
|
$provider->delete($share1);
|
|
|
|
|
|
|
|
$accessList = $provider->getAccessList([$folder], true);
|
2017-04-13 16:14:30 +03:00
|
|
|
$this->assertArrayHasKey('public', $accessList);
|
|
|
|
$this->assertFalse($accessList['public']);
|
2017-04-11 13:16:10 +03:00
|
|
|
$accessList = $provider->getAccessList([$folder], false);
|
2017-04-13 16:14:30 +03:00
|
|
|
$this->assertArrayHasKey('public', $accessList);
|
|
|
|
$this->assertFalse($accessList['public']);
|
2017-04-11 13:16:10 +03:00
|
|
|
|
|
|
|
$u1->delete();
|
|
|
|
$u2->delete();
|
|
|
|
}
|
2017-04-18 23:23:07 +03:00
|
|
|
|
|
|
|
public function testSendMailNotificationWithSameUserAndUserEmail() {
|
|
|
|
$provider = $this->getInstance();
|
|
|
|
$user = $this->createMock(IUser::class);
|
|
|
|
$this->userManager
|
2017-05-04 13:41:44 +03:00
|
|
|
->expects($this->once())
|
2017-04-18 23:23:07 +03:00
|
|
|
->method('get')
|
|
|
|
->with('OwnerUser')
|
|
|
|
->willReturn($user);
|
|
|
|
$user
|
2017-05-04 13:41:44 +03:00
|
|
|
->expects($this->once())
|
2017-04-18 23:23:07 +03:00
|
|
|
->method('getDisplayName')
|
|
|
|
->willReturn('Mrs. Owner User');
|
|
|
|
$message = $this->createMock(Message::class);
|
|
|
|
$this->mailer
|
|
|
|
->expects($this->once())
|
|
|
|
->method('createMessage')
|
|
|
|
->willReturn($message);
|
|
|
|
$template = $this->createMock(IEMailTemplate::class);
|
|
|
|
$this->mailer
|
|
|
|
->expects($this->once())
|
|
|
|
->method('createEMailTemplate')
|
|
|
|
->willReturn($template);
|
|
|
|
$template
|
|
|
|
->expects($this->once())
|
|
|
|
->method('addHeader');
|
|
|
|
$template
|
|
|
|
->expects($this->once())
|
|
|
|
->method('addHeading')
|
|
|
|
->with('Mrs. Owner User shared »file.txt« with you');
|
|
|
|
$template
|
|
|
|
->expects($this->once())
|
|
|
|
->method('addBodyText')
|
|
|
|
->with(
|
|
|
|
'Mrs. Owner User shared »file.txt« with you. Click the button below to open it.',
|
|
|
|
'Mrs. Owner User shared »file.txt« with you.'
|
|
|
|
);
|
|
|
|
$template
|
|
|
|
->expects($this->once())
|
|
|
|
->method('addBodyButton')
|
|
|
|
->with(
|
|
|
|
'Open »file.txt«',
|
|
|
|
'https://example.com/file.txt'
|
|
|
|
);
|
|
|
|
$message
|
|
|
|
->expects($this->once())
|
|
|
|
->method('setTo')
|
|
|
|
->with(['john@doe.com']);
|
|
|
|
$this->defaults
|
|
|
|
->expects($this->once())
|
|
|
|
->method('getName')
|
|
|
|
->willReturn('UnitTestCloud');
|
|
|
|
$message
|
|
|
|
->expects($this->once())
|
|
|
|
->method('setFrom')
|
|
|
|
->with([
|
|
|
|
\OCP\Util::getDefaultEmailAddress('UnitTestCloud') => 'Mrs. Owner User via UnitTestCloud'
|
|
|
|
]);
|
|
|
|
$user
|
|
|
|
->expects($this->once())
|
|
|
|
->method('getEMailAddress')
|
|
|
|
->willReturn('owner@example.com');
|
|
|
|
$message
|
|
|
|
->expects($this->once())
|
|
|
|
->method('setReplyTo')
|
|
|
|
->with(['owner@example.com' => 'Mrs. Owner User']);
|
|
|
|
$this->defaults
|
2017-09-11 00:59:11 +03:00
|
|
|
->expects($this->exactly(2))
|
2017-04-18 23:23:07 +03:00
|
|
|
->method('getSlogan')
|
|
|
|
->willReturn('Testing like 1990');
|
|
|
|
$template
|
|
|
|
->expects($this->once())
|
|
|
|
->method('addFooter')
|
|
|
|
->with('UnitTestCloud - Testing like 1990');
|
|
|
|
$template
|
|
|
|
->expects($this->once())
|
2017-09-15 12:01:21 +03:00
|
|
|
->method('setSubject')
|
|
|
|
->with('Mrs. Owner User shared »file.txt« with you');
|
2017-04-18 23:23:07 +03:00
|
|
|
$message
|
|
|
|
->expects($this->once())
|
2017-09-15 12:01:21 +03:00
|
|
|
->method('useTemplate')
|
|
|
|
->with($template);
|
2017-04-18 23:23:07 +03:00
|
|
|
$this->mailer
|
|
|
|
->expects($this->once())
|
|
|
|
->method('send')
|
|
|
|
->with($message);
|
|
|
|
|
|
|
|
self::invokePrivate(
|
|
|
|
$provider,
|
|
|
|
'sendMailNotification',
|
|
|
|
[
|
|
|
|
'file.txt',
|
|
|
|
'https://example.com/file.txt',
|
|
|
|
'OwnerUser',
|
|
|
|
'john@doe.com',
|
2017-08-26 12:47:35 +03:00
|
|
|
null,
|
2017-04-18 23:23:07 +03:00
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testSendMailNotificationWithDifferentUserAndNoUserEmail() {
|
|
|
|
$provider = $this->getInstance();
|
|
|
|
$initiatorUser = $this->createMock(IUser::class);
|
|
|
|
$this->userManager
|
2017-05-04 13:41:44 +03:00
|
|
|
->expects($this->once())
|
2017-04-18 23:23:07 +03:00
|
|
|
->method('get')
|
|
|
|
->with('InitiatorUser')
|
|
|
|
->willReturn($initiatorUser);
|
|
|
|
$initiatorUser
|
|
|
|
->expects($this->once())
|
|
|
|
->method('getDisplayName')
|
|
|
|
->willReturn('Mr. Initiator User');
|
|
|
|
$message = $this->createMock(Message::class);
|
|
|
|
$this->mailer
|
|
|
|
->expects($this->once())
|
|
|
|
->method('createMessage')
|
|
|
|
->willReturn($message);
|
|
|
|
$template = $this->createMock(IEMailTemplate::class);
|
|
|
|
$this->mailer
|
|
|
|
->expects($this->once())
|
|
|
|
->method('createEMailTemplate')
|
|
|
|
->willReturn($template);
|
|
|
|
$template
|
|
|
|
->expects($this->once())
|
|
|
|
->method('addHeader');
|
|
|
|
$template
|
|
|
|
->expects($this->once())
|
|
|
|
->method('addHeading')
|
2017-05-04 13:41:44 +03:00
|
|
|
->with('Mr. Initiator User shared »file.txt« with you');
|
2017-04-18 23:23:07 +03:00
|
|
|
$template
|
|
|
|
->expects($this->once())
|
|
|
|
->method('addBodyText')
|
|
|
|
->with(
|
2017-05-04 13:41:44 +03:00
|
|
|
'Mr. Initiator User shared »file.txt« with you. Click the button below to open it.',
|
|
|
|
'Mr. Initiator User shared »file.txt« with you.'
|
2017-04-18 23:23:07 +03:00
|
|
|
);
|
|
|
|
$template
|
|
|
|
->expects($this->once())
|
|
|
|
->method('addBodyButton')
|
|
|
|
->with(
|
|
|
|
'Open »file.txt«',
|
|
|
|
'https://example.com/file.txt'
|
|
|
|
);
|
|
|
|
$message
|
|
|
|
->expects($this->once())
|
|
|
|
->method('setTo')
|
|
|
|
->with(['john@doe.com']);
|
|
|
|
$this->defaults
|
|
|
|
->expects($this->once())
|
|
|
|
->method('getName')
|
|
|
|
->willReturn('UnitTestCloud');
|
|
|
|
$message
|
|
|
|
->expects($this->once())
|
|
|
|
->method('setFrom')
|
|
|
|
->with([
|
2017-05-04 13:41:44 +03:00
|
|
|
\OCP\Util::getDefaultEmailAddress('UnitTestCloud') => 'Mr. Initiator User via UnitTestCloud'
|
2017-04-18 23:23:07 +03:00
|
|
|
]);
|
|
|
|
$message
|
|
|
|
->expects($this->never())
|
|
|
|
->method('setReplyTo');
|
|
|
|
$template
|
|
|
|
->expects($this->once())
|
|
|
|
->method('addFooter')
|
|
|
|
->with('');
|
|
|
|
$template
|
|
|
|
->expects($this->once())
|
2017-09-15 12:01:21 +03:00
|
|
|
->method('setSubject')
|
|
|
|
->with('Mr. Initiator User shared »file.txt« with you');
|
2017-04-18 23:23:07 +03:00
|
|
|
$message
|
|
|
|
->expects($this->once())
|
2017-09-15 12:01:21 +03:00
|
|
|
->method('useTemplate')
|
|
|
|
->with($template);
|
2017-04-18 23:23:07 +03:00
|
|
|
$this->mailer
|
|
|
|
->expects($this->once())
|
|
|
|
->method('send')
|
|
|
|
->with($message);
|
|
|
|
|
|
|
|
self::invokePrivate(
|
|
|
|
$provider,
|
|
|
|
'sendMailNotification',
|
|
|
|
[
|
|
|
|
'file.txt',
|
|
|
|
'https://example.com/file.txt',
|
|
|
|
'InitiatorUser',
|
|
|
|
'john@doe.com',
|
2017-08-26 12:47:35 +03:00
|
|
|
null,
|
2017-04-18 23:23:07 +03:00
|
|
|
]);
|
|
|
|
}
|
2016-10-31 16:19:34 +03:00
|
|
|
}
|