补充平台订单工具区快速定位导航

This commit is contained in:
萝卜
2026-03-19 07:02:47 +08:00
parent 0ee0379c74
commit 26a3786e82
2 changed files with 51 additions and 5 deletions

View File

@@ -0,0 +1,38 @@
<?php
namespace Tests\Feature;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class AdminPlatformOrderIndexToolGridShouldHaveJumpLinksTest 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_should_have_jump_links(): void
{
$this->loginAsPlatformAdmin();
$res = $this->get('/admin/platform-orders');
$res->assertOk();
$html = (string) $res->getContent();
$this->assertStringContainsString('data-role="po-tools-grid-jump-links"', $html);
$this->assertStringContainsString('href="#po-tools-export"', $html);
$this->assertStringContainsString('href="#batch-activate-subscriptions"', $html);
$this->assertStringContainsString('href="#po-tools-batch-bmpa"', $html);
$this->assertStringContainsString('href="#po-tools-batch-mark-activated"', $html);
$this->assertStringContainsString('href="#po-tools-clear-sync-errors"', $html);
$this->assertStringContainsString('href="#po-tools-clear-bmpa-errors"', $html);
}
}