补强平台订单24h批量运营三节点护栏

This commit is contained in:
萝卜
2026-03-19 02:32:59 +08:00
parent 901de1de2e
commit 084bbbfd8f

View File

@@ -0,0 +1,32 @@
<?php
namespace Tests\Feature;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class AdminPlatformOrderQuickFiltersShouldKeepAllBatch24hTripletTest 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_all_batch_24h_triplet(): void
{
$this->loginAsPlatformAdmin();
$res = $this->get('/admin/platform-orders');
$res->assertOk();
$html = (string) $res->getContent();
$this->assertMatchesRegularExpression('/po-quickfilter-batch-synced-24h[\s\S]*?近24小时批量同步[\s\S]*?po-quickfilter-batch-bmpa-24h[\s\S]*?近24小时批量BMPA[\s\S]*?po-quickfilter-batch-activated-24h[\s\S]*?近24小时批量生效/u', $html);
}
}