diff --git a/tests/Feature/AdminPlatformOrderQuickFiltersShouldKeepAllBatch24hTripletTest.php b/tests/Feature/AdminPlatformOrderQuickFiltersShouldKeepAllBatch24hTripletTest.php new file mode 100644 index 0000000..c3e5baf --- /dev/null +++ b/tests/Feature/AdminPlatformOrderQuickFiltersShouldKeepAllBatch24hTripletTest.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_all_batch_24h_triplet(): void + { + $this->loginAsPlatformAdmin(); + + $res = $this->get('/admin/platform-orders'); + $res->assertOk(); + + $html = (string) $res->getContent(); + $this->assertMatchesRegularExpression('/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); + } +}