platform orders: export supports bmpa filters (tests)

This commit is contained in:
萝卜
2026-03-13 13:59:28 +00:00
parent 1c36abc012
commit a926acb7c9

View File

@@ -0,0 +1,157 @@
<?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 AdminPlatformOrderExportBmpaFiltersTest 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_export_can_filter_by_bmpa_failed_only(): void
{
$this->loginAsPlatformAdmin();
$merchant = Merchant::query()->firstOrFail();
$plan = Plan::query()->create([
'code' => 'export_bmpa_filters_plan',
'name' => '导出BMPA筛选测试套餐',
'billing_cycle' => 'monthly',
'price' => 10,
'list_price' => 10,
'status' => 'active',
'sort' => 10,
'published_at' => now(),
]);
PlatformOrder::query()->create([
'merchant_id' => $merchant->id,
'plan_id' => $plan->id,
'order_no' => 'PO_EXPORT_BMPA_FAIL_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' => 10,
'paid_amount' => 0,
'placed_at' => now(),
'meta' => [
'batch_mark_paid_and_activate_error' => [
'message' => '订单回执总额与应付金额不一致,不允许批量推进,请先修正回执/金额后再处理。',
'at' => now()->toDateTimeString(),
'admin_id' => 1,
],
],
]);
PlatformOrder::query()->create([
'merchant_id' => $merchant->id,
'plan_id' => $plan->id,
'order_no' => 'PO_EXPORT_BMPA_OK_0002',
'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' => 10,
'paid_amount' => 0,
'placed_at' => now(),
]);
$res = $this->get('/admin/platform-orders/export?bmpa_failed_only=1');
$res->assertOk();
$content = $res->streamedContent();
$this->assertStringContainsString('PO_EXPORT_BMPA_FAIL_0001', $content);
$this->assertStringNotContainsString('PO_EXPORT_BMPA_OK_0002', $content);
}
public function test_export_can_filter_by_bmpa_error_keyword(): void
{
$this->loginAsPlatformAdmin();
$merchant = Merchant::query()->firstOrFail();
$plan = Plan::query()->create([
'code' => 'export_bmpa_kw_plan',
'name' => '导出BMPA关键词筛选测试套餐',
'billing_cycle' => 'monthly',
'price' => 10,
'list_price' => 10,
'status' => 'active',
'sort' => 10,
'published_at' => now(),
]);
PlatformOrder::query()->create([
'merchant_id' => $merchant->id,
'plan_id' => $plan->id,
'order_no' => 'PO_EXPORT_BMPA_KW_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' => 10,
'paid_amount' => 0,
'placed_at' => now(),
'meta' => [
'batch_mark_paid_and_activate_error' => [
'message' => '回执总额与应付金额不一致',
'at' => now()->toDateTimeString(),
'admin_id' => 1,
],
],
]);
PlatformOrder::query()->create([
'merchant_id' => $merchant->id,
'plan_id' => $plan->id,
'order_no' => 'PO_EXPORT_BMPA_KW_0002',
'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' => 10,
'paid_amount' => 0,
'placed_at' => now(),
'meta' => [
'batch_mark_paid_and_activate_error' => [
'message' => '存在退款轨迹,不允许批量标记支付并生效',
'at' => now()->toDateTimeString(),
'admin_id' => 1,
],
],
]);
$res = $this->get('/admin/platform-orders/export?bmpa_error_keyword=' . urlencode('回执'));
$res->assertOk();
$content = $res->streamedContent();
$this->assertStringContainsString('PO_EXPORT_BMPA_KW_0001', $content);
$this->assertStringNotContainsString('PO_EXPORT_BMPA_KW_0002', $content);
}
}