最近一次 BMPA 失败
@if($bmpaError)
diff --git a/tests/Feature/AdminPlatformOrderShowFailedBlocksShouldHaveAnchorsTest.php b/tests/Feature/AdminPlatformOrderShowFailedBlocksShouldHaveAnchorsTest.php
new file mode 100644
index 0000000..e18d715
--- /dev/null
+++ b/tests/Feature/AdminPlatformOrderShowFailedBlocksShouldHaveAnchorsTest.php
@@ -0,0 +1,74 @@
+seed();
+
+ $this->post('/admin/login', [
+ 'email' => 'platform.admin@demo.local',
+ 'password' => 'Platform@123456',
+ ])->assertRedirect('/admin');
+ }
+
+ public function test_show_failed_blocks_should_have_anchors(): void
+ {
+ $this->loginAsPlatformAdmin();
+
+ $merchant = Merchant::query()->firstOrFail();
+ $plan = Plan::query()->create([
+ 'code' => 'po_show_failed_anchor_plan',
+ 'name' => '失败区块锚点测试套餐',
+ 'billing_cycle' => 'monthly',
+ 'price' => 10,
+ 'list_price' => 10,
+ 'status' => 'active',
+ 'sort' => 10,
+ 'published_at' => now(),
+ ]);
+
+ $order = PlatformOrder::query()->create([
+ 'merchant_id' => $merchant->id,
+ 'plan_id' => $plan->id,
+ 'order_no' => 'PO_SHOW_FAILED_ANCHOR_0001',
+ 'order_type' => 'new_purchase',
+ 'status' => 'pending',
+ 'payment_status' => 'paid',
+ 'plan_name' => $plan->name,
+ 'billing_cycle' => $plan->billing_cycle,
+ 'period_months' => 1,
+ 'quantity' => 1,
+ 'payable_amount' => 10,
+ 'paid_amount' => 10,
+ 'placed_at' => now(),
+ 'paid_at' => now(),
+ 'meta' => [
+ 'subscription_activation_error' => [
+ 'message' => 'sync failed',
+ 'at' => now()->toDateTimeString(),
+ ],
+ 'batch_mark_paid_and_activate_error' => [
+ 'message' => 'bmpa failed',
+ 'at' => now()->toDateTimeString(),
+ ],
+ ],
+ ]);
+
+ $res = $this->get('/admin/platform-orders/' . $order->id);
+ $res->assertOk();
+
+ $res->assertSee('id="sync-failed"', false);
+ $res->assertSee('id="bmpa-failed"', false);
+ }
+}