我正在尝试向现有模型周围的一组现有命令中添加一个新命令。
围绕此命令的其他测试均按预期正常工作。
Artisan::output()
但是,只要我在模型上添加任何方法调用,这个新的测试 + 命令就会停止写入Webhook
。count()
,,first()
。all()
没关系,而且我是否将其分配给变量或使用它也没有关系。没有异常,没有 PHP/Laravel 日志错误。直接从 bash artisan 调用时,完全相同的命令可以完美运行。这是我见过的最奇怪的事情。
测试:
<?php
namespace Tests\Unit\Console\Commands\Webhook\Customer;
use App\Models\Shopify\Webhook;
use Illuminate\Support\Facades\Artisan;
use Tests\TestCase;
class ProcessUpdateWebhooksTest extends TestCase
{
/** @test */
public function thisWorksRightHere()
{
Artisan::call('boxer:process-customer-update-webhooks');
$this->assertStringContainsString(
'Hey',
Artisan::output()
);
}
}
命令(注释Webhook::count()
使其通过,否则命令的输出为''
'并且失败。
<?php
namespace App\Console\Commands\Webhook\Customer;
use App\Models\Shopify\Webhook;
use Illuminate\Console\Command;
class ProcessUpdateWebhooks extends Command
{
protected $signature = 'boxer:process-customer-update-webhooks
{--w|webhooks=25 : The maximum number of webhooks to process}';
protected $description = 'Process orders/create webhooks from Shopify (default 25)';
public function handle()
{
Webhook::count();
$this->info('Hey');
}
}
phpunit.xml 部分:
<php>
<env name="APP_ENV" value="testing"/>
<env name="BCRYPT_ROUNDS" value="4"/>
<env name="CACHE_DRIVER" value="array"/>
<!-- <env name="DB_DATABASE" value="testing"/> -->
<env name="MAIL_MAILER" value="array"/>
<env name="QUEUE_CONNECTION" value="sync"/>
<env name="SESSION_DRIVER" value="array"/>
<env name="TELESCOPE_ENABLED" value="false"/>
</php>
测试输出:
PHPUnit 9.6.19 by Sebastian Bergmann and contributors.
F 1 / 1 (100%)
Time: 00:02.211, Memory: 48.50 MB
There was 1 failure:
1) Tests\Unit\Console\Commands\Webhook\Customer\ProcessUpdateWebhooksTest::thisWorksRightHere
Failed asserting that '' contains "Hey".
/Users/peterdemarco/code/projects/boxer/tests/Unit/Console/Commands/Webhook/Customer/ProcessUpdateWebhooksTest.php:16
/Users/peterdemarco/code/projects/boxer/vendor/laravel/framework/src/Illuminate/Foundation/Testing/TestCase.php:61
所有其他测试(再次包括针对此模型的所有其他测试以及使用此模型的命令)均运行正常。
我错过了什么?