feat(admin): 续费缺订阅时禁用仅标记为已生效并给治理引导

This commit is contained in:
萝卜
2026-03-15 07:49:37 +00:00
parent 9bd19474e1
commit 59d024cc93
2 changed files with 92 additions and 1 deletions

View File

@@ -0,0 +1,71 @@
<?php
namespace Tests\Feature;
use App\Models\Merchant;
use App\Models\Plan;
use App\Models\PlatformOrder;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class AdminPlatformOrderShowMarkActivatedButtonDisabledWhenRenewalMissingSubscriptionTest 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_show_should_disable_mark_activated_button_when_renewal_order_missing_subscription(): void
{
$this->loginAsPlatformAdmin();
$merchant = Merchant::query()->firstOrFail();
$plan = Plan::query()->create([
'code' => 'po_show_mark_activated_disable_renewal_no_sub_plan',
'name' => '订单详情 生效按钮禁用(续费无订阅)测试套餐',
'billing_cycle' => 'monthly',
'price' => 30,
'list_price' => 30,
'status' => 'active',
'sort' => 10,
'published_at' => now(),
]);
$order = PlatformOrder::query()->create([
'merchant_id' => $merchant->id,
'plan_id' => $plan->id,
'order_no' => 'PO_SHOW_MARK_ACTIVATED_DISABLE_RENEW_NO_SUB_0001',
'order_type' => 'renewal',
'status' => 'pending',
'payment_status' => 'paid',
'plan_name' => $plan->name,
'billing_cycle' => $plan->billing_cycle,
'period_months' => 1,
'quantity' => 1,
'payable_amount' => 30,
'paid_amount' => 30,
'placed_at' => now(),
'meta' => [],
]);
$res = $this->get('/admin/platform-orders/' . $order->id);
$res->assertOk();
// 按钮应被禁用disabled
$res->assertSee('仅标记为已生效', false);
$res->assertSee('disabled', false);
// 治理提示应出现,并包含引导入口
$res->assertSee('生效治理提示', false);
$res->assertSee('续费', false);
$res->assertSee('未绑定订阅', false);
$res->assertSee('去订阅管理查找订阅', false);
}
}