Spaces:
Paused
Paused
File size: 6,066 Bytes
dff1e71 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 | #!/usr/bin/env python3
"""
Test script to verify FastA2A agent card routing and authentication.
"""
import sys
import os
sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
import asyncio
import pytest
from python.helpers import settings
def get_test_urls():
"""Get the URLs to test based on current settings."""
try:
cfg = settings.get_settings()
token = cfg.get("mcp_server_token", "")
if not token:
print("β No mcp_server_token found in settings")
return None
base_url = "http://localhost:50101"
urls = {
"token_based": f"{base_url}/a2a/t-{token}/.well-known/agent.json",
"bearer_auth": f"{base_url}/a2a/.well-known/agent.json",
"api_key_header": f"{base_url}/a2a/.well-known/agent.json",
"api_key_query": f"{base_url}/a2a/.well-known/agent.json?api_key={token}"
}
return {"token": token, "urls": urls}
except Exception as e:
print(f"β Error getting settings: {e}")
return None
def print_test_commands():
"""Print curl commands to test FastA2A authentication."""
data = get_test_urls()
if not data:
return
token = data["token"]
urls = data["urls"]
print("π FastA2A Agent Card Testing Commands")
print("=" * 60)
print(f"Current token: {token}")
print()
print("1οΈβ£ Token-based URL (recommended):")
print(f" curl -v '{urls['token_based']}'")
print()
print("2οΈβ£ Bearer authentication:")
print(f" curl -v -H 'Authorization: Bearer {token}' '{urls['bearer_auth']}'")
print()
print("3οΈβ£ API key header:")
print(f" curl -v -H 'X-API-KEY: {token}' '{urls['api_key_header']}'")
print()
print("4οΈβ£ API key query parameter:")
print(f" curl -v '{urls['api_key_query']}'")
print()
print("Expected response (if working):")
print(" HTTP/1.1 200 OK")
print(" Content-Type: application/json")
print(" {")
print(' "name": "Agent Zero",')
print(' "version": "1.0.0",')
print(' "skills": [...]')
print(" }")
print()
print("Expected error (if auth fails):")
print(" HTTP/1.1 401 Unauthorized")
print(" Unauthorized")
print()
def print_troubleshooting():
"""Print troubleshooting information."""
print("π§ Troubleshooting FastA2A Issues")
print("=" * 40)
print()
print("1. Server not running:")
print(" - Make sure Agent Zero is running: python run_ui.py")
print(" - Check the correct port (default: 50101)")
print()
print("2. Authentication failures:")
print(" - Verify token matches in settings")
print(" - Check token format (should be 16 characters)")
print(" - Try different auth methods")
print()
print("3. FastA2A not available:")
print(" - Install FastA2A: pip install fasta2a")
print(" - Check server logs for FastA2A configuration errors")
print()
print("4. Routing issues:")
print(" - Verify /a2a prefix is working")
print(" - Check DispatcherMiddleware configuration")
print(" - Look for FastA2A startup messages in logs")
print()
def validate_token_format():
"""Validate that the token format is correct."""
try:
cfg = settings.get_settings()
token = cfg.get("mcp_server_token", "")
print("π Token Validation")
print("=" * 25)
if not token:
print("β No token found")
return False
print(f"β
Token found: {token}")
print(f"β
Token length: {len(token)} characters")
if len(token) != 16:
print("β οΈ Warning: Expected token length is 16 characters")
# Check token characters
if token.isalnum():
print("β
Token contains only alphanumeric characters")
else:
print("β οΈ Warning: Token contains non-alphanumeric characters")
return True
except Exception as e:
print(f"β Error validating token: {e}")
return False
@pytest.mark.asyncio
async def test_server_connectivity():
"""Test basic server connectivity."""
try:
import httpx
print("π Server Connectivity Test")
print("=" * 30)
async with httpx.AsyncClient() as client:
try:
# Test basic server
await client.get("http://localhost:50101/", timeout=5.0)
print("β
Agent Zero server is running")
return True
except httpx.ConnectError:
print("β Cannot connect to Agent Zero server")
print(" Make sure the server is running: python run_ui.py")
return False
except Exception as e:
print(f"β Server connectivity error: {e}")
return False
except ImportError:
print("βΉοΈ httpx not available, skipping connectivity test")
print(" Install with: pip install httpx")
return None
def main():
"""Main test function."""
print("π§ͺ FastA2A Agent Card Testing Utility")
print("=" * 45)
print()
# Validate token
if not validate_token_format():
print()
print_troubleshooting()
return 1
print()
# Test connectivity if possible
try:
connectivity = asyncio.run(test_server_connectivity())
print()
if connectivity is False:
print_troubleshooting()
return 1
except Exception as e:
print(f"Error testing connectivity: {e}")
print()
# Print test commands
print_test_commands()
print("π Next Steps:")
print("1. Start Agent Zero server if not running")
print("2. Run one of the curl commands above")
print("3. Check for successful 200 response with agent card JSON")
print("4. If issues occur, see troubleshooting section")
return 0
if __name__ == "__main__":
sys.exit(main())
|