-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathBccAssertionsTest.php
92 lines (70 loc) · 2.25 KB
/
BccAssertionsTest.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<?php
namespace Tests\Fluent;
use KirschbaumDevelopment\MailIntercept\AssertableMessage;
use PHPUnit\Framework\ExpectationFailedException;
use Symfony\Component\Mime\Email;
use Tests\TestCase;
class BccAssertionsTest extends TestCase
{
public function testMailBccSingleEmail()
{
$email = $this->faker->email;
$mail = new AssertableMessage(
(new Email())->bcc($email)
);
$mail->assertBcc($email);
}
public function testMailBccThrowsProperExpectationFailedException()
{
$email = $this->faker->unique()->email;
$mail = new AssertableMessage(
(new Email())->bcc($this->faker->unique()->email)
);
$this->expectException(ExpectationFailedException::class);
$this->expectExceptionMessage("Mail was not BCC'd to the expected address [{$email}].");
$mail->assertBcc($email);
}
public function testMailSentToMultipleEmails()
{
$emails = [
$this->faker->email,
$this->faker->email,
];
$mail = new AssertableMessage(
(new Email())->bcc(...$emails)
);
$mail->assertBcc($emails);
}
public function testMailNotSentToSingleEmail()
{
$email = $this->faker->unique()->email;
$mail = new AssertableMessage(
(new Email())->bcc($this->faker->unique()->email)
);
$mail->assertNotBcc($email);
}
public function testMailNotSentToThrowsProperExpectationFailedException()
{
$email = $this->faker->unique()->email;
$mail = new AssertableMessage(
(new Email())->bcc($email)
);
$this->expectException(ExpectationFailedException::class);
$this->expectExceptionMessage("Mail was BCC'd to the expected address [{$email}].");
$mail->assertNotBcc($email);
}
public function testMailNotSentToMultipleEmails()
{
$emails = [
$this->faker->unique()->email,
$this->faker->unique()->email,
];
$mail = new AssertableMessage(
(new Email())->bcc(
$this->faker->unique()->email,
$this->faker->unique()->email
)
);
$mail->assertNotBcc($emails);
}
}