Keep site subscription index context via back param links

This commit is contained in:
萝卜
2026-03-13 17:16:56 +00:00
parent 43d78193ea
commit d080c74f09
2 changed files with 90 additions and 2 deletions

View File

@@ -0,0 +1,83 @@
<?php
namespace Tests\Feature;
use App\Models\Merchant;
use App\Models\Plan;
use App\Models\PlatformOrder;
use App\Models\SiteSubscription;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class AdminSiteSubscriptionIndexOrderCountLinkKeepsFiltersTest 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_orders_count_link_in_index_should_keep_current_filters(): void
{
$this->loginAsPlatformAdmin();
$merchant = Merchant::query()->firstOrFail();
$plan = Plan::query()->create([
'code' => 'sub_index_keep_filters_plan',
'name' => '订阅列表链接保留筛选测试套餐',
'billing_cycle' => 'monthly',
'price' => 10,
'list_price' => 10,
'status' => 'active',
'sort' => 10,
'published_at' => now(),
]);
$sub = SiteSubscription::query()->create([
'merchant_id' => $merchant->id,
'plan_id' => $plan->id,
'status' => 'activated',
'source' => 'manual',
'subscription_no' => 'SUB_INDEX_KEEP_FILTER_0001',
'plan_name' => $plan->name,
'billing_cycle' => $plan->billing_cycle,
'period_months' => 1,
'amount' => 10,
'starts_at' => now()->subDay(),
'ends_at' => now()->addMonth(),
'activated_at' => now()->subDay(),
]);
PlatformOrder::query()->create([
'merchant_id' => $merchant->id,
'plan_id' => $plan->id,
'site_subscription_id' => $sub->id,
'order_no' => 'PO_SUB_INDEX_KEEP_FILTER_0001',
'order_type' => 'renewal',
'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(),
]);
$res = $this->get('/admin/site-subscriptions?status=activated&keyword=' . urlencode('KEEP'));
$res->assertOk();
// 期望:点击“关联订单数”应该跳转到平台订单页,并保留“回到订阅列表的 back 参数”(保留上下文)
// 当前实现先仅要求存在 site_subscription_id后续页面改造后可再加 back 参数断言。
$res->assertSee('/admin/platform-orders?site_subscription_id=' . $sub->id, false);
}
}