From 54315039176211030a989ab3cb068b27c0c10160 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=90=9D=E5=8D=9C?= Date: Thu, 19 Mar 2026 02:45:50 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=AD=A3=E5=B9=B3=E5=8F=B0=E8=AE=A2?= =?UTF-8?q?=E5=8D=95=E6=94=B6=E5=85=A5=E9=A3=8E=E9=99=A9=E4=B8=89=E8=8A=82?= =?UTF-8?q?=E7=82=B9=E6=8A=A4=E6=A0=8F=E6=96=AD=E8=A8=80=E6=96=B9=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...iltersShouldKeepRevenueRiskTripletTest.php | 37 +++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 tests/Feature/AdminPlatformOrderQuickFiltersShouldKeepRevenueRiskTripletTest.php diff --git a/tests/Feature/AdminPlatformOrderQuickFiltersShouldKeepRevenueRiskTripletTest.php b/tests/Feature/AdminPlatformOrderQuickFiltersShouldKeepRevenueRiskTripletTest.php new file mode 100644 index 0000000..087ff46 --- /dev/null +++ b/tests/Feature/AdminPlatformOrderQuickFiltersShouldKeepRevenueRiskTripletTest.php @@ -0,0 +1,37 @@ +seed(); + + $this->post('/admin/login', [ + 'email' => 'platform.admin@demo.local', + 'password' => 'Platform@123456', + ])->assertRedirect('/admin'); + } + + public function test_platform_orders_quick_filters_should_keep_revenue_risk_triplet(): void + { + $this->loginAsPlatformAdmin(); + + $res = $this->get('/admin/platform-orders'); + $res->assertOk(); + + $html = (string) $res->getContent(); + $this->assertStringContainsString('data-role="po-quickfilter-unpaid"', $html); + $this->assertStringContainsString('待支付', $html); + $this->assertStringContainsString('data-role="po-quickfilter-paid-no-receipt"', $html); + $this->assertStringContainsString('已付无回执', $html); + $this->assertStringContainsString('data-role="po-quickfilter-renewal-missing-sub"', $html); + $this->assertStringContainsString('续费缺订阅', $html); + } +}