补齐仪表盘可同步/同步失败按钮 data-role 与口径护栏测试

This commit is contained in:
萝卜
2026-03-18 15:50:54 +08:00
parent 7282951796
commit 0c224db94c

View File

@@ -0,0 +1,38 @@
<?php
namespace Tests\Feature;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class AdminDashboardBillingWorkbenchSyncableAndSyncFailedButtonsShouldHaveDataRoleTest 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_dashboard_billing_workbench_syncable_and_sync_failed_buttons_should_have_data_role(): void
{
$this->loginAsPlatformAdmin();
$res = $this->get('/admin');
$res->assertOk();
$html = (string) $res->getContent();
$this->assertStringContainsString('data-role="dashboard-po-quicklink-syncable"', $html);
$this->assertStringContainsString('data-role="dashboard-po-quicklink-sync-failed"', $html);
// 基础语义也钉一下,防止误改 query
$this->assertStringContainsString('syncable_only=1', $html);
$this->assertStringContainsString('sync_status=failed', $html);
}
}