测试: 订阅治理入口同步失败链接清理BMPA开关护栏

This commit is contained in:
萝卜
2026-03-18 14:03:20 +08:00
parent 54698c10c2
commit 62e045134f

View File

@@ -0,0 +1,76 @@
<?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 AdminPlatformOrderIndexSubscriptionGovernanceLinkShouldClearBmpaFiltersTest 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_subscription_governance_sync_failed_link_should_clear_bmpa_filters(): void
{
$this->loginAsPlatformAdmin();
$merchant = Merchant::query()->firstOrFail();
$plan = Plan::query()->create([
'code' => 'po_idx_sub_gov_clear_bmpa_plan',
'name' => '平台订单列表订阅治理入口清理BMPA开关测试套餐',
'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_PO_IDX_GOV_CLEAR_BMPA_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(),
]);
// 从订阅锁定 + BMPA 失败上下文进入
$res = $this->get('/admin/platform-orders?site_subscription_id=' . $sub->id . '&bmpa_failed_only=1&sync_status=failed');
$res->assertOk();
$html = (string) $res->getContent();
// 定位订阅治理入口:查看同步失败(该订阅)
$this->assertMatchesRegularExpression('/href="([^"]+)"[^>]*>查看同步失败(该订阅)<\/a>/', $html);
preg_match('/href="([^"]+)"[^>]*>查看同步失败(该订阅)<\/a>/', $html, $m);
$href = html_entity_decode($m[1] ?? '');
$query = parse_url($href, PHP_URL_QUERY) ?: '';
parse_str($query, $q);
$this->assertSame('failed', (string) ($q['sync_status'] ?? ''));
$this->assertSame((string) $sub->id, (string) ($q['site_subscription_id'] ?? ''));
$this->assertArrayNotHasKey('bmpa_failed_only', $q);
$this->assertArrayNotHasKey('bmpa_error_keyword', $q);
}
}