补强平台订单收付组退款状态护栏

This commit is contained in:
萝卜
2026-03-19 03:47:04 +08:00
parent 2f6630c318
commit 7d1ebf69e8

View File

@@ -0,0 +1,32 @@
<?php
namespace Tests\Feature;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class AdminPlatformOrderQuickFiltersReceiptRefundGroupShouldContainRefundStatusLinksTest 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_refund_status_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-partially-refunded[\s\S]*?部分退款[\s\S]*?po-quickfilter-refunded[\s\S]*?已退款/u', $html);
}
}