diff --git a/tests/Feature/AdminPlatformOrderQuickFiltersShouldKeepFailureGovernanceTripletTest.php b/tests/Feature/AdminPlatformOrderQuickFiltersShouldKeepFailureGovernanceTripletTest.php new file mode 100644 index 0000000..ce2bf5b --- /dev/null +++ b/tests/Feature/AdminPlatformOrderQuickFiltersShouldKeepFailureGovernanceTripletTest.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_failure_governance_triplet(): void + { + $this->loginAsPlatformAdmin(); + + $res = $this->get('/admin/platform-orders'); + $res->assertOk(); + + $html = (string) $res->getContent(); + $this->assertMatchesRegularExpression('/po-quickfilter-sync-failed[\s\S]*?同步失败[\s\S]*?po-quickfilter-bmpa-failed[\s\S]*?BMPA失败[\s\S]*?po-quickfilter-renewal-missing-sub[\s\S]*?续费缺订阅/u', $html); + } +}