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