seed(); $this->post('/admin/login', [ 'email' => 'platform.admin@demo.local', 'password' => 'Platform@123456', ])->assertRedirect('/admin'); } public function test_blocked_hint_should_include_link_to_syncable_only_unsynced_set(): void { $this->loginAsPlatformAdmin(); // 构造一个会触发 batch_activate_subscriptions 被阻断的筛选:未勾选 syncable_only。 $res = $this->get('/admin/platform-orders'); $res->assertOk(); $html = (string) $res->getContent(); $this->assertStringContainsString('data-role="batch-activate-subscriptions-blocked-hint"', $html); $this->assertStringContainsString('切到可同步订阅集合', $html); $this->assertStringContainsString('syncable_only=1', $html); $this->assertStringContainsString('sync_status=unsynced', $html); } }