Files
saasshop/tests/Feature/AdminPlatformOrderIndexPageJumpLinksShouldRenderCompleteNavigationComponentTest.php
2026-03-19 15:59:59 +08:00

37 lines
1.2 KiB
PHP

<?php
namespace Tests\Feature;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class AdminPlatformOrderIndexPageJumpLinksShouldRenderCompleteNavigationComponentTest 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_page_jump_links_should_render_complete_navigation_component(): void
{
$this->loginAsPlatformAdmin();
$res = $this->get('/admin/platform-orders');
$res->assertOk();
$html = (string) $res->getContent();
$this->assertStringContainsString('data-role="po-page-jump-links"', $html);
$this->assertStringContainsString('data-role="po-page-jump-prefix"', $html);
$this->assertStringContainsString('页内导航:', $html);
$this->assertStringContainsString('data-role="po-page-jump-note"', $html);
$this->assertStringContainsString('仅用于页内快速跳转,不会改变当前筛选状态;', $html);
}
}