Some checks failed
Python Tests / test-python (push) Failing after 43s
- Migrate HTTP client usage from requests to aitbc.AITBCHTTPClient in test files - Update conftest.py to use aitbc path utilities (get_data_path, get_log_path) - Update test_model_validation.py to use aitbc validators (validate_address, validate_hash) - Skip HTML scraping files that require raw requests (verify_toggle_removed.py) - Migrated files: test_payment_integration.py, test_cross_node_blockchain.py, verify_transactions_fixed.py, test_tx_import.py, test_simple_import.py, test_minimal.py, test_block_import_complete.py
66 lines
1.7 KiB
Python
66 lines
1.7 KiB
Python
#!/usr/bin/env python3
|
|
"""
|
|
Test the BlockImportRequest model
|
|
"""
|
|
|
|
from pydantic import BaseModel, Field
|
|
from typing import Dict, Any, List, Optional
|
|
|
|
class TransactionData(BaseModel):
|
|
tx_hash: str
|
|
sender: str
|
|
recipient: str
|
|
payload: Dict[str, Any] = Field(default_factory=dict)
|
|
|
|
class BlockImportRequest(BaseModel):
|
|
height: int = Field(gt=0)
|
|
hash: str
|
|
parent_hash: str
|
|
proposer: str
|
|
timestamp: str
|
|
tx_count: int = Field(ge=0)
|
|
state_root: Optional[str] = None
|
|
transactions: List[TransactionData] = Field(default_factory=list)
|
|
|
|
# Test creating the request
|
|
test_data = {
|
|
"height": 1,
|
|
"hash": "0xtest",
|
|
"parent_hash": "0x00",
|
|
"proposer": "test",
|
|
"timestamp": "2026-01-29T10:20:00",
|
|
"tx_count": 1,
|
|
"transactions": [{
|
|
"tx_hash": "0xtx123",
|
|
"sender": "0xsender",
|
|
"recipient": "0xrecipient",
|
|
"payload": {"test": "data"}
|
|
}]
|
|
}
|
|
|
|
print("Test data:")
|
|
print(test_data)
|
|
|
|
# Validate address and hash using aitbc validators
|
|
try:
|
|
validate_address(test_data["proposer"])
|
|
validate_hash(test_data["hash"])
|
|
print("✅ Address and hash validation passed")
|
|
except Exception as e:
|
|
print(f"⚠️ Validation warning: {e}")
|
|
|
|
try:
|
|
request = BlockImportRequest(**test_data)
|
|
print("\n✅ Request validated successfully!")
|
|
print(f"Transactions count: {len(request.transactions)}")
|
|
if request.transactions:
|
|
tx = request.transactions[0]
|
|
print(f"First transaction:")
|
|
print(f" tx_hash: {tx.tx_hash}")
|
|
print(f" sender: {tx.sender}")
|
|
print(f" recipient: {tx.recipient}")
|
|
except Exception as e:
|
|
print(f"\n❌ Validation failed: {e}")
|
|
import traceback
|
|
traceback.print_exc()
|