feat(admin-dashboard): failed hints link to order detail failure blocks

This commit is contained in:
萝卜
2026-03-16 15:29:32 +08:00
parent 055d1c787a
commit 9587f03edf
2 changed files with 96 additions and 0 deletions

View File

@@ -0,0 +1,92 @@
<?php
namespace Tests\Feature;
use App\Models\Admin;
use App\Models\Merchant;
use App\Models\Plan;
use App\Models\PlatformOrder;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Illuminate\Support\Arr;
use Tests\TestCase;
class AdminDashboardRecentPlatformOrdersFailedHintsShouldIncludeGoDetailAnchorsTest extends TestCase
{
use RefreshDatabase;
protected function loginAsPlatformAdmin(): void
{
$this->seed();
$this->post('/admin/login', [
'email' => 'platform.admin@demo.local',
'password' => 'Platform@123456',
])->assertRedirect('/admin');
}
public function test_dashboard_recent_platform_orders_failed_hints_should_include_go_detail_anchor_links(): void
{
$this->loginAsPlatformAdmin();
$merchantId = (int) Merchant::query()->value('id');
$platformAdminId = (int) Admin::query()->where('email', 'platform.admin@demo.local')->value('id');
$plan = Plan::query()->create([
'code' => 'dash_failed_go_detail_plan',
'name' => '仪表盘失败详情直达测试套餐',
'billing_cycle' => 'monthly',
'price' => 10,
'list_price' => 10,
'status' => 'active',
'sort' => 10,
'published_at' => now(),
]);
$syncOrder = PlatformOrder::query()->create([
'merchant_id' => $merchantId,
'plan_id' => $plan->id,
'site_subscription_id' => null,
'created_by_admin_id' => $platformAdminId ?: null,
'order_no' => 'PO_DASH_SYNC_FAIL_GO_DETAIL_0001',
'order_type' => 'new_purchase',
'status' => 'pending',
'payment_status' => 'paid',
'payable_amount' => 10,
'paid_amount' => 10,
'meta' => [
'subscription_activation_error' => [
'message' => 'sync failed',
],
],
]);
$bmpaOrder = PlatformOrder::query()->create([
'merchant_id' => $merchantId,
'plan_id' => $plan->id,
'site_subscription_id' => null,
'created_by_admin_id' => $platformAdminId ?: null,
'order_no' => 'PO_DASH_BMPA_FAIL_GO_DETAIL_0001',
'order_type' => 'new_purchase',
'status' => 'pending',
'payment_status' => 'unpaid',
'payable_amount' => 10,
'paid_amount' => 0,
'meta' => [
'batch_mark_paid_and_activate_error' => [
'message' => 'bmpa failed',
],
],
]);
$res = $this->get('/admin');
$res->assertOk();
$syncUrl = '/admin/platform-orders/' . $syncOrder->id . '?' . Arr::query(['back' => '/admin']) . '#sync-failed';
$bmpaUrl = '/admin/platform-orders/' . $bmpaOrder->id . '?' . Arr::query(['back' => '/admin']) . '#bmpa-failed';
$res->assertSee('查看失败详情', false);
$res->assertSee($syncUrl, false);
$res->assertSee($bmpaUrl, false);
$res->assertDontSee('&amp;back=', false);
}
}