Mail::fake Laravel 单元测试不工作,真正的控制器工作
Posted
技术标签:
【中文标题】Mail::fake Laravel 单元测试不工作,真正的控制器工作【英文标题】:Mail::fake Laravel unit tests are not working, real controller works 【发布时间】:2018-09-11 05:15:26 【问题描述】:我想测试 Laravel 5.6 中可邮寄的 RegistrationUser 是否可以发送到选定的电子邮件地址。
我创建了 RegistrationUser 类:
<?php
namespace App\Mail;
use Illuminate\Bus\Queueable;
use Illuminate\Mail\Mailable;
use Illuminate\Queue\SerializesModels;
use Illuminate\Contracts\Queue\ShouldQueue;
class RegistrationUser extends Mailable
use Queueable, SerializesModels;
/**
* Create a new message instance.
*
* @return void
*/
public function __construct()
//
/**
* Build the message.
*
* @return $this
*/
public function build()
return $this->view('emails.registration.user');
之后我创建了 EmailTest 类:
<?php
namespace Tests\Feature;
use Tests\TestCase;
use App\Mail\RegistrationUser;
use Illuminate\Support\Facades\Mail;
use Illuminate\Foundation\Testing\WithFaker;
use Illuminate\Foundation\Testing\RefreshDatabase;
class EmailTest extends TestCase
/**
* A basic test example.
*
* @return void
*/
public function testExample()
Mail::fake();
// Assert a message was sent to the given users...
Mail::assertSent(RegistrationUser::class, function ($mail)
return $mail->hasTo('test@o2.pl');
);
当我运行 PHPUnit 时出现此错误:
PHPUnit 7.0.3 by Sebastian Bergmann and contributors.
F.. 3 / 3 (100%)
Time: 143 ms, Memory: 18.00MB
There was 1 failure:
1) Tests\Feature\EmailTest::testExample
The expected [App\Mail\RegistrationUser] mailable was not sent.
Failed asserting that false is true.
/Users/mateusz/Sites/fifa/backend/vendor/laravel/framework/src/Illuminate/Support/Testing/Fakes/MailFake.php:41
/Users/mateusz/Sites/fifa/backend/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php:221
/Users/mateusz/Sites/fifa/backend/tests/Feature/EmailTest.php:24
FAILURES!
Tests: 3, Assertions: 3, Failures: 1.
与实际控制人发送电子邮件工作并传递电子邮件。
我不知道为什么这个测试代码会报告失败。
【问题讨论】:
我不确定我是否在您的代码中看到任何实际发送电子邮件的内容 【参考方案1】:您需要构建您要发送的消息。
在您的 assertSent
中添加以下内容
$mail->build();
所以现在是这样的:
Mail::assertSent(RegistrationUser::class, function ($mail)
$mail->build();
return $mail->hasTo('test@example.com');
);
【讨论】:
以上是关于Mail::fake Laravel 单元测试不工作,真正的控制器工作的主要内容,如果未能解决你的问题,请参考以下文章