From 2f6630c31882fdb17adae6fde1c63c1f29e34542 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=90=9D=E5=8D=9C?= Date: Thu, 19 Mar 2026 03:45:06 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A1=A5=E5=BC=BA=E5=B9=B3=E5=8F=B0=E8=AE=A2?= =?UTF-8?q?=E5=8D=95=E5=BC=82=E5=B8=B8=E6=89=B9=E9=87=8F=E5=88=86=E7=BB=84?= =?UTF-8?q?=E7=BB=93=E6=9E=84=E6=8A=A4=E6=A0=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...ceBatchGroupShouldContainCoreLinksTest.php | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 tests/Feature/AdminPlatformOrderQuickFiltersGovernanceBatchGroupShouldContainCoreLinksTest.php diff --git a/tests/Feature/AdminPlatformOrderQuickFiltersGovernanceBatchGroupShouldContainCoreLinksTest.php b/tests/Feature/AdminPlatformOrderQuickFiltersGovernanceBatchGroupShouldContainCoreLinksTest.php new file mode 100644 index 0000000..20b622a --- /dev/null +++ b/tests/Feature/AdminPlatformOrderQuickFiltersGovernanceBatchGroupShouldContainCoreLinksTest.php @@ -0,0 +1,32 @@ +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); + } +}