PlatformOrder create: force renewal type when subscription context present

This commit is contained in:
萝卜
2026-03-15 03:14:19 +00:00
parent 2e4c0c5ea8
commit 2400398dcb
3 changed files with 77 additions and 2 deletions

View File

@@ -0,0 +1,65 @@
<?php
namespace Tests\Feature;
use App\Models\Merchant;
use App\Models\Plan;
use App\Models\SiteSubscription;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class AdminPlatformOrderCreateShouldOnlyAllowRenewalTypeWhenSubscriptionLockedTest 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_create_should_only_render_renewal_type_when_subscription_locked(): void
{
$this->loginAsPlatformAdmin();
$merchant = Merchant::query()->firstOrFail();
$plan = Plan::query()->create([
'code' => 'po_create_only_renewal_when_locked_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_ONLY_RENEWAL_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(),
]);
// 即使传入 order_type=new_purchase也应被强制收敛为 renewal
$res = $this->get('/admin/platform-orders/create?site_subscription_id=' . $sub->id . '&order_type=new_purchase');
$res->assertOk();
$res->assertSee('value="renewal" selected', false);
$res->assertDontSee('value="new_purchase"', false);
$res->assertDontSee('value="upgrade"', false);
$res->assertDontSee('value="downgrade"', false);
}
}