补强回执筛选说明链接分页护栏

This commit is contained in:
萝卜
2026-03-19 03:29:15 +08:00
parent d7bb750eef
commit a8663c48ab

View File

@@ -0,0 +1,46 @@
<?php
namespace Tests\Feature;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Illuminate\Support\Arr;
use Tests\TestCase;
class AdminPlatformOrderFiltersReceiptStatusHintLinkShouldDropPageTest 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_receipt_status_hint_link_should_drop_page_query(): void
{
$this->loginAsPlatformAdmin();
$res = $this->get('/admin/platform-orders?' . Arr::query([
'merchant_id' => 2,
'plan_id' => 3,
'keyword' => 'alpha',
'back' => '/admin/plans',
'page' => 5,
]));
$res->assertOk();
$html = (string) $res->getContent();
preg_match('/data-role="po-receipt-status-broad-none-go-paid-no-receipt"[^>]*href="([^"]+)"/u', $html, $m);
$href = html_entity_decode($m[1] ?? '');
$query = parse_url($href, PHP_URL_QUERY) ?: '';
parse_str($query, $q);
$this->assertArrayNotHasKey('page', $q);
$this->assertSame('paid', (string) ($q['payment_status'] ?? ''));
$this->assertSame('none', (string) ($q['receipt_status'] ?? ''));
}
}