Testing STUN\TURN candidates
This commit is contained in:
@@ -1,8 +1,12 @@
|
||||
import socket
|
||||
import asyncio
|
||||
import aioice
|
||||
|
||||
from bedrock_agentcore import BedrockAgentCoreApp
|
||||
|
||||
app = BedrockAgentCoreApp()
|
||||
|
||||
|
||||
def test_udp():
|
||||
"""Test UDP connectivity using STUN server"""
|
||||
stun_server = ("stun.l.google.com", 19302)
|
||||
@@ -23,21 +27,130 @@ def test_udp():
|
||||
except Exception as e:
|
||||
print("STUN test failed:", e)
|
||||
return False
|
||||
|
||||
finally:
|
||||
if sock:
|
||||
sock.close()
|
||||
|
||||
|
||||
async def _async_turn_test(turn_server, turn_port, username, password):
|
||||
"""Internal async TURN test using aioice."""
|
||||
connection = aioice.Connection(
|
||||
ice_controlling=True,
|
||||
turn_server=(turn_server, turn_port),
|
||||
turn_username=username,
|
||||
turn_password=password,
|
||||
turn_transport="udp",
|
||||
)
|
||||
try:
|
||||
print(f"Gathering ICE candidates via TURN {turn_server}:{turn_port} ...")
|
||||
await connection.gather_candidates()
|
||||
candidates = connection.local_candidates
|
||||
|
||||
relay_candidates = [c for c in candidates if c.type == "relay"]
|
||||
|
||||
if relay_candidates:
|
||||
print("TURN relay candidate acquired:", relay_candidates[0])
|
||||
return True
|
||||
|
||||
print("No TURN relay candidates received — allocation failed.")
|
||||
return False
|
||||
|
||||
except Exception as e:
|
||||
print(f"TURN test failed: {e}")
|
||||
return False
|
||||
|
||||
finally:
|
||||
await connection.close()
|
||||
|
||||
def test_turn_with_auth(server, port, username, password):
|
||||
"""Sync wrapper for aioice TURN test."""
|
||||
print(f"\nTesting TURN server with auth: {server}:{port}")
|
||||
print(f"Username: {username}")
|
||||
|
||||
# Clean "turn:example.com:3478?transport=udp" → "example.com"
|
||||
clean_host = server.replace("turn:", "").replace("stun:", "")
|
||||
clean_host = clean_host.split("?")[0]
|
||||
clean_host = clean_host.split(":")[0] # remove :port
|
||||
|
||||
return asyncio.run(_async_turn_test(clean_host, port, username, password))
|
||||
|
||||
|
||||
def comprehensive_network_test():
|
||||
"""Run comprehensive network connectivity tests."""
|
||||
results = {}
|
||||
|
||||
# Test basic UDP connectivity
|
||||
results['udp_stun'] = test_udp()
|
||||
|
||||
# TURN test list
|
||||
turn_servers = [
|
||||
(
|
||||
"turn.cloudflare.com", # cleaned
|
||||
3478,
|
||||
"g001676bf83775dd93ddd77c69c80da1d13027af179ef51b4af7e3567a5028fd",
|
||||
"a77444990e4fe3b82fd0fbe795f7499409edfbc3b170cea4b28155021ab6623c",
|
||||
),
|
||||
]
|
||||
|
||||
results['turn_tests'] = []
|
||||
|
||||
for host, port, username, password in turn_servers:
|
||||
success = test_turn_with_auth(host, port, username, password)
|
||||
results['turn_tests'].append({
|
||||
"server": f"{host}:{port}",
|
||||
"success": success
|
||||
})
|
||||
|
||||
return results
|
||||
|
||||
|
||||
def test_tcp_connectivity(host, port):
|
||||
"""Test TCP connectivity to a host."""
|
||||
try:
|
||||
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
|
||||
sock.settimeout(3)
|
||||
result = sock.connect_ex((host, port))
|
||||
sock.close()
|
||||
|
||||
if result == 0:
|
||||
print(f"TCP connection to {host}:{port} successful")
|
||||
return True
|
||||
|
||||
print(f"TCP connection to {host}:{port} failed")
|
||||
return False
|
||||
|
||||
except Exception as e:
|
||||
print(f"TCP test failed: {e}")
|
||||
return False
|
||||
|
||||
|
||||
@app.entrypoint
|
||||
def my_agent(payload):
|
||||
# Run the UDP test
|
||||
udp_test_passed = test_udp()
|
||||
|
||||
# Return the result along with the greeting
|
||||
network_results = comprehensive_network_test()
|
||||
|
||||
udp_ok = network_results.get('udp_stun', False)
|
||||
turn_ok = any(t['success'] for t in network_results['turn_tests'])
|
||||
tcp_ok = network_results.get('tcp_test', False)
|
||||
|
||||
connectivity_status = []
|
||||
if udp_ok:
|
||||
connectivity_status.append("UDP/STUN")
|
||||
if turn_ok:
|
||||
connectivity_status.append("TURN")
|
||||
if tcp_ok:
|
||||
connectivity_status.append("TCP")
|
||||
|
||||
return {
|
||||
"result": f"Hello {payload.get('name', 'World')}!",
|
||||
"udp_test_passed": udp_test_passed,
|
||||
"status": "UDP test passed" if udp_test_passed else "UDP test failed"
|
||||
"network_test_results": network_results,
|
||||
"connectivity_status": ", ".join(connectivity_status) if connectivity_status else "No connectivity",
|
||||
"webrtc_feasible": udp_ok or turn_ok,
|
||||
"turn_available": turn_ok,
|
||||
}
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
app.run()
|
||||
#
|
||||
results = comprehensive_network_test()
|
||||
print(results)
|
||||
|
||||
@@ -4,6 +4,7 @@ version = "0.1.0"
|
||||
description = "Example for building Pipecat bots deployable to Amazon Bedrock AgentCore"
|
||||
requires-python = ">=3.10"
|
||||
dependencies = [
|
||||
"aioice",
|
||||
"aiohttp",
|
||||
"bedrock-agentcore",
|
||||
"pipecat-ai[webrtc,daily,silero,deepgram,openai,cartesia,local-smart-turn-v3,runner]",
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
aioice
|
||||
aiohttp
|
||||
bedrock-agentcore
|
||||
pipecat-ai[webrtc,daily,silero,deepgram,openai,cartesia,local-smart-turn-v3,runner]
|
||||
2
examples/aws-agentcore/uv.lock
generated
2
examples/aws-agentcore/uv.lock
generated
@@ -21,6 +21,7 @@ version = "0.1.0"
|
||||
source = { virtual = "." }
|
||||
dependencies = [
|
||||
{ name = "aiohttp" },
|
||||
{ name = "aioice" },
|
||||
{ name = "bedrock-agentcore" },
|
||||
{ name = "pipecat-ai", extra = ["cartesia", "daily", "deepgram", "local-smart-turn-v3", "openai", "runner", "silero", "webrtc"] },
|
||||
]
|
||||
@@ -35,6 +36,7 @@ dev = [
|
||||
[package.metadata]
|
||||
requires-dist = [
|
||||
{ name = "aiohttp" },
|
||||
{ name = "aioice" },
|
||||
{ name = "bedrock-agentcore" },
|
||||
{ name = "pipecat-ai", extras = ["webrtc", "daily", "silero", "deepgram", "openai", "cartesia", "local-smart-turn-v3", "runner"] },
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user