Files
saasshop/tests/Feature/AdminPlatformOrderIndexToolGridShouldHaveJumpLinksTest.php
2026-03-19 07:02:47 +08:00

39 lines
1.3 KiB
PHP

<?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);
}
}