补强平台订单失败治理快捷筛选护栏

This commit is contained in:
萝卜
2026-03-19 02:41:02 +08:00
parent 87de9e80ad
commit 7d847801bb

View File

@@ -0,0 +1,32 @@
<?php
namespace Tests\Feature;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class AdminPlatformOrderQuickFiltersShouldKeepFailureGovernanceTripletTest 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_quick_filters_should_keep_failure_governance_triplet(): void
{
$this->loginAsPlatformAdmin();
$res = $this->get('/admin/platform-orders');
$res->assertOk();
$html = (string) $res->getContent();
$this->assertMatchesRegularExpression('/po-quickfilter-sync-failed[\s\S]*?同步失败[\s\S]*?po-quickfilter-bmpa-failed[\s\S]*?BMPA失败[\s\S]*?po-quickfilter-renewal-missing-sub[\s\S]*?续费缺订阅/u', $html);
}
}