补强平台订单收付治理分组结构护栏

This commit is contained in:
萝卜
2026-03-19 03:43:10 +08:00
parent c80c743013
commit 857d2be3a6

View File

@@ -0,0 +1,32 @@
<?php
namespace Tests\Feature;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class AdminPlatformOrderQuickFiltersReceiptRefundGroupShouldContainCoreGovernanceLinksTest 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_receipt_refund_group_should_contain_core_governance_links(): void
{
$this->loginAsPlatformAdmin();
$res = $this->get('/admin/platform-orders');
$res->assertOk();
$html = (string) $res->getContent();
$this->assertMatchesRegularExpression('/data-role="po-quickfilter-receipt-refund-group"[\s\S]*?po-quickfilter-receipt-has[\s\S]*?有回执[\s\S]*?po-quickfilter-paid-no-receipt[\s\S]*?已付无回执[\s\S]*?po-quickfilter-refund-has[\s\S]*?有退款[\s\S]*?po-quickfilter-refund-none[\s\S]*?无退款/u', $html);
}
}