1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270 |
- <?php
- /**
- * @copyright Copyright (c) 2016 Bjoern Schiessle <bjoern@schiessle.org>
- *
- * @author Bjoern Schiessle <bjoern@schiessle.org>
- * @author Christoph Wurst <christoph@winzerhof-wurst.at>
- * @author Daniel Calviño Sánchez <danxuliu@gmail.com>
- * @author Daniel Kesselberg <mail@danielkesselberg.de>
- * @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>
- *
- * @license GNU AGPL version 3 or any later version
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as
- * published by the Free Software Foundation, either version 3 of the
- * License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- */
- namespace OCA\ShareByMail\Tests;
- use OC\Mail\Message;
- use OCA\ShareByMail\Settings\SettingsManager;
- use OCA\ShareByMail\ShareByMailProvider;
- use OCP\Defaults;
- use OCP\EventDispatcher\IEventDispatcher;
- use OCP\Files\File;
- use OCP\Files\IRootFolder;
- use OCP\IDBConnection;
- use OCP\IL10N;
- use OCP\ILogger;
- use OCP\IURLGenerator;
- use OCP\IUser;
- use OCP\IUserManager;
- use OCP\Mail\IEMailTemplate;
- use OCP\Mail\IMailer;
- use OCP\Mail\IMessage;
- use OCP\Security\Events\GenerateSecurePasswordEvent;
- use OCP\Security\IHasher;
- 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;
- /** @var IL10N | \PHPUnit\Framework\MockObject\MockObject */
- private $l;
- /** @var ILogger | \PHPUnit\Framework\MockObject\MockObject */
- private $logger;
- /** @var IRootFolder | \PHPUnit\Framework\MockObject\MockObject */
- private $rootFolder;
- /** @var IUserManager | \PHPUnit\Framework\MockObject\MockObject */
- private $userManager;
- /** @var ISecureRandom | \PHPUnit\Framework\MockObject\MockObject */
- private $secureRandom;
- /** @var IMailer | \PHPUnit\Framework\MockObject\MockObject */
- private $mailer;
- /** @var IURLGenerator | \PHPUnit\Framework\MockObject\MockObject */
- private $urlGenerator;
- /** @var IShare | \PHPUnit\Framework\MockObject\MockObject */
- private $share;
- /** @var \OCP\Activity\IManager | \PHPUnit\Framework\MockObject\MockObject */
- private $activityManager;
- /** @var SettingsManager | \PHPUnit\Framework\MockObject\MockObject */
- private $settingsManager;
- /** @var Defaults|\PHPUnit\Framework\MockObject\MockObject */
- private $defaults;
- /** @var IHasher | \PHPUnit\Framework\MockObject\MockObject */
- private $hasher;
- /** @var IEventDispatcher */
- private $eventDispatcher;
- protected function setUp(): void {
- parent::setUp();
- $this->shareManager = \OC::$server->getShareManager();
- $this->connection = \OC::$server->getDatabaseConnection();
- $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->userManager = $this->getMockBuilder(IUserManager::class)->getMock();
- $this->secureRandom = $this->getMockBuilder('\OCP\Security\ISecureRandom')->getMock();
- $this->mailer = $this->getMockBuilder('\OCP\Mail\IMailer')->getMock();
- $this->urlGenerator = $this->getMockBuilder(IURLGenerator::class)->getMock();
- $this->share = $this->getMockBuilder(IShare::class)->getMock();
- $this->activityManager = $this->getMockBuilder('OCP\Activity\IManager')->getMock();
- $this->settingsManager = $this->getMockBuilder(SettingsManager::class)->disableOriginalConstructor()->getMock();
- $this->defaults = $this->createMock(Defaults::class);
- $this->hasher = $this->getMockBuilder(IHasher::class)->getMock();
- $this->eventDispatcher = $this->getMockBuilder(IEventDispatcher::class)->getMock();
- $this->userManager->expects($this->any())->method('userExists')->willReturn(true);
- }
- /**
- * get instance of Mocked ShareByMailProvider
- *
- * @param array $mockedMethods internal methods which should be mocked
- * @return \PHPUnit\Framework\MockObject\MockObject | ShareByMailProvider
- */
- 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,
- $this->urlGenerator,
- $this->activityManager,
- $this->settingsManager,
- $this->defaults,
- $this->hasher,
- $this->eventDispatcher
- ]
- );
- 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,
- $this->urlGenerator,
- $this->activityManager,
- $this->settingsManager,
- $this->defaults,
- $this->hasher,
- $this->eventDispatcher
- );
- }
- protected function tearDown(): void {
- $this->connection->getQueryBuilder()->delete('share')->execute();
- parent::tearDown();
- }
- public function testCreate() {
- $share = $this->getMockBuilder(IShare::class)->getMock();
- $share->expects($this->any())->method('getSharedWith')->willReturn('user1');
- $node = $this->getMockBuilder(File::class)->getMock();
- $node->expects($this->any())->method('getName')->willReturn('filename');
- $instance = $this->getInstance(['getSharedWith', 'createMailShare', 'getRawShare', 'createShareObject', 'createShareActivity', 'sendPassword']);
- $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');
- $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);
- $this->assertSame('shareObject',
- $instance->create($share)
- );
- }
- public function testCreateSendPasswordByMailWithoutEnforcedPasswordProtection() {
- $share = $this->getMockBuilder(IShare::class)->getMock();
- $share->expects($this->any())->method('getSharedWith')->willReturn('receiver@examplelölöl.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)
- );
- }
- 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)
- );
- }
- 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');
- $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']);
- $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(null);
- $this->hasher->expects($this->once())->method('hash')->with('autogeneratedPassword')->willReturn('autogeneratedPasswordHashed');
- $share->expects($this->once())->method('setPassword')->with('autogeneratedPasswordHashed');
- // 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);
- $this->mailer->expects($this->once())->method('createEMailTemplate')->with('sharebymail.RecipientPasswordNotification', [
- 'filename' => 'filename',
- 'password' => 'autogeneratedPassword',
- 'initiator' => 'owner',
- 'initiatorEmail' => null,
- 'shareWith' => 'receiver@example.com',
- ]);
- $this->mailer->expects($this->once())->method('send');
- $this->assertSame('shareObject',
- $instance->create($share)
- );
- }
- 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)
- );
- }
- 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);
- $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');
- // 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);
- $instance->expects($this->once())->method('autoGeneratePassword')->with($share)->willReturn('autogeneratedPassword');
- $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);
- $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',
- ]);
- $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)
- );
- }
- public function testCreateFailed() {
- $this->expectException(\Exception::class);
- $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');
- $this->share->expects($this->any())->method('getSharedWith')->willReturn('valid@valid.com');
- $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])
- );
- }
- public function testCreateMailShareFailed() {
- $this->expectException(\OC\HintException::class);
- $this->share->expects($this->any())->method('getToken')->willReturn('token');
- $this->share->expects($this->once())->method('setToken')->with('token');
- $this->share->expects($this->any())->method('getSharedWith')->willReturn('valid@valid.com');
- $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(
- function () {
- 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';
- $password = 'password';
- $sendPasswordByTalk = true;
- $hideDownload = true;
- $expiration = new \DateTime();
- $instance = $this->getInstance();
- $id = $this->invokePrivate(
- $instance,
- 'addShareToDB',
- [
- $itemSource,
- $itemType,
- $shareWith,
- $sharedBy,
- $uidOwner,
- $permissions,
- $token,
- $password,
- $sendPasswordByTalk,
- $hideDownload,
- $expiration
- ]
- );
- $qb = $this->connection->getQueryBuilder();
- $qb->select('*')
- ->from('share')
- ->where($qb->expr()->eq('id', $qb->createNamedParameter($id)));
- $qResult = $qb->execute();
- $result = $qResult->fetchAll();
- $qResult->closeCursor();
- $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']);
- $this->assertSame($password, $result[0]['password']);
- $this->assertSame($sendPasswordByTalk, (bool)$result[0]['password_by_talk']);
- $this->assertSame($hideDownload, (bool)$result[0]['hide_download']);
- $this->assertSame($expiration->getTimestamp(), \DateTime::createFromFormat('Y-m-d H:i:s', $result[0]['expiration'])->getTimestamp());
- }
- public function testUpdate() {
- $itemSource = 11;
- $itemType = 'file';
- $shareWith = 'user@server.com';
- $sharedBy = 'user1';
- $uidOwner = 'user2';
- $permissions = 1;
- $token = 'token';
- $note = 'personal note';
- $instance = $this->getInstance();
- $id = $this->createDummyShare($itemType, $itemSource, $shareWith, $sharedBy, $uidOwner, $permissions, $token, $note);
- $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);
- $this->share->expects($this->any())->method('getNote')->willReturn($note);
- $this->share->expects($this->atLeastOnce())->method('getId')->willReturn($id);
- $this->assertSame($this->share,
- $instance->update($this->share)
- );
- $qb = $this->connection->getQueryBuilder();
- $qb->select('*')
- ->from('share')
- ->where($qb->expr()->eq('id', $qb->createNamedParameter($id)));
- $qResult = $qb->execute();
- $result = $qResult->fetchAll();
- $qResult->closeCursor();
- $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']);
- $this->assertSame($note, $result[0]['note']);
- }
- 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
- */
- public function testUpdateSendPassword($plainTextPassword, string $originalPassword, string $newPassword, $originalSendPasswordByTalk, $newSendPasswordByTalk, bool $sendMail) {
- $node = $this->getMockBuilder(File::class)->getMock();
- $node->expects($this->any())->method('getName')->willReturn('filename');
- $this->settingsManager->method('sendPasswordByMail')->willReturn(true);
- $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) {
- $this->mailer->expects($this->once())->method('createEMailTemplate')->with('sharebymail.RecipientPasswordNotification', [
- 'filename' => 'filename',
- 'password' => $plainTextPassword,
- 'initiator' => null,
- 'initiatorEmail' => null,
- 'shareWith' => 'receiver@example.com',
- ]);
- $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)
- );
- }
- public function testDelete() {
- $instance = $this->getInstance(['removeShareFromTable', 'createShareActivity']);
- $this->share->expects($this->once())->method('getId')->willReturn(42);
- $instance->expects($this->once())->method('removeShareFromTable')->with(42);
- $instance->expects($this->once())->method('createShareActivity')->with($this->share, 'unshare');
- $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);
- }
- public function testGetShareByIdFailed() {
- $this->expectException(\OCP\Share\Exceptions\ShareNotFound::class);
- $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);
- $idPublic = $this->createDummyShare($itemType, $itemSource, $shareWith, $sharedBy, $uidOwner, $permissions, $token, '', IShare::TYPE_LINK);
- $this->assertTrue($idMail !== $idPublic);
- $instance->expects($this->once())->method('createShareObject')
- ->willReturnCallback(
- function ($data) use ($idMail) {
- $this->assertSame($idMail, (int)$data['id']);
- return $this->share;
- }
- );
- $result = $instance->getShareByToken('token');
- $this->assertInstanceOf('OCP\Share\IShare', $result);
- }
- public function testGetShareByTokenFailed() {
- $this->expectException(\OCP\Share\Exceptions\ShareNotFound::class);
- $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);
- $idPublic = $this->createDummyShare($itemType, $itemSource, $shareWith, $sharedBy, $uidOwner, $permissions, "token2", '', IShare::TYPE_LINK);
- $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)));
- $result = $query->execute();
- $before = $result->fetchAll();
- $result->closeCursor();
- $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)));
- $result = $query->execute();
- $after = $result->fetchAll();
- $result->closeCursor();
- $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');
- $result = $query->execute();
- $before = $result->fetchAll();
- $result->closeCursor();
- $this->assertTrue(is_array($before));
- $this->assertSame(2, count($before));
- $instance = $this->getInstance();
- $instance->userDeleted($uidOwner, IShare::TYPE_EMAIL);
- $query = $this->connection->getQueryBuilder();
- $query->select('*')->from('share');
- $result = $query->execute();
- $after = $result->fetchAll();
- $result->closeCursor();
- $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']);
- }
- public function testGetRawShareFailed() {
- $this->expectException(\OCP\Share\Exceptions\ShareNotFound::class);
- $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]);
- }
- private function createDummyShare($itemType, $itemSource, $shareWith, $sharedBy, $uidOwner, $permissions, $token, $note = '', $shareType = IShare::TYPE_EMAIL) {
- $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))
- ->setValue('note', $qb->createNamedParameter($note))
- ->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;
- }
- public function testGetSharesInFolder() {
- $userManager = \OC::$server->getUserManager();
- $rootFolder = \OC::$server->getRootFolder();
- $provider = $this->getInstance(['sendMailNotification', 'createShareActivity']);
- $this->mailer->expects($this->any())->method('validateMailAddress')->willReturn(true);
- $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();
- }
- public function testGetAccessList() {
- $userManager = \OC::$server->getUserManager();
- $rootFolder = \OC::$server->getRootFolder();
- $provider = $this->getInstance(['sendMailNotification', 'createShareActivity']);
- $this->mailer->expects($this->any())->method('validateMailAddress')->willReturn(true);
- $u1 = $userManager->createUser('testFed', md5(time()));
- $u2 = $userManager->createUser('testFed2', md5(time()));
- $folder = $rootFolder->getUserFolder($u1->getUID())->newFolder('foo');
- $accessList = $provider->getAccessList([$folder], true);
- $this->assertArrayHasKey('public', $accessList);
- $this->assertFalse($accessList['public']);
- $accessList = $provider->getAccessList([$folder], false);
- $this->assertArrayHasKey('public', $accessList);
- $this->assertFalse($accessList['public']);
- $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);
- $this->assertArrayHasKey('public', $accessList);
- $this->assertTrue($accessList['public']);
- $accessList = $provider->getAccessList([$folder], false);
- $this->assertArrayHasKey('public', $accessList);
- $this->assertTrue($accessList['public']);
- $provider->delete($share2);
- $accessList = $provider->getAccessList([$folder], true);
- $this->assertArrayHasKey('public', $accessList);
- $this->assertTrue($accessList['public']);
- $accessList = $provider->getAccessList([$folder], false);
- $this->assertArrayHasKey('public', $accessList);
- $this->assertTrue($accessList['public']);
- $provider->delete($share1);
- $accessList = $provider->getAccessList([$folder], true);
- $this->assertArrayHasKey('public', $accessList);
- $this->assertFalse($accessList['public']);
- $accessList = $provider->getAccessList([$folder], false);
- $this->assertArrayHasKey('public', $accessList);
- $this->assertFalse($accessList['public']);
- $u1->delete();
- $u2->delete();
- }
- public function testSendMailNotificationWithSameUserAndUserEmail() {
- $provider = $this->getInstance();
- $user = $this->createMock(IUser::class);
- $this->userManager
- ->expects($this->once())
- ->method('get')
- ->with('OwnerUser')
- ->willReturn($user);
- $user
- ->expects($this->once())
- ->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
- ->expects($this->exactly(2))
- ->method('getSlogan')
- ->willReturn('Testing like 1990');
- $template
- ->expects($this->once())
- ->method('addFooter')
- ->with('UnitTestCloud - Testing like 1990');
- $template
- ->expects($this->once())
- ->method('setSubject')
- ->with('Mrs. Owner User shared »file.txt« with you');
- $message
- ->expects($this->once())
- ->method('useTemplate')
- ->with($template);
- $this->mailer
- ->expects($this->once())
- ->method('send')
- ->with($message);
- self::invokePrivate(
- $provider,
- 'sendMailNotification',
- [
- 'file.txt',
- 'https://example.com/file.txt',
- 'OwnerUser',
- 'john@doe.com',
- null,
- ]);
- }
- public function testSendMailNotificationWithDifferentUserAndNoUserEmail() {
- $provider = $this->getInstance();
- $initiatorUser = $this->createMock(IUser::class);
- $this->userManager
- ->expects($this->once())
- ->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')
- ->with('Mr. Initiator User shared »file.txt« with you');
- $template
- ->expects($this->once())
- ->method('addBodyText')
- ->with(
- 'Mr. Initiator User shared »file.txt« with you. Click the button below to open it.',
- 'Mr. Initiator 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') => 'Mr. Initiator User via UnitTestCloud'
- ]);
- $message
- ->expects($this->never())
- ->method('setReplyTo');
- $template
- ->expects($this->once())
- ->method('addFooter')
- ->with('');
- $template
- ->expects($this->once())
- ->method('setSubject')
- ->with('Mr. Initiator User shared »file.txt« with you');
- $message
- ->expects($this->once())
- ->method('useTemplate')
- ->with($template);
- $this->mailer
- ->expects($this->once())
- ->method('send')
- ->with($message);
- self::invokePrivate(
- $provider,
- 'sendMailNotification',
- [
- 'file.txt',
- 'https://example.com/file.txt',
- 'InitiatorUser',
- 'john@doe.com',
- null,
- ]);
- }
- }
|