diff --git a/tests/Feature/AdminDashboardBillingWorkbenchSyncableAndSyncFailedButtonsShouldHaveDataRoleTest.php b/tests/Feature/AdminDashboardBillingWorkbenchSyncableAndSyncFailedButtonsShouldHaveDataRoleTest.php new file mode 100644 index 0000000..3b6e2a2 --- /dev/null +++ b/tests/Feature/AdminDashboardBillingWorkbenchSyncableAndSyncFailedButtonsShouldHaveDataRoleTest.php @@ -0,0 +1,38 @@ +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); + } +}