Files
saasshop/tests/Feature/AdminPlatformOrderShowFixReceiptRefundLinksContainBackTest.php

154 lines
5.6 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
namespace Tests\Feature;
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 AdminPlatformOrderShowFixReceiptRefundLinksContainBackTest 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_fix_links_should_carry_back_to_order_show_self_and_anchor(): void
{
$this->loginAsPlatformAdmin();
$merchant = Merchant::query()->firstOrFail();
$plan = Plan::query()->create([
'code' => 'po_show_fix_links_back_plan',
'name' => '平台订单详情去补回执/去核对退款 back 链接测试套餐',
'billing_cycle' => 'monthly',
'price' => 10,
'list_price' => 10,
'status' => 'active',
'sort' => 10,
'published_at' => now(),
]);
// 同时造“对账不一致 + 退款不一致”
$order = PlatformOrder::query()->create([
'merchant_id' => $merchant->id,
'plan_id' => $plan->id,
'order_no' => 'PO_SHOW_FIX_LINKS_0001',
'order_type' => 'new_purchase',
'status' => 'pending',
'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(),
'meta' => [
// 对账不一致receipt_total=9 != paid_amount=10
'payment_summary' => ['count' => 1, 'total' => 9],
'payment_receipts' => [
['amount' => 9, 'paid_at' => now()->toDateTimeString(), 'channel' => 'offline', 'note' => 'test'],
],
// 退款不一致refunded 但退款总额不足
'refund_summary' => ['count' => 1, 'total' => 1],
'refund_receipts' => [
['amount' => 1, 'refunded_at' => now()->toDateTimeString(), 'channel' => 'offline', 'note' => 'test'],
],
],
]);
$res = $this->get('/admin/platform-orders/' . $order->id . '?back=' . urlencode('/admin/platform-orders?status=pending'));
$res->assertOk();
$orderShowSelf = '/admin/platform-orders/' . $order->id;
$fixReceiptUrl = '/admin/platform-orders/' . $order->id . '?' . Arr::query([
'back' => $orderShowSelf,
]) . '#add-payment-receipt';
$fixRefundUrl = '/admin/platform-orders/' . $order->id . '?' . Arr::query([
'back' => $orderShowSelf,
]) . '#add-refund-receipt';
$res->assertSee($fixReceiptUrl, false);
$res->assertSee($fixRefundUrl, false);
$res->assertDontSee('back%3D', false);
}
public function test_fix_links_should_fall_back_to_order_show_self_when_outer_back_is_unsafe(): void
{
$this->loginAsPlatformAdmin();
$merchant = Merchant::query()->firstOrFail();
$plan = Plan::query()->create([
'code' => 'po_show_fix_links_unsafe_back_plan',
'name' => '平台订单详情去补回执/去核对退款 unsafe back 测试套餐',
'billing_cycle' => 'monthly',
'price' => 10,
'list_price' => 10,
'status' => 'active',
'sort' => 10,
'published_at' => now(),
]);
$order = PlatformOrder::query()->create([
'merchant_id' => $merchant->id,
'plan_id' => $plan->id,
'order_no' => 'PO_SHOW_FIX_LINKS_UNSAFE_0001',
'order_type' => 'new_purchase',
'status' => 'pending',
'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(),
'meta' => [
'payment_summary' => ['count' => 1, 'total' => 9],
'payment_receipts' => [
['amount' => 9, 'paid_at' => now()->toDateTimeString(), 'channel' => 'offline', 'note' => 'test'],
],
'refund_summary' => ['count' => 1, 'total' => 1],
'refund_receipts' => [
['amount' => 1, 'refunded_at' => now()->toDateTimeString(), 'channel' => 'offline', 'note' => 'test'],
],
],
]);
$unsafeBack = '/admin/platform-orders?status=pending&back=/admin';
$res = $this->get('/admin/platform-orders/' . $order->id . '?back=' . urlencode($unsafeBack));
$res->assertOk();
$orderShowSelf = '/admin/platform-orders/' . $order->id;
$fixReceiptUrl = '/admin/platform-orders/' . $order->id . '?' . Arr::query([
'back' => $orderShowSelf,
]) . '#add-payment-receipt';
$fixRefundUrl = '/admin/platform-orders/' . $order->id . '?' . Arr::query([
'back' => $orderShowSelf,
]) . '#add-refund-receipt';
$res->assertSee($fixReceiptUrl, false);
$res->assertSee($fixRefundUrl, false);
$res->assertDontSee(urlencode($unsafeBack), false);
$res->assertDontSee('back%3D', false);
}
}