Files
saasshop/tests/Feature/AdminPlatformOrderIndexBatchActivateBlockedHintShouldIncludeGoSyncableLinkTest.php

50 lines
1.8 KiB
PHP

<?php
namespace Tests\Feature;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class AdminPlatformOrderIndexBatchActivateBlockedHintShouldIncludeGoSyncableLinkTest 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_blocked_hint_should_include_link_to_syncable_only_unsynced_set(): void
{
$this->loginAsPlatformAdmin();
// 构造一个会触发 batch_activate_subscriptions 被阻断的复杂筛选;
// blocked hint 应给出“切到可同步订阅集合”入口,并清理冲突开关。
$res = $this->get('/admin/platform-orders?sync_status=failed&bmpa_failed_only=1&synced_only=1&page=2&back=/admin');
$res->assertOk();
$html = (string) $res->getContent();
$this->assertStringContainsString('data-role="batch-activate-subscriptions-blocked-hint"', $html);
$this->assertMatchesRegularExpression('/href="([^"]+)"[^>]*>切到可同步订阅集合<\/a>/', $html);
preg_match('/href="([^"]+)"[^>]*>切到可同步订阅集合<\/a>/', $html, $m);
$href = html_entity_decode((string) ($m[1] ?? ''));
$query = parse_url($href, PHP_URL_QUERY) ?: '';
parse_str($query, $q);
$this->assertSame('1', (string) ($q['syncable_only'] ?? ''));
$this->assertSame('unsynced', (string) ($q['sync_status'] ?? ''));
$this->assertSame('/admin', (string) ($q['back'] ?? ''));
$this->assertArrayNotHasKey('page', $q);
$this->assertArrayNotHasKey('bmpa_failed_only', $q);
$this->assertArrayNotHasKey('synced_only', $q);
}
}