From d9b01430b743ff65dd8f15619b145ee0b0a93011 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=90=9D=E5=8D=9C?= Date: Fri, 13 Mar 2026 16:03:01 +0000 Subject: [PATCH] =?UTF-8?q?=E5=8A=A0=E5=9B=BArefund=5Finconsistent?= =?UTF-8?q?=E5=AF=BC=E5=87=BA=E5=8F=A3=E5=BE=84=EF=BC=9A=E9=AA=8C=E8=AF=81?= =?UTF-8?q?=20amounts.tolerance=20=E9=85=8D=E7=BD=AE=E7=94=9F=E6=95=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...tRefundInconsistentToleranceConfigTest.php | 155 ++++++++++++++++++ 1 file changed, 155 insertions(+) create mode 100644 tests/Feature/AdminPlatformOrderExportRefundInconsistentToleranceConfigTest.php diff --git a/tests/Feature/AdminPlatformOrderExportRefundInconsistentToleranceConfigTest.php b/tests/Feature/AdminPlatformOrderExportRefundInconsistentToleranceConfigTest.php new file mode 100644 index 0000000..41d6e5d --- /dev/null +++ b/tests/Feature/AdminPlatformOrderExportRefundInconsistentToleranceConfigTest.php @@ -0,0 +1,155 @@ +seed(); + + $this->post('/admin/login', [ + 'email' => 'platform.admin@demo.local', + 'password' => 'Platform@123456', + ])->assertRedirect('/admin'); + } + + public function test_platform_orders_export_refund_inconsistent_filter_respects_configured_tolerance(): void + { + $this->loginAsPlatformAdmin(); + + config(['saasshop.amounts.tolerance' => 0.05]); + + $merchant = Merchant::query()->firstOrFail(); + $plan = Plan::query()->create([ + 'code' => 'export_refund_inconsistent_tol_cfg_test', + 'name' => '导出退款不一致容差测试套餐', + 'billing_cycle' => 'monthly', + 'price' => 10, + 'list_price' => 10, + 'status' => 'active', + 'sort' => 10, + 'published_at' => now(), + ]); + + // A:refunded,但只差 0.02(在 tol=0.05 内)=> 不应命中 + PlatformOrder::query()->create([ + 'merchant_id' => $merchant->id, + 'plan_id' => $plan->id, + 'order_no' => 'PO_EXP_REFUND_INCONS_TOL_A', + 'order_type' => 'new_purchase', + 'status' => 'activated', + 'payment_status' => 'refunded', + '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(), + 'activated_at' => now(), + 'refunded_at' => now(), + 'meta' => [ + 'refund_summary' => [ + 'count' => 1, + 'total_amount' => 9.98, + ], + ], + ]); + + // B:refunded,差 0.10(超出 tol=0.05)=> 应命中 + PlatformOrder::query()->create([ + 'merchant_id' => $merchant->id, + 'plan_id' => $plan->id, + 'order_no' => 'PO_EXP_REFUND_INCONS_TOL_B', + 'order_type' => 'new_purchase', + 'status' => 'activated', + 'payment_status' => 'refunded', + '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(), + 'activated_at' => now(), + 'refunded_at' => now(), + 'meta' => [ + 'refund_summary' => [ + 'count' => 1, + 'total_amount' => 9.90, + ], + ], + ]); + + // C:非 refunded,但只多 0.02(在 tol=0.05 内)=> 不应命中 + PlatformOrder::query()->create([ + 'merchant_id' => $merchant->id, + 'plan_id' => $plan->id, + 'order_no' => 'PO_EXP_REFUND_INCONS_TOL_C', + 'order_type' => 'new_purchase', + 'status' => 'activated', + '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(), + 'activated_at' => now(), + 'meta' => [ + 'refund_summary' => [ + 'count' => 1, + 'total_amount' => 10.02, + ], + ], + ]); + + // D:非 refunded,多 0.06(超出 tol=0.05)=> 应命中 + PlatformOrder::query()->create([ + 'merchant_id' => $merchant->id, + 'plan_id' => $plan->id, + 'order_no' => 'PO_EXP_REFUND_INCONS_TOL_D', + 'order_type' => 'new_purchase', + 'status' => 'activated', + '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(), + 'activated_at' => now(), + 'meta' => [ + 'refund_summary' => [ + 'count' => 1, + 'total_amount' => 10.06, + ], + ], + ]); + + $res = $this->get('/admin/platform-orders/export?refund_inconsistent=1'); + $res->assertOk(); + + $content = $res->streamedContent(); + + $this->assertStringNotContainsString('PO_EXP_REFUND_INCONS_TOL_A', $content); + $this->assertStringContainsString('PO_EXP_REFUND_INCONS_TOL_B', $content); + $this->assertStringNotContainsString('PO_EXP_REFUND_INCONS_TOL_C', $content); + $this->assertStringContainsString('PO_EXP_REFUND_INCONS_TOL_D', $content); + } +}