75 lines
2.7 KiB
PHP
75 lines
2.7 KiB
PHP
<?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 AdminPlatformOrderShowRelationSubscriptionBlockShouldIncludeFindSubscriptionLinkWhenRenewalMissingSubscriptionTest 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_render_relation_governance_block_when_renewal_missing_subscription(): void
|
||
{
|
||
$this->loginAsPlatformAdmin();
|
||
|
||
$merchant = Merchant::query()->firstOrFail();
|
||
$plan = Plan::query()->create([
|
||
'code' => 'po_show_relation_block_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_RELATION_BLOCK_RENEW_NO_SUB_0001',
|
||
'order_type' => 'renewal',
|
||
'status' => 'pending',
|
||
'payment_status' => 'unpaid',
|
||
'plan_name' => $plan->name,
|
||
'billing_cycle' => $plan->billing_cycle,
|
||
'period_months' => 1,
|
||
'quantity' => 1,
|
||
'payable_amount' => 30,
|
||
'paid_amount' => 0,
|
||
'placed_at' => now(),
|
||
'meta' => [],
|
||
]);
|
||
|
||
$res = $this->get('/admin/platform-orders/' . $order->id);
|
||
$res->assertOk();
|
||
|
||
$html = (string) $res->getContent();
|
||
|
||
$this->assertStringContainsString('订阅关联治理提示', $html);
|
||
$this->assertStringContainsString('续费', $html);
|
||
$this->assertStringContainsString('未绑定订阅', $html);
|
||
$this->assertStringContainsString('去订阅管理查找订阅', $html);
|
||
|
||
// 链接应包含 merchant_id/plan_id,并携带 back 回到当前订单详情
|
||
$this->assertStringContainsString('/admin/site-subscriptions?', $html);
|
||
$this->assertStringContainsString('merchant_id=' . $merchant->id, $html);
|
||
$this->assertStringContainsString('plan_id=' . $plan->id, $html);
|
||
$this->assertStringContainsString('back=' . urlencode('/admin/platform-orders/' . $order->id), $html);
|
||
}
|
||
}
|