39 lines
1.1 KiB
PHP
39 lines
1.1 KiB
PHP
<?php
|
||
|
||
namespace Tests\Feature;
|
||
|
||
use Illuminate\Foundation\Testing\RefreshDatabase;
|
||
use Tests\TestCase;
|
||
|
||
class AdminDashboardPlatformOpsOverviewShouldRenderTest 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_should_render_platform_ops_overview_block(): void
|
||
{
|
||
$this->loginAsPlatformAdmin();
|
||
|
||
$res = $this->get('/admin');
|
||
$res->assertOk();
|
||
|
||
$html = (string) $res->getContent();
|
||
|
||
$this->assertStringContainsString('data-role="dashboard-platform-ops-overview"', $html);
|
||
$this->assertStringContainsString('平台定位(运营版)', $html);
|
||
$this->assertStringContainsString('待处理治理(Top3)', $html);
|
||
$this->assertStringContainsString('可BMPA', $html);
|
||
$this->assertStringContainsString('可同步', $html);
|
||
$this->assertStringContainsString('同步失败', $html);
|
||
}
|
||
}
|