订阅列表:快捷筛选仅保留上下文字段避免互斥叠加

This commit is contained in:
萝卜
2026-03-13 23:51:34 +00:00
parent 5023381816
commit 9971fa1841
2 changed files with 111 additions and 6 deletions

View File

@@ -0,0 +1,66 @@
<?php
namespace Tests\Feature;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class AdminSiteSubscriptionIndexQuickFilterLinksKeepContextTest 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_quick_filter_links_should_keep_context_and_drop_other_filters(): void
{
$this->loginAsPlatformAdmin();
$res = $this->get('/admin/site-subscriptions?merchant_id=2&plan_id=3&back=%2Fadmin%2Fplatform-orders&keyword=abc&page=9&status=pending&expiry=expired');
$res->assertOk();
$html = (string) $res->getContent();
preg_match_all('/href="([^"]+)"/', $html, $m);
$hrefs = $m[1] ?? [];
$this->assertGreaterThan(0, count($hrefs));
// 找到“已生效”快捷筛选链接status=activated
$activatedLinks = array_values(array_filter($hrefs, fn ($u) => str_contains($u, '/admin/site-subscriptions') && str_contains($u, 'status=activated')));
$this->assertGreaterThanOrEqual(1, count($activatedLinks));
$parts = parse_url($activatedLinks[0]);
parse_str($parts['query'] ?? '', $q);
// 保留上下文merchant/plan/back/keyword
$this->assertSame('2', (string) ($q['merchant_id'] ?? ''));
$this->assertSame('3', (string) ($q['plan_id'] ?? ''));
$this->assertSame('/admin/platform-orders', (string) ($q['back'] ?? ''));
$this->assertSame('abc', (string) ($q['keyword'] ?? ''));
// 覆盖/清理status=activated且不应带 expiry/page
$this->assertSame('activated', (string) ($q['status'] ?? ''));
$this->assertArrayNotHasKey('expiry', $q);
$this->assertArrayNotHasKey('page', $q);
// “全部”应清空筛选,仅保留 back
$allLinks = array_values(array_filter($hrefs, function ($u) {
if (!str_starts_with($u, '/admin/site-subscriptions')) {
return false;
}
$p = parse_url($u);
parse_str($p['query'] ?? '', $q2);
return (($q2['back'] ?? null) === '/admin/platform-orders') && (count($q2) === 1);
}));
$this->assertGreaterThanOrEqual(1, count($allLinks));
}
}