Files
saasshop/tests/Feature/AdminPlatformOrderIndexPageJumpShouldRenderCompleteNavigationLayerTest.php
2026-03-19 18:39:28 +08:00

40 lines
1.4 KiB
PHP

<?php
namespace Tests\Feature;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class AdminPlatformOrderIndexPageJumpShouldRenderCompleteNavigationLayerTest 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_should_render_complete_navigation_layer(): 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-quick-filters"', $html);
$this->assertStringContainsString('data-role="po-page-jump-filters"', $html);
$this->assertStringContainsString('data-role="po-page-jump-summary"', $html);
$this->assertStringContainsString('data-role="po-page-jump-tools"', $html);
$this->assertStringContainsString('data-role="po-page-jump-list"', $html);
$this->assertStringContainsString('data-role="po-page-jump-top"', $html);
$this->assertStringContainsString('data-role="po-page-jump-note"', $html);
}
}