Some checks failed
CLI Tests / test-cli (push) Failing after 4s
Deploy to Testnet / deploy-testnet (push) Successful in 1m40s
Documentation Validation / validate-docs (push) Failing after 12s
Documentation Validation / validate-policies-strict (push) Successful in 4s
Integration Tests / test-service-integration (push) Successful in 2m42s
Package Tests / Python package - aitbc-agent-sdk (push) Failing after 34s
Package Tests / Python package - aitbc-core (push) Successful in 27s
Package Tests / Python package - aitbc-crypto (push) Successful in 13s
Package Tests / Python package - aitbc-sdk (push) Successful in 16s
Package Tests / JavaScript package - aitbc-sdk-js (push) Successful in 8s
Package Tests / JavaScript package - aitbc-token (push) Successful in 18s
Python Tests / test-python (push) Failing after 50s
Security Scanning / security-scan (push) Failing after 43s
Multi-Node Stress Testing / stress-test (push) Successful in 12s
Cross-Node Transaction Testing / transaction-test (push) Successful in 9s
- Created aitbc/_version.py with centralized version definition - Updated aitbc/__init__.py to import __version__ from _version module - Updated constants.py to use __version__ for PACKAGE_VERSION - Replaced print() calls with logger in decorators.py, events.py, queue_manager.py, and state.py - Added logger initialization using get_logger(__name__) in config.py, decorators.py, events.py, queue_manager.py, and state.py - Added cli/commands
94 lines
2.7 KiB
Python
94 lines
2.7 KiB
Python
"""Unit tests for global infrastructure service"""
|
|
|
|
import pytest
|
|
import sys
|
|
import sys
|
|
from pathlib import Path
|
|
from datetime import datetime, timezone
|
|
|
|
|
|
from main import app, Region, GlobalDeployment, LoadBalancer, PerformanceMetrics
|
|
|
|
|
|
@pytest.mark.unit
|
|
def test_app_initialization():
|
|
"""Test that the FastAPI app initializes correctly"""
|
|
assert app is not None
|
|
assert app.title == "AITBC Global Infrastructure Service"
|
|
assert app.version == "1.0.0"
|
|
|
|
|
|
@pytest.mark.unit
|
|
def test_region_model():
|
|
"""Test Region model"""
|
|
region = Region(
|
|
region_id="us-east-1",
|
|
name="US East",
|
|
location="North America",
|
|
endpoint="https://us-east-1.api.aitbc.dev",
|
|
status="active",
|
|
capacity=10000,
|
|
current_load=3500,
|
|
latency_ms=45,
|
|
compliance_level="full"
|
|
)
|
|
assert region.region_id == "us-east-1"
|
|
assert region.name == "US East"
|
|
assert region.status == "active"
|
|
assert region.capacity == 10000
|
|
assert region.compliance_level == "full"
|
|
|
|
|
|
@pytest.mark.unit
|
|
def test_global_deployment_model():
|
|
"""Test GlobalDeployment model"""
|
|
deployment = GlobalDeployment(
|
|
deployment_id="deploy_123",
|
|
service_name="test-service",
|
|
target_regions=["us-east-1", "eu-west-1"],
|
|
configuration={"replicas": 3},
|
|
deployment_strategy="blue_green",
|
|
health_checks=["/health", "/ready"]
|
|
)
|
|
assert deployment.deployment_id == "deploy_123"
|
|
assert deployment.service_name == "test-service"
|
|
assert deployment.target_regions == ["us-east-1", "eu-west-1"]
|
|
assert deployment.deployment_strategy == "blue_green"
|
|
|
|
|
|
@pytest.mark.unit
|
|
def test_load_balancer_model():
|
|
"""Test LoadBalancer model"""
|
|
balancer = LoadBalancer(
|
|
balancer_id="lb_123",
|
|
name="Main LB",
|
|
algorithm="round_robin",
|
|
target_regions=["us-east-1", "eu-west-1"],
|
|
health_check_interval=30,
|
|
failover_threshold=3
|
|
)
|
|
assert balancer.balancer_id == "lb_123"
|
|
assert balancer.name == "Main LB"
|
|
assert balancer.algorithm == "round_robin"
|
|
assert balancer.health_check_interval == 30
|
|
|
|
|
|
@pytest.mark.unit
|
|
def test_performance_metrics_model():
|
|
"""Test PerformanceMetrics model"""
|
|
metrics = PerformanceMetrics(
|
|
region_id="us-east-1",
|
|
timestamp=datetime.now(timezone.utc),
|
|
cpu_usage=50.5,
|
|
memory_usage=60.2,
|
|
network_io=1000.5,
|
|
disk_io=500.3,
|
|
active_connections=100,
|
|
response_time_ms=45.2
|
|
)
|
|
assert metrics.region_id == "us-east-1"
|
|
assert metrics.cpu_usage == 50.5
|
|
assert metrics.memory_usage == 60.2
|
|
assert metrics.active_connections == 100
|
|
assert metrics.response_time_ms == 45.2
|