Created
August 18, 2021 18:30
-
-
Save danilopinotti/7f787a5cfe8bb222dbc9e7693b3c359b to your computer and use it in GitHub Desktop.
Test sent emails in Laravel 8. Applied to test emails sent by Mail or Notification facades.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Tests; | |
use App\User; | |
use Tests\TestCase; | |
use Illuminate\Notifications\Notification; | |
class MyNotification extends Notification | |
{ | |
public function via($notifiable) | |
{ | |
return ['mail']; | |
} | |
public function toMail($notifiable) | |
{ | |
return (new MailMessage()) | |
->subject('Test mail') | |
->line('Test mail'); | |
} | |
} | |
class SentMailsTest extends TestCase | |
{ | |
protected function setUp(): void | |
{ | |
parent::setUp(); | |
$this->user = (new User()) | |
->fill(['email' => '[email protected]']); | |
$this->sentMails = app('mailer') | |
->getSwiftMailer() | |
->getTransport() | |
->messages(); | |
} | |
public function test_should_notification_sends_email() | |
{ | |
$this->user->notify(new MyNotification()); | |
$this->assertCount(1, $this->sentMails, 'Email should be sent'); | |
$mail = $this->sentMails[0]; | |
$this->assertArrayHasKey('[email protected]', $mail->getTo()); | |
$this->assertStringContainsString('Test mail', $mail->getBody()); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment