19 declare(strict_types=1);
31 $user = $this->createMock(ilObjUser::class);
32 $mail_options = $this->createMock(ilMailOptions::class);
33 $recipient =
new Recipient(
$user_id, $user, $mail_options, $this->createMock(Conductor::class));
34 $this->assertEquals(
$user_id, $recipient->getUserId());
35 $this->assertSame($mail_options, $recipient->getMailOptions());
38 $this->assertEquals(
$user_id, $recipient->getUserId());
39 $this->assertSame($mail_options, $recipient->getMailOptions());
45 $mail =
"mail@test.de";
46 $mail_2 =
"mail2@test.de";
47 $external_mails = [$mail, $mail_2];
49 $result = $this->createMock(Result::class);
51 $transformation = $this->createMock(Transformation::class);
52 $transformation->expects(self::once())->method(
'applyTo')->willReturn($result);
54 $legal_documents = $this->createMock(Conductor::class);
55 $legal_documents->expects(self::once())->method(
'userCanReadInternalMail')->willReturn($transformation);
57 $user = $this->createMock(ilObjUser::class);
58 $user->expects($this->once())
61 $user->expects($this->once())
62 ->method(
"checkTimeLimit")
65 $mail_options = $this->createMock(ilMailOptions::class);
66 $mail_options->expects($this->exactly(3))
67 ->method(
"getIncomingType")
70 $mail_options->expects($this->atLeastOnce())
71 ->method(
"getExternalEmailAddresses")
72 ->willReturn($external_mails);
75 $this->assertEquals(
$user_id, $recipient->getUserId());
76 $this->assertTrue($recipient->isUser());
77 $this->assertSame($result, $recipient->evaluateInternalMailReadability());
78 $this->assertTrue($recipient->isUserActive());
80 $this->assertSame($mail_options, $recipient->getMailOptions());
81 $this->assertTrue($recipient->userWantsToReceiveExternalMails());
82 $this->assertFalse($recipient->onlyToExternalMailAddress());
83 $this->assertIsArray($recipient->getExternalMailAddress());
84 $this->assertCount(2, $recipient->getExternalMailAddress());
85 $this->assertContainsOnly(
'string', $recipient->getExternalMailAddress());
91 $mail =
"mails@test.de";
92 $mail_2 =
"mails2@test.de";
93 $external_mails = [$mail, $mail_2];
95 $legal_documents = $this->createMock(Conductor::class);
96 $legal_documents->expects(self::never())->method(
'userCanReadInternalMail');
98 $user = $this->createMock(ilObjUser::class);
99 $user->expects($this->once())
100 ->method(
"getActive")
102 $user->expects($this->once())
103 ->method(
"checkTimeLimit")
106 $mail_options = $this->createMock(ilMailOptions::class);
107 $mail_options->expects($this->exactly(3))
108 ->method(
"getIncomingType")
111 $mail_options->expects($this->atLeastOnce())
112 ->method(
"getExternalEmailAddresses")
113 ->willReturn($external_mails);
116 $this->assertEquals(
$user_id, $recipient->getUserId());
117 $this->assertTrue($recipient->isUser());
118 $result = $recipient->evaluateInternalMailReadability();
119 $this->assertFalse($result->isOk());
120 $this->assertSame(
'Account expired.', $result->error());
121 $this->assertFalse($recipient->isUserActive());
123 $this->assertSame($mail_options, $recipient->getMailOptions());
124 $this->assertFalse($recipient->userWantsToReceiveExternalMails());
125 $this->assertFalse($recipient->onlyToExternalMailAddress());
126 $this->assertIsArray($recipient->getExternalMailAddress());
127 $this->assertCount(2, $recipient->getExternalMailAddress());
128 $this->assertContainsOnly(
'string', $recipient->getExternalMailAddress());
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null