ui(dashboard): 平台定位运营版补齐风险预警与更多异常 mini bar

This commit is contained in:
萝卜
2026-03-17 07:32:20 +08:00
parent 66a8319f0a
commit dfa69d87bd
2 changed files with 107 additions and 0 deletions

View File

@@ -0,0 +1,40 @@
<?php
namespace Tests\Feature;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class AdminDashboardPlatformOpsOverviewExtraMiniBarsShouldRenderTest 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_platform_ops_overview_should_render_extra_mini_bars(): void
{
$this->loginAsPlatformAdmin();
$res = $this->get('/admin');
$res->assertOk();
$html = (string) $res->getContent();
$this->assertStringContainsString('data-role="platform-ops-risk-bars"', $html);
$this->assertStringContainsString('data-role="ops-risk-no-receipt-bar"', $html);
$this->assertStringContainsString('data-role="ops-risk-reconcile-mismatch-bar"', $html);
$this->assertStringContainsString('data-role="ops-risk-refund-inconsistent-bar"', $html);
$this->assertStringContainsString('data-role="platform-ops-exception-bars"', $html);
$this->assertStringContainsString('data-role="ops-exception-bmpa-failed-bar"', $html);
$this->assertStringContainsString('data-role="ops-exception-renewal-missing-bar"', $html);
}
}