平台订单批量工具:退款筛选字段透传测试护栏

This commit is contained in:
萝卜
2026-03-11 08:11:18 +00:00
parent fea5bb33b4
commit a5f4947621

View File

@@ -0,0 +1,103 @@
<?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 AdminPlatformOrderBatchMarkActivatedRefundStatusFilterFieldsTest 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_batch_mark_activated_filtered_scope_respects_refund_status_filter_fields(): void
{
$this->loginAsPlatformAdmin();
$merchant = Merchant::query()->firstOrFail();
$plan = Plan::query()->create([
'code' => 'batch_mark_activated_refund_status_filter_fields_test',
'name' => '批量仅标记为已生效(退款筛选)测试套餐',
'billing_cycle' => 'monthly',
'price' => 10,
'list_price' => 10,
'status' => 'active',
'sort' => 10,
'published_at' => now(),
]);
// A无退款待处理pending+paid应被 refund_status=none 命中
$a = PlatformOrder::query()->create([
'merchant_id' => $merchant->id,
'plan_id' => $plan->id,
'order_no' => 'PO_BMA_REFUND_NONE_A',
'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' => [],
]);
// B有退款待处理pending+paid不应被 refund_status=none 命中
$b = PlatformOrder::query()->create([
'merchant_id' => $merchant->id,
'plan_id' => $plan->id,
'order_no' => 'PO_BMA_REFUND_HAS_B',
'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' => [
'refund_receipts' => [
['amount' => 1.00, 'refunded_at' => now()->toDateTimeString()],
],
],
]);
// 访问列表页:确保工具表单透传 refund_status
$page = $this->get('/admin/platform-orders?payment_status=paid&status=pending&refund_status=none');
$page->assertOk();
$page->assertSee('name="refund_status"', false);
$page->assertSee('value="none"', false);
$this->post('/admin/platform-orders/batch-mark-activated', [
'scope' => 'filtered',
'payment_status' => 'paid',
'status' => 'pending',
'refund_status' => 'none',
'limit' => 50,
])->assertRedirect();
$a->refresh();
$b->refresh();
$this->assertSame('activated', $a->status);
$this->assertSame('pending', $b->status);
}
}