admin: 列表行级BMPA对齐退款轨迹安全阀(存在退款即禁用并给入口)

This commit is contained in:
萝卜
2026-03-18 00:36:23 +08:00
parent 6a3b2f495e
commit 615a41e382
2 changed files with 94 additions and 2 deletions

View File

@@ -0,0 +1,81 @@
<?php
namespace Tests\Feature;
use App\Models\Merchant;
use App\Models\Plan;
use App\Models\PlatformOrder;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class AdminPlatformOrderIndexRowMarkPaidAndActivateButtonShouldDisableWhenRefundTraceExistsTest 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_row_mark_paid_and_activate_button_should_be_disabled_when_refund_trace_exists_even_if_not_refund_inconsistent(): void
{
$this->loginAsPlatformAdmin();
$merchant = Merchant::query()->firstOrFail();
$plan = Plan::query()->create([
'code' => 'po_index_row_bmpa_disable_refund_trace_plan',
'name' => '平台订单列表行级BMPA禁用存在退款轨迹测试套餐',
'billing_cycle' => 'monthly',
'price' => 30,
'list_price' => 30,
'status' => 'active',
'sort' => 10,
'published_at' => now(),
]);
// 构造存在退款轨迹refund_summary.total_amount > 0但不一定触发 isRefundInconsistent()
// 目标只要存在退款轨迹BMPA 就应禁用(与后端 safety valve 对齐)。
$order = PlatformOrder::query()->create([
'merchant_id' => $merchant->id,
'plan_id' => $plan->id,
'order_no' => 'PO_INDEX_ROW_BMPA_DISABLE_REFUND_TRACE_0001',
'order_type' => 'new_purchase',
'status' => 'pending',
'payment_status' => 'unpaid',
'plan_name' => $plan->name,
'billing_cycle' => $plan->billing_cycle,
'period_months' => 1,
'quantity' => 1,
'payable_amount' => 30,
'paid_amount' => 0,
'placed_at' => now(),
'meta' => [
'refund_summary' => [
'count' => 1,
'total_amount' => 1.00,
],
],
]);
$this->assertGreaterThan(0, (float) $order->refundTotal());
$this->assertFalse($order->isRefundInconsistent(), '此测试要求 refund trace 存在但不强依赖 refund_inconsistent');
$res = $this->get('/admin/platform-orders');
$res->assertOk();
$html = (string) $res->getContent();
$this->assertStringContainsString($order->order_no, $html);
// 断言:该订单所在行的“标记支付并生效”按钮应被禁用
$pattern = '#/admin/platform-orders/' . $order->id . '/mark-paid-and-activate.*?<button[^>]*disabled#s';
$this->assertMatchesRegularExpression($pattern, $html);
// 并且应给出最短治理入口(核对退款轨迹:直达追加退款记录面板)
$this->assertStringContainsString('#add-refund-receipt', $html);
}
}