补强平台订单异常批量分组结构护栏
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
<?php
|
||||
|
||||
namespace Tests\Feature;
|
||||
|
||||
use Illuminate\Foundation\Testing\RefreshDatabase;
|
||||
use Tests\TestCase;
|
||||
|
||||
class AdminPlatformOrderQuickFiltersGovernanceBatchGroupShouldContainCoreLinksTest 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_governance_batch_group_should_contain_core_links(): void
|
||||
{
|
||||
$this->loginAsPlatformAdmin();
|
||||
|
||||
$res = $this->get('/admin/platform-orders');
|
||||
$res->assertOk();
|
||||
|
||||
$html = (string) $res->getContent();
|
||||
$this->assertMatchesRegularExpression('/data-role="po-quickfilter-governance-batch-group"[\s\S]*?po-quickfilter-reconcile-mismatch[\s\S]*?对账不一致[\s\S]*?po-quickfilter-refund-inconsistent[\s\S]*?退款不一致[\s\S]*?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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user