From 7d1ebf69e86bf30c675a9e256b38bef6c182ef9b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=90=9D=E5=8D=9C?= Date: Thu, 19 Mar 2026 03:47:04 +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=E6=94=B6=E4=BB=98=E7=BB=84=E9=80=80=E6=AC=BE=E7=8A=B6?= =?UTF-8?q?=E6=80=81=E6=8A=A4=E6=A0=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...roupShouldContainRefundStatusLinksTest.php | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 tests/Feature/AdminPlatformOrderQuickFiltersReceiptRefundGroupShouldContainRefundStatusLinksTest.php diff --git a/tests/Feature/AdminPlatformOrderQuickFiltersReceiptRefundGroupShouldContainRefundStatusLinksTest.php b/tests/Feature/AdminPlatformOrderQuickFiltersReceiptRefundGroupShouldContainRefundStatusLinksTest.php new file mode 100644 index 0000000..d3c1b1b --- /dev/null +++ b/tests/Feature/AdminPlatformOrderQuickFiltersReceiptRefundGroupShouldContainRefundStatusLinksTest.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_receipt_refund_group_should_contain_refund_status_links(): void + { + $this->loginAsPlatformAdmin(); + + $res = $this->get('/admin/platform-orders'); + $res->assertOk(); + + $html = (string) $res->getContent(); + $this->assertMatchesRegularExpression('/data-role="po-quickfilter-receipt-refund-group"[\s\S]*?po-quickfilter-partially-refunded[\s\S]*?部分退款[\s\S]*?po-quickfilter-refunded[\s\S]*?已退款/u', $html); + } +}