补强平台订单主链组完整护栏

This commit is contained in:
萝卜
2026-03-19 04:00:34 +08:00
parent ed69d91b53
commit a0eb9bdfb5

View File

@@ -0,0 +1,32 @@
<?php
namespace Tests\Feature;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class AdminPlatformOrderQuickFiltersPrimaryGroupShouldRenderCompleteGovernanceSetTest extends TestCase
{
use RefreshDatabase;
protected function loginAsPlatformAdmin(): void
{
$this->seed();
$this->post('/admin/login', [
'email' => 'platform.admin@demo.local',
'password' => 'Platform@123456',
])->assertRedirect('/admin');
}
public function test_platform_orders_primary_group_should_render_complete_governance_set(): void
{
$this->loginAsPlatformAdmin();
$res = $this->get('/admin/platform-orders');
$res->assertOk();
$html = (string) $res->getContent();
$this->assertMatchesRegularExpression('/data-role="po-quickfilter-primary-group"[\s\S]*?po-quickfilter-unpaid[\s\S]*?待支付[\s\S]*?po-quickfilter-bmpa-processable[\s\S]*?可BMPA处理[\s\S]*?po-quickfilter-pending-effective[\s\S]*?待生效[\s\S]*?po-quickfilter-syncable[\s\S]*?可同步订阅[\s\S]*?po-quickfilter-sync-failed[\s\S]*?同步失败[\s\S]*?po-quickfilter-bmpa-failed[\s\S]*?BMPA失败[\s\S]*?po-quickfilter-bmpa-success[\s\S]*?BMPA成功[\s\S]*?po-quickfilter-renewal-missing-sub[\s\S]*?续费缺订阅/u', $html);
}
}