Files
saasshop/tests/Feature/AdminPlatformOrderIndexToolGridJumpLinksNoteShouldKeepAllSemanticsTest.php
2026-03-19 09:59:35 +08:00

33 lines
1010 B
PHP

<?php
namespace Tests\Feature;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class AdminPlatformOrderIndexToolGridJumpLinksNoteShouldKeepAllSemanticsTest 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_platform_orders_tool_grid_jump_links_note_should_keep_all_semantics(): void
{
$this->loginAsPlatformAdmin();
$res = $this->get('/admin/platform-orders');
$res->assertOk();
$html = (string) $res->getContent();
$this->assertMatchesRegularExpression('/data-role="po-tools-grid-jump-links-note"[^>]*aria-label="平台订单工具区快速导航说明"[^>]*title="快速导航仅负责定位工具组,不会直接执行批量动作"/u', $html);
}
}