Files
saasshop/tests/Feature/AdminPlatformOrderIndexClearBmpaBlockedHintShouldIncludeGoBmpaFailedLinkTest.php

51 lines
1.9 KiB
PHP

<?php
namespace Tests\Feature;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class AdminPlatformOrderIndexClearBmpaBlockedHintShouldIncludeGoBmpaFailedLinkTest 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_bmpa_failed_set(): void
{
$this->loginAsPlatformAdmin();
// 构造会触发 clear_bmpa_errors 被阻断的复杂上下文;
// blocked hint 应给出“切到 BMPA 失败集合”入口,并保留 back、清空 page、清理同步失败冲突开关。
$res = $this->get('/admin/platform-orders?fail_only=1&sync_status=failed&synced_only=1&page=2&back=/admin');
$res->assertOk();
$html = (string) $res->getContent();
$this->assertStringContainsString('data-role="clear-bmpa-errors-blocked-hint"', $html);
$this->assertMatchesRegularExpression('/href="([^"]+)"[^>]*>切到 BMPA 失败集合<\/a>/', $html);
preg_match('/href="([^"]+)"[^>]*>切到 BMPA 失败集合<\/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['bmpa_failed_only'] ?? ''));
$this->assertSame('/admin', (string) ($q['back'] ?? ''));
$this->assertArrayNotHasKey('page', $q);
$this->assertArrayNotHasKey('fail_only', $q);
$this->assertArrayNotHasKey('sync_status', $q);
$this->assertArrayNotHasKey('sync_error_keyword', $q);
$this->assertArrayNotHasKey('synced_only', $q);
}
}