5efb380da5
* feat: automate yiacad pr review lane * fix: stabilize yiacad review and spec gates * fix: scope kicad exports to repo hardware * fix: ignore kicad block library sources in exports * feat: Add infra VPS monitoring runbook and healthcheck scripts - Created INFRA_VPS_RUNBOOK_2026.md detailing operational procedures for monitoring VPS services. - Added infra_vps_healthcheck.sh script for automated health checks on DNS, TLS, TCP, and HTTP for VPS services. - Introduced infra_vps_security_audit.sh for non-intrusive security checks on external VPS services. - Established JSON schema for infra VPS inventory in infra_vps.schema.json. - Developed integration for runtime status reporting in the Next.js API route. - Implemented Playwright tests for smoke testing the application and ensuring core functionalities. - Updated Makefile for development dependencies and testing commands. - Created various test files for unit and end-to-end testing across different components. * feat(agentics): update mesh agents, gates, prompts, and workflows
114 lines
3.4 KiB
Python
114 lines
3.4 KiB
Python
#!/usr/bin/env python3
|
|
from __future__ import annotations
|
|
|
|
import json
|
|
import subprocess
|
|
import sys
|
|
import unittest
|
|
from pathlib import Path
|
|
|
|
|
|
REPO_ROOT = Path(__file__).resolve().parents[1]
|
|
SCRIPT = REPO_ROOT / "tools" / "validate_specs.py"
|
|
|
|
|
|
def write_message(proc: subprocess.Popen[str], payload: dict) -> None:
|
|
body = json.dumps(payload)
|
|
proc.stdin.write(f"Content-Length: {len(body.encode('utf-8'))}\r\n\r\n{body}")
|
|
proc.stdin.flush()
|
|
|
|
|
|
def read_message(proc: subprocess.Popen[str]) -> dict:
|
|
headers = {}
|
|
while True:
|
|
line = proc.stdout.readline()
|
|
if not line:
|
|
raise AssertionError("unexpected EOF while reading MCP headers")
|
|
if line in ("\r\n", "\n"):
|
|
break
|
|
key, _, value = line.partition(":")
|
|
headers[key.strip().lower()] = value.strip()
|
|
|
|
length = int(headers["content-length"])
|
|
body = proc.stdout.read(length)
|
|
return json.loads(body)
|
|
|
|
|
|
class ValidateSpecsTests(unittest.TestCase):
|
|
def test_cli_json_mode_emits_machine_readable_summary(self):
|
|
proc = subprocess.run(
|
|
[sys.executable, str(SCRIPT), "--json"],
|
|
cwd=REPO_ROOT,
|
|
capture_output=True,
|
|
text=True,
|
|
check=False,
|
|
)
|
|
|
|
payload = json.loads(proc.stdout)
|
|
self.assertIn("ok", payload)
|
|
self.assertIn("compliance", payload)
|
|
self.assertIn("rfc2119", payload)
|
|
self.assertIn("mirror_sync", payload)
|
|
self.assertIn("agent_catalog", payload)
|
|
self.assertIsInstance(payload["ok"], bool)
|
|
self.assertFalse(payload["require_mirror_sync"])
|
|
self.assertTrue(payload["mirror_sync"]["mirror_exists"])
|
|
self.assertTrue(payload["agent_catalog"]["ok"])
|
|
self.assertEqual(payload["agent_catalog"]["agent_count"], 12)
|
|
|
|
def test_mcp_server_supports_initialize_and_tools_list(self):
|
|
proc = subprocess.Popen(
|
|
[sys.executable, str(SCRIPT), "--mcp"],
|
|
cwd=REPO_ROOT,
|
|
stdin=subprocess.PIPE,
|
|
stdout=subprocess.PIPE,
|
|
stderr=subprocess.PIPE,
|
|
text=True,
|
|
)
|
|
|
|
try:
|
|
write_message(
|
|
proc,
|
|
{
|
|
"jsonrpc": "2.0",
|
|
"id": 1,
|
|
"method": "initialize",
|
|
"params": {},
|
|
},
|
|
)
|
|
initialize = read_message(proc)
|
|
self.assertEqual(initialize["id"], 1)
|
|
self.assertEqual(
|
|
initialize["result"]["serverInfo"]["name"], "validate-specs"
|
|
)
|
|
self.assertEqual(
|
|
initialize["result"]["protocolVersion"], "2025-03-26"
|
|
)
|
|
|
|
write_message(
|
|
proc,
|
|
{
|
|
"jsonrpc": "2.0",
|
|
"id": 2,
|
|
"method": "tools/list",
|
|
"params": {},
|
|
},
|
|
)
|
|
tools_list = read_message(proc)
|
|
tool_names = {tool["name"] for tool in tools_list["result"]["tools"]}
|
|
self.assertIn("validate_specs", tool_names)
|
|
self.assertIn("scan_rfc2119", tool_names)
|
|
finally:
|
|
proc.terminate()
|
|
proc.wait(timeout=5)
|
|
if proc.stdin:
|
|
proc.stdin.close()
|
|
if proc.stdout:
|
|
proc.stdout.close()
|
|
if proc.stderr:
|
|
proc.stderr.close()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main()
|