import subprocess import os def run_cmd(cmd): print(f"Running: {' '.join(cmd)}") env = os.environ.copy() env["AITBC_NO_RICH"] = "1" result = subprocess.run( cmd, capture_output=True, text=True, env=env ) print(f"Exit code: {result.returncode}") print(f"Output:\n{result.stdout.strip()}") if result.stderr: print(f"Stderr:\n{result.stderr.strip()}") print("-" * 40) print("=== BLOCKCHAIN API TESTS ===") base_cmd = ["/home/oib/windsurf/aitbc/cli/venv/bin/aitbc", "--url", "http://10.1.223.93:8000/v1", "--api-key", "client_dev_key_1", "--output", "json"] print("\n--- genesis ---") run_cmd(base_cmd + ["blockchain", "genesis", "--chain-id", "ait-devnet"]) print("\n--- mempool ---") run_cmd(base_cmd + ["blockchain", "mempool", "--chain-id", "ait-healthchain"]) print("\n--- head ---") run_cmd(base_cmd + ["blockchain", "head", "--chain-id", "ait-testnet"]) print("\n--- send ---") run_cmd(base_cmd + ["blockchain", "send", "--chain-id", "ait-devnet", "--from", "alice", "--to", "bob", "--data", "test", "--nonce", "1"])