From 06e38e79d5e854d22b362f5f15439f301c57cee1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=90=9D=E5=8D=9C?= Date: Thu, 19 Mar 2026 06:39:21 +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=E5=B7=A5=E5=85=B7=E5=8C=BA=E4=B8=AD=E6=AE=B5=E5=B7=A5?= =?UTF-8?q?=E4=BD=9C=E6=B5=81=E6=8A=A4=E6=A0=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...ShouldKeepCoreBatchWorkflowTripletTest.php | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 tests/Feature/AdminPlatformOrderIndexToolGroupsShouldKeepCoreBatchWorkflowTripletTest.php diff --git a/tests/Feature/AdminPlatformOrderIndexToolGroupsShouldKeepCoreBatchWorkflowTripletTest.php b/tests/Feature/AdminPlatformOrderIndexToolGroupsShouldKeepCoreBatchWorkflowTripletTest.php new file mode 100644 index 0000000..f80024c --- /dev/null +++ b/tests/Feature/AdminPlatformOrderIndexToolGroupsShouldKeepCoreBatchWorkflowTripletTest.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_tool_groups_should_keep_core_batch_workflow_triplet(): void + { + $this->loginAsPlatformAdmin(); + + $res = $this->get('/admin/platform-orders'); + $res->assertOk(); + + $html = (string) $res->getContent(); + $this->assertMatchesRegularExpression('/po-tools-group-batch-activate-subscriptions[\s\S]*?po-tools-group-batch-bmpa[\s\S]*?po-tools-group-batch-mark-activated/u', $html); + } +}