41 lines
1.4 KiB
PHP
41 lines
1.4 KiB
PHP
<?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);
|
|
}
|
|
}
|