Laravel包测试:在使用RefreshDatabase时运行框架迁移。
<p>我有一个 Laravel 包,使用迁移向默认的用户表(随 Laravel 一起提供的)添加了一个字段:</p>
<pre class="brush:php;toolbar:false;">public function up() : void
{
Schema::table('users', function (Blueprint $table) {
$table->enum('role', ['super-admin', 'admin', 'tipster', 'user'])->default('user');
});
}
</pre>
<p>当我想要运行我的单元测试时,这会导致我的测试失败,因为在我的包中,默认的用户表不存在。</p><p>在使用这个 trait 时,是否有一种方法可以运行框架提供的迁移?我已经使用了一个解决方法来修复这个问题,但我真的不希望仅仅为了单元测试而修改代码。</p><p><br /></p>
<pre class="brush:php;toolbar:false;">public function up() : void
{
if (App::runningUnitTests())
{
Schema::create('users', function (Blueprint $table) {
$table->id();
$table->string('name');
$table->string('email')->unique();
$table->enum('role', ['super-admin', 'admin', 'tipster', 'user'])->default('user');
$table->timestamp('email_verified_at')->nullable();
$table->string('password');
$table->rememberToken();
$table->timestamps();
});
}
else
{
Schema::table('users', function (Blueprint $table) {
$table->enum('role', ['super-admin', 'admin', 'tipster', 'user'])->default('user');
});
}
}<span style="font-family:'sans serif, tahoma, verdana, helvetica';"><span style="white-space:nowrap;"> </span></span></pre>
<p><br /></p>