补强平台订单退款状态快捷筛选成组护栏

This commit is contained in:
萝卜
2026-03-19 02:24:59 +08:00
parent f3925f287b
commit 3c7d3fd66b

View File

@@ -0,0 +1,32 @@
<?php
namespace Tests\Feature;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class AdminPlatformOrderQuickFiltersShouldKeepPartiallyRefundedAndRefundedPairTest 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_partially_refunded_and_refunded_pair(): void
{
$this->loginAsPlatformAdmin();
$res = $this->get('/admin/platform-orders');
$res->assertOk();
$html = (string) $res->getContent();
$this->assertMatchesRegularExpression('/po-quickfilter-partially-refunded[\s\S]*?部分退款[\s\S]*?po-quickfilter-refunded[\s\S]*?已退款/u', $html);
}
}