Files
saasshop/tests/Feature/AdminPlatformOrderIndexReconcileRefundDeltaLinksContainBackTest.php

96 lines
3.3 KiB
PHP
Raw Permalink 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 AdminPlatformOrderIndexReconcileRefundDeltaLinksContainBackTest 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_reconcile_delta_and_refund_total_links_should_carry_back_and_anchor(): void
{
$this->loginAsPlatformAdmin();
$merchant = Merchant::query()->firstOrFail();
$plan = Plan::query()->create([
'code' => 'po_index_delta_refund_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_INDEX_DELTA_BACK_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' => 10,
'placed_at' => now(),
'meta' => [
// 制造对账不一致receipt_total != paid_amount
'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'],
],
],
]);
$res = $this->get('/admin/platform-orders?status=pending&back=' . urlencode('/admin/plans'));
$res->assertOk();
$indexSelfWithoutBack = '/admin/platform-orders?' . Arr::query([
'status' => 'pending',
]);
$reconcileShowUrl = '/admin/platform-orders/' . $order->id . '?' . Arr::query([
'back' => $indexSelfWithoutBack,
]) . '#add-payment-receipt';
$reconcileFixUrl = '/admin/platform-orders/' . $order->id . '?' . Arr::query([
'back' => $indexSelfWithoutBack,
]) . '#add-payment-receipt';
$refundShowUrl = '/admin/platform-orders/' . $order->id . '?' . Arr::query([
'back' => $indexSelfWithoutBack,
]) . '#add-refund-receipt';
$res->assertSee($reconcileShowUrl, false);
$res->assertSee($reconcileFixUrl, false);
$res->assertSee($refundShowUrl, false);
$res->assertDontSee('back%3D', false);
}
}