fix unit tests
Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
This commit is contained in:
parent
972b4c04e2
commit
aa54d31bd2
2 changed files with 4 additions and 10 deletions
|
@ -381,7 +381,6 @@ class ShareByMailProvider implements IShareProvider {
|
|||
$initiatorUser = $this->userManager->get($initiator);
|
||||
$ownerDisplayName = ($ownerUser instanceof IUser) ? $ownerUser->getDisplayName() : $owner;
|
||||
$initiatorDisplayName = ($initiatorUser instanceof IUser) ? $initiatorUser->getDisplayName() : $initiator;
|
||||
$initiatorEmailAddress = ($initiatorUser instanceof IUser) ? $initiatorUser->getEMailAddress() : null;
|
||||
if ($owner === $initiator) {
|
||||
$subject = (string)$this->l->t('%s shared »%s« with you', array($ownerDisplayName, $filename));
|
||||
} else {
|
||||
|
@ -408,11 +407,6 @@ class ShareByMailProvider implements IShareProvider {
|
|||
$link
|
||||
);
|
||||
|
||||
$emailTemplate->addFooter();
|
||||
if ($initiatorEmailAddress !== null) {
|
||||
$message->setFrom([$initiatorEmailAddress => $initiatorDisplayName]);
|
||||
}
|
||||
|
||||
$message->setTo([$shareWith]);
|
||||
|
||||
// The "From" contains the sharers name
|
||||
|
|
|
@ -187,11 +187,11 @@ class ShareByMailProviderTest extends TestCase {
|
|||
$node = $this->getMockBuilder(File::class)->getMock();
|
||||
$node->expects($this->any())->method('getName')->willReturn('filename');
|
||||
|
||||
$instance = $this->getInstance(['getSharedWith', 'createMailShare', 'getRawShare', 'createShareObject', 'createActivity', 'sendPassword']);
|
||||
$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('createActivity')->with($share);
|
||||
$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);
|
||||
|
@ -661,7 +661,7 @@ class ShareByMailProviderTest extends TestCase {
|
|||
$userManager = \OC::$server->getUserManager();
|
||||
$rootFolder = \OC::$server->getRootFolder();
|
||||
|
||||
$provider = $this->getInstance(['sendMailNotification', 'createActivity']);
|
||||
$provider = $this->getInstance(['sendMailNotification', 'createShareActivity']);
|
||||
|
||||
$u1 = $userManager->createUser('testFed', md5(time()));
|
||||
$u2 = $userManager->createUser('testFed2', md5(time()));
|
||||
|
@ -703,7 +703,7 @@ class ShareByMailProviderTest extends TestCase {
|
|||
$userManager = \OC::$server->getUserManager();
|
||||
$rootFolder = \OC::$server->getRootFolder();
|
||||
|
||||
$provider = $this->getInstance(['sendMailNotification', 'createActivity']);
|
||||
$provider = $this->getInstance(['sendMailNotification', 'createShareActivity']);
|
||||
|
||||
$u1 = $userManager->createUser('testFed', md5(time()));
|
||||
$u2 = $userManager->createUser('testFed2', md5(time()));
|
||||
|
|
Loading…
Reference in a new issue