From 04b878ed03ce5ad4fdd9844dd1c6c6ce7ca8ccad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=90=9D=E5=8D=9C?= Date: Thu, 19 Mar 2026 02:18:50 +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=95BMPA=E5=BF=AB=E6=8D=B7=E7=AD=9B=E9=80=89=E6=88=90?= =?UTF-8?q?=E7=BB=84=E6=8A=A4=E6=A0=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...ShouldKeepBmpaFailedAndSuccessPairTest.php | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 tests/Feature/AdminPlatformOrderQuickFiltersShouldKeepBmpaFailedAndSuccessPairTest.php diff --git a/tests/Feature/AdminPlatformOrderQuickFiltersShouldKeepBmpaFailedAndSuccessPairTest.php b/tests/Feature/AdminPlatformOrderQuickFiltersShouldKeepBmpaFailedAndSuccessPairTest.php new file mode 100644 index 0000000..dd87c16 --- /dev/null +++ b/tests/Feature/AdminPlatformOrderQuickFiltersShouldKeepBmpaFailedAndSuccessPairTest.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_quick_filters_should_keep_bmpa_failed_and_success_pair(): void + { + $this->loginAsPlatformAdmin(); + + $res = $this->get('/admin/platform-orders'); + $res->assertOk(); + + $html = (string) $res->getContent(); + $this->assertMatchesRegularExpression('/po-quickfilter-bmpa-failed[\s\S]*?BMPA失败[\s\S]*?po-quickfilter-bmpa-success[\s\S]*?BMPA成功/u', $html); + } +}